Commit 9efdec98eff546e77560fcb970e3d542cc207444
1 parent
631b1544
Exists in
master
and in
5 other branches
Fix article page
Showing
2 changed files
with
16 additions
and
3 deletions
Show diff stats
index.html
| ... | ... | @@ -109,7 +109,7 @@ |
| 109 | 109 | </div> |
| 110 | 110 | </header> |
| 111 | 111 | |
| 112 | - <div id="article-container" class="hide"></div> | |
| 112 | + <div id="article-container" class="article-container hide"></div> | |
| 113 | 113 | |
| 114 | 114 | <div id="content" class="container"> |
| 115 | 115 | <div class="embed-responsive embed-responsive-16by9"> |
| ... | ... | @@ -475,7 +475,7 @@ |
| 475 | 475 | </div> |
| 476 | 476 | </script> |
| 477 | 477 | |
| 478 | - <div class="terms-of-use"> | |
| 478 | + <div class="terms-of-use text-center"> | |
| 479 | 479 | <a href="#/artigo/107880">Termos de uso</a> |
| 480 | 480 | </div> |
| 481 | 481 | ... | ... |
sass/style.sass
| ... | ... | @@ -760,6 +760,19 @@ h1 |
| 760 | 760 | padding-right: 0 |
| 761 | 761 | padding-top: $gutter * 0.25 |
| 762 | 762 | |
| 763 | +// 6.17 - artigo | |
| 764 | +.article-container | |
| 765 | + max-width: 1170px | |
| 766 | + margin-left: auto | |
| 767 | + margin-right: auto | |
| 768 | + .abstract | |
| 769 | + font-style: italic | |
| 770 | + color: rgb(114, 114, 114) | |
| 771 | + margin-bottom: 30px | |
| 772 | + margin-top: 10px | |
| 773 | + .title | |
| 774 | + font-size: 22px | |
| 775 | + | |
| 763 | 776 | |
| 764 | 777 | // ------------------------------------ |
| 765 | 778 | // 7 - Modificadores |
| ... | ... | @@ -946,4 +959,4 @@ h3.titulo-destaque |
| 946 | 959 | .date,.time |
| 947 | 960 | color: #fff |
| 948 | 961 | .bloco-destaque |
| 949 | - background: darken(#fff, 85%) | |
| 950 | 962 | \ No newline at end of file |
| 963 | + background: darken(#fff, 85%) | ... | ... |