Commit 9d8a372a9adb627fadcaa0aa35e42a43719ab8d4
1 parent
2e3d7a94
Exists in
master
and in
6 other branches
changed actions buttons
Showing
3 changed files
with
15 additions
and
13 deletions
Show diff stats
index.html
| ... | ... | @@ -211,7 +211,7 @@ |
| 211 | 211 | <div class="container-title">Faça Uma Proposta</div> |
| 212 | 212 | <div class="subtitle">Qual a sua sugestão para melhorar este programa?</div> |
| 213 | 213 | <div class="info">Esta consulta termina em julho de 2015. Até lá, todas as propostas serão lidas e as cinco mais pontuadas em cada programa receberão resposta oficial do governo.</div> |
| 214 | - <div class="send-proposal-button send-button"><a href="#"><span>Envie Sua Proposta</span></a></div> | |
| 214 | + <div class="send-proposal-button send-button"><a href="#"><span>Envie sua proposta</span></a></div> | |
| 215 | 215 | <div class="login-container hide">Login</div> |
| 216 | 216 | <form class="make-proposal-form save-article-form require-login hide" id="make-proposal-form-{{id}}" action="{{proposal_action ../article . }}" method="post"> |
| 217 | 217 | <div class="message hide"></div> | ... | ... |
sass/_proposal_detail.scss
| ... | ... | @@ -337,13 +337,13 @@ |
| 337 | 337 | .container-button a, |
| 338 | 338 | input[type=submit], |
| 339 | 339 | .success-proposal-sent a { |
| 340 | - font-weight: bolder; | |
| 341 | - font-size: 14px; | |
| 342 | - text-transform: uppercase; | |
| 340 | + font-weight: 500; | |
| 341 | + font-size: 16px; | |
| 342 | + // text-transform: uppercase; | |
| 343 | 343 | background-color: $color; |
| 344 | + border-bottom: 3px solid darken($color, 15%); | |
| 344 | 345 | color: white; |
| 345 | 346 | width: 60%; |
| 346 | - border: none; | |
| 347 | 347 | margin: 10px auto; |
| 348 | 348 | -webkit-border-radius: 6px; |
| 349 | 349 | -moz-border-radius: 6px; |
| ... | ... | @@ -357,7 +357,7 @@ |
| 357 | 357 | |
| 358 | 358 | &:hover, |
| 359 | 359 | &:focus { |
| 360 | - background-color: saturate( lighten($color, 5%), 10% ); | |
| 360 | + background-color: darken($color, 15%); | |
| 361 | 361 | } |
| 362 | 362 | span { |
| 363 | 363 | padding-left: 20px; |
| ... | ... | @@ -462,13 +462,13 @@ |
| 462 | 462 | background-image: url(./images/dislike.png); |
| 463 | 463 | } |
| 464 | 464 | .skip { |
| 465 | - font-weight: bolder; | |
| 466 | - font-size: 14px; | |
| 467 | - text-transform: uppercase; | |
| 465 | + font-weight: 500; | |
| 466 | + font-size: 16px; | |
| 467 | + // text-transform: uppercase; | |
| 468 | 468 | background-color: $color; |
| 469 | 469 | color: white; |
| 470 | 470 | width: 60%; |
| 471 | - border: none; | |
| 471 | + border-bottom: 3px solid darken($color, 15%); | |
| 472 | 472 | margin: 20px auto 0; |
| 473 | 473 | -webkit-border-radius: 6px; |
| 474 | 474 | -moz-border-radius: 6px; |
| ... | ... | @@ -486,7 +486,7 @@ |
| 486 | 486 | |
| 487 | 487 | &:hover, |
| 488 | 488 | &:focus { |
| 489 | - background-color: saturate( lighten($color, 5%), 10% ); | |
| 489 | + background-color: darken($color, 15%); | |
| 490 | 490 | } |
| 491 | 491 | } |
| 492 | 492 | .vote-result { | ... | ... |
sass/proposal_detail/_proposal-detail-base.scss
| ... | ... | @@ -107,12 +107,14 @@ |
| 107 | 107 | -webkit-border-radius: 6px; |
| 108 | 108 | -moz-border-radius: 6px; |
| 109 | 109 | border-radius: 6px; |
| 110 | + border-bottom: 3px solid darken($color, 18%); | |
| 110 | 111 | color: #fff; |
| 111 | 112 | display: block; |
| 112 | 113 | padding: 1em; |
| 113 | 114 | text-align: center; |
| 115 | + font-weight: 500; | |
| 114 | 116 | text-decoration: none; |
| 115 | - text-transform: uppercase; | |
| 117 | + // text-transform: uppercase; | |
| 116 | 118 | .fa-reply { |
| 117 | 119 | margin-right: .7em; |
| 118 | 120 | } |
| ... | ... | @@ -120,7 +122,7 @@ |
| 120 | 122 | transition: background-color .2s; |
| 121 | 123 | &:hover, |
| 122 | 124 | &:focus { |
| 123 | - background-color: saturate( lighten($color, 5%), 10% ); | |
| 125 | + background-color: darken($color, 18%); | |
| 124 | 126 | } |
| 125 | 127 | } |
| 126 | 128 | .row { | ... | ... |