Commit a8a94af78058398ea69850aab0c6f47ae25ebada
1 parent
7f0be9a4
Exists in
master
and in
6 other branches
Cabeçalho inicial
Showing
5 changed files
with
46 additions
and
14 deletions
Show diff stats
1.23 KB
index.html
| @@ -98,9 +98,9 @@ | @@ -98,9 +98,9 @@ | ||
| 98 | <script id="proposal-template" type="text/x-handlebars-template"> | 98 | <script id="proposal-template" type="text/x-handlebars-template"> |
| 99 | <header> | 99 | <header> |
| 100 | <a id="display-contrast" href="#">Alto Contraste</a> | 100 | <a id="display-contrast" href="#">Alto Contraste</a> |
| 101 | - <div class="login"> | ||
| 102 | - <a href="#" class="button">Participe</a> | ||
| 103 | - <a href="#">Entrar</a> | 101 | + <div class="login-block"> |
| 102 | + <a href="#" class="login-register">Participe</a> | ||
| 103 | + <a href="#" class="login-in">Entrar</a> | ||
| 104 | </div> | 104 | </div> |
| 105 | <div class="social top"> | 105 | <div class="social top"> |
| 106 | {{#social_share "Dialoga Brasil" "Aqui suas ideias viram propostas e você ajuda a melhorar as ações do governo" "#"}}{{/social_share}} | 106 | {{#social_share "Dialoga Brasil" "Aqui suas ideias viram propostas e você ajuda a melhorar as ações do governo" "#"}}{{/social_share}} |
| @@ -109,7 +109,9 @@ | @@ -109,7 +109,9 @@ | ||
| 109 | </header> | 109 | </header> |
| 110 | 110 | ||
| 111 | <div id="content"> | 111 | <div id="content"> |
| 112 | - {{{article.abstract}}} | 112 | + <div class="embed-responsive embed-responsive-16by9"> |
| 113 | + {{{article.abstract}}} | ||
| 114 | + </div> | ||
| 113 | </div> | 115 | </div> |
| 114 | 116 | ||
| 115 | <nav class="tab" role="tabpanel"> | 117 | <nav class="tab" role="tabpanel"> |
| @@ -123,7 +125,7 @@ | @@ -123,7 +125,7 @@ | ||
| 123 | </ul> | 125 | </ul> |
| 124 | </nav> | 126 | </nav> |
| 125 | 127 | ||
| 126 | - <article id="proposal-categories"> | 128 | + <aside id="proposal-categories"> |
| 127 | <div id="proposal-categories-container"> | 129 | <div id="proposal-categories-container"> |
| 128 | <ul class="themes"> | 130 | <ul class="themes"> |
| 129 | {{#each article.categories}} | 131 | {{#each article.categories}} |
| @@ -147,7 +149,7 @@ | @@ -147,7 +149,7 @@ | ||
| 147 | </section> | 149 | </section> |
| 148 | {{/each}} | 150 | {{/each}} |
| 149 | </div> | 151 | </div> |
| 150 | - </article> | 152 | + </aside> |
| 151 | 153 | ||
| 152 | <article id="proposal-group" class="hide"> | 154 | <article id="proposal-group" class="hide"> |
| 153 | <label for="search-input">Selecione um programa para fazer propostas e contar sua experiência.</label> | 155 | <label for="search-input">Selecione um programa para fazer propostas e contar sua experiência.</label> |
sass/_login.scss
| @@ -4,3 +4,32 @@ | @@ -4,3 +4,32 @@ | ||
| 4 | color: #000; | 4 | color: #000; |
| 5 | text-decoration: none; | 5 | text-decoration: none; |
| 6 | } | 6 | } |
| 7 | + | ||
| 8 | +.login { | ||
| 9 | + &-block { | ||
| 10 | + text-align: right; | ||
| 11 | + margin-bottom: 10px; | ||
| 12 | + a:nth-child(2) { | ||
| 13 | + border-left: 1px solid #bcbcbc; | ||
| 14 | + margin-left: 20px; | ||
| 15 | + padding-left: 40px; | ||
| 16 | + } | ||
| 17 | + } | ||
| 18 | + &-register { | ||
| 19 | + background-color: #387bfa; | ||
| 20 | + border-bottom: 3px solid darken(#387bfa, 15%); | ||
| 21 | + border-radius: 3px; | ||
| 22 | + color: #fff; | ||
| 23 | + display: inline-block; | ||
| 24 | + font-weight: 700; | ||
| 25 | + font-size: 14px; | ||
| 26 | + padding: 2px 20px; | ||
| 27 | + text-align: center; | ||
| 28 | + &:hover { | ||
| 29 | + background-color: darken(#387bfa, 15%); | ||
| 30 | + } | ||
| 31 | + } | ||
| 32 | + &-in { | ||
| 33 | + background: url(images/icons/icon-user.png) no-repeat 20px 50%; | ||
| 34 | + } | ||
| 35 | +} | ||
| 7 | \ No newline at end of file | 36 | \ No newline at end of file |
sass/_proposal_categories.scss
| @@ -5,14 +5,16 @@ | @@ -5,14 +5,16 @@ | ||
| 5 | clear: both; | 5 | clear: both; |
| 6 | margin: 0; | 6 | margin: 0; |
| 7 | padding: 10px; | 7 | padding: 10px; |
| 8 | - text-align: center; | 8 | + text-align: left; |
| 9 | border-bottom: 1px solid #03316f; | 9 | border-bottom: 1px solid #03316f; |
| 10 | border-left: 1px solid #03316f; | 10 | border-left: 1px solid #03316f; |
| 11 | border-right: 1px solid #03316f; | 11 | border-right: 1px solid #03316f; |
| 12 | - | 12 | + ul { |
| 13 | + padding-left: 0; | ||
| 14 | + } | ||
| 13 | li { | 15 | li { |
| 14 | list-style: none; | 16 | list-style: none; |
| 15 | - display: inline-block; | 17 | + display: block; |
| 16 | } | 18 | } |
| 17 | 19 | ||
| 18 | .proposal-category { | 20 | .proposal-category { |
sass/style.scss
| @@ -56,11 +56,10 @@ h1 { | @@ -56,11 +56,10 @@ h1 { | ||
| 56 | #content { | 56 | #content { |
| 57 | padding-bottom: 50px; | 57 | padding-bottom: 50px; |
| 58 | p { | 58 | p { |
| 59 | - | ||
| 60 | - text-align: justify; | ||
| 61 | - margin: 20px; | ||
| 62 | - line-height: 1.5em; | ||
| 63 | - font-size: 1.2em; | 59 | + text-align: inherit; |
| 60 | + margin: 0; | ||
| 61 | + line-height: inherit; | ||
| 62 | + font-size: inherit; | ||
| 64 | 63 | ||
| 65 | font{ | 64 | font{ |
| 66 | weight: lighter; | 65 | weight: lighter; |