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> <Layout>
<CenteredContent> <CenteredContent>
<div className={ styles.intro }> <div className={ styles.intro }>
<h1>Atlas</h1> <h1 className={ styles.title }>Simple, fast, markdown.</h1>
<p>Simple, fast, markdown.</p> <p className={ styles.copy }>We're building a modern wiki for engineering teams.</p>
<p>We're building a modern wiki for engineering teams.</p>
</div> </div>
<div className={ styles.action }> <div className={ styles.action }>
<SlackAuthLink> <SlackAuthLink>

View File

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