Commit ca917f22aef69b44d9fd6008ae3780fcff6e89ce

Authored by augustoalmeida
2 parents 752fc5f4 9efdec98

Merge branch 'master' of https://gitlab.com/participa/proposal-app

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">
... ... @@ -476,7 +476,7 @@
476 476 </div>
477 477 </script>
478 478  
479   - <div class="terms-of-use">
  479 + <div class="terms-of-use text-center">
480 480 <a href="#/artigo/107880">Termos de uso</a>
481 481 </div>
482 482  
... ...
sass/style.sass
... ... @@ -765,6 +765,19 @@ h1
765 765 padding-right: 0
766 766 padding-top: $gutter * 0.25
767 767  
  768 +// 6.17 - artigo
  769 +.article-container
  770 + max-width: 1170px
  771 + margin-left: auto
  772 + margin-right: auto
  773 + .abstract
  774 + font-style: italic
  775 + color: rgb(114, 114, 114)
  776 + margin-bottom: 30px
  777 + margin-top: 10px
  778 + .title
  779 + font-size: 22px
  780 +
768 781  
769 782 // ------------------------------------
770 783 // 7 - Modificadores
... ... @@ -951,4 +964,4 @@ h3.titulo-destaque
951 964 .date,.time
952 965 color: #fff
953 966 .bloco-destaque
954   - background: darken(#fff, 85%)
955 967 \ No newline at end of file
  968 + background: darken(#fff, 85%)
... ...