Commit 2d655dfb2fe60d097fa55f0d14d3c8b90e5156c7

Authored by Victor Costa
1 parent 76b86037

Fix article page

Showing 2 changed files with 15 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">
... ... @@ -479,7 +479,7 @@
479 479 </div>
480 480 </script>
481 481  
482   - <div class="terms-of-use">
  482 + <div class="terms-of-use text-center">
483 483 <a href="#/artigo/107880">Termos de uso</a>
484 484 </div>
485 485  
... ...
sass/style.sass
... ... @@ -769,6 +769,18 @@ h1
769 769 padding-right: 0
770 770 padding-top: $gutter * 0.25
771 771  
  772 +// 6.17 - artigo
  773 +.article-container
  774 + max-width: 1170px
  775 + margin-left: auto
  776 + margin-right: auto
  777 + .abstract
  778 + font-style: italic
  779 + color: rgb(114, 114, 114)
  780 + margin-bottom: 30px
  781 + margin-top: 10px
  782 + .title
  783 + font-size: 22px
772 784  
773 785 // ------------------------------------
774 786 // 7 - Modificadores
... ... @@ -955,4 +967,4 @@ h3.titulo-destaque
955 967 .date,.time
956 968 color: #fff
957 969 .bloco-destaque
958   - background: darken(#fff, 85%)
959 970 \ No newline at end of file
  971 + background: darken(#fff, 85%)
... ...