Commit c1990f0cebbf1b347a7a37b421972ee5edea858c

Authored by Leonardo Merlin
1 parent ea2dc9f8

Fix #52 - Increase font-size of #content

Showing 2 changed files with 7 additions and 5 deletions   Show diff stats
index.html
... ... @@ -106,7 +106,7 @@
106 106 </header>
107 107  
108 108 <div id="content">
109   - <p>{{{article.body}}}</p>
  109 + {{{article.body}}}
110 110 </div>
111 111  
112 112 <nav role="tabpanel">
... ...
sass/style.scss
... ... @@ -45,15 +45,17 @@ h1 {
45 45  
46 46 #content {
47 47 padding-bottom: 50px;
48   - /*background: transparent url(./images/header.png) center bottom no-repeat;*/
49 48 p {
  49 +
  50 + text-align: justify;
  51 + margin: 20px;
  52 + line-height: 1.5em;
  53 + font-size: 1.2em;
  54 +
50 55 font{
51 56 weight: lighter;
52 57 size: 14px;
53 58 }
54   - text-align: justify;
55   - margin: 20px;
56   - line-height: 1.5em;
57 59 }
58 60 }
59 61  
... ...