home styles

This commit is contained in:
Jori Lallo
2016-09-12 22:26:40 -07:00
parent 39bb6de11b
commit 1002a5b4a1
2 changed files with 10 additions and 7 deletions

View File

@ -27,9 +27,8 @@ export default class Home extends React.Component {
<Layout>
<CenteredContent>
<div className={ styles.intro }>
<h1>Atlas</h1>
<p>Simple, fast, markdown.</p>
<p>We're building a modern wiki for engineering teams.</p>
<h1 className={ styles.title }>Simple, fast, markdown.</h1>
<p className={ styles.copy }>We're building a modern wiki for engineering teams.</p>
</div>
<div className={ styles.action }>
<SlackAuthLink>

View File

@ -1,5 +1,9 @@
.intro {
font-size: 1.4em;
line-height: 1.6em;
margin-bottom: 40px;
.title {
font-size: 36px;
margin-bottom: 24px;
}
.copy {
font-size: 20px;
margin-bottom: 36px;
}