Commit 9e9e1e453277bdaf94988633f263dea3e5eff205
Exists in
master
and in
10 other branches
Merge branch 'master' of https://gitlab.com/participa/proposal-app
Showing
4 changed files
with
20 additions
and
4 deletions
Show diff stats
index.html
1 | -<html lang-"pt-br"> | 1 | +<html lang="pt-br"> |
2 | <head> | 2 | <head> |
3 | <meta charset="utf-8" /> | 3 | <meta charset="utf-8" /> |
4 | <title>Dialoga Brasil</title> | 4 | <title>Dialoga Brasil</title> |
@@ -19,7 +19,7 @@ | @@ -19,7 +19,7 @@ | ||
19 | 19 | ||
20 | <script id='proposal-template' type='text/x-handlebars-template'> | 20 | <script id='proposal-template' type='text/x-handlebars-template'> |
21 | <header> | 21 | <header> |
22 | - <h1>{{article.title}}</h1> | 22 | + <h1><a href="/">{{article.title}}</a></h1> |
23 | <a id='display-contrast' href='#'>Alto Contraste</a> | 23 | <a id='display-contrast' href='#'>Alto Contraste</a> |
24 | </header> | 24 | </header> |
25 | 25 |
sass/_proposal_categories.scss
@@ -24,7 +24,6 @@ | @@ -24,7 +24,6 @@ | ||
24 | background-position: center 5px; | 24 | background-position: center 5px; |
25 | background-repeat: no-repeat; | 25 | background-repeat: no-repeat; |
26 | width: 140px; | 26 | width: 140px; |
27 | - height: 40px; | ||
28 | display: inline-block; | 27 | display: inline-block; |
29 | font-size: 14px; | 28 | font-size: 14px; |
30 | font-family: 'Asap', sans; | 29 | font-family: 'Asap', sans; |
sass/_proposal_detail.scss
@@ -289,7 +289,8 @@ | @@ -289,7 +289,8 @@ | ||
289 | .make-proposal-button{ | 289 | .make-proposal-button{ |
290 | @extend .container-button; | 290 | @extend .container-button; |
291 | } | 291 | } |
292 | - .send-proposal-button, .success-proposal-sent { | 292 | + .send-proposal-button, |
293 | + .success-proposal-sent { | ||
293 | @extend .container-button; | 294 | @extend .container-button; |
294 | a { | 295 | a { |
295 | position: absolute; | 296 | position: absolute; |
@@ -396,6 +397,18 @@ | @@ -396,6 +397,18 @@ | ||
396 | .send-experience-button { | 397 | .send-experience-button { |
397 | @extend .container-button; | 398 | @extend .container-button; |
398 | } | 399 | } |
400 | + .send-experience-button, | ||
401 | + .success-experience-sent { | ||
402 | + @extend .container-button; | ||
403 | + a { | ||
404 | + position: absolute; | ||
405 | + left: 50%; | ||
406 | + margin: 0; | ||
407 | + margin-left: -30%; | ||
408 | + bottom: 20px; | ||
409 | + padding: 20px 0; | ||
410 | + } | ||
411 | + } | ||
399 | } | 412 | } |
400 | .talk-proposal-container{ | 413 | .talk-proposal-container{ |
401 | width: 50%; | 414 | width: 50%; |
sass/style.scss
@@ -32,6 +32,10 @@ h1 { | @@ -32,6 +32,10 @@ h1 { | ||
32 | width: 100%; | 32 | width: 100%; |
33 | text-transform: uppercase; | 33 | text-transform: uppercase; |
34 | border-bottom: 1px solid #d6dcd7; | 34 | border-bottom: 1px solid #d6dcd7; |
35 | + a { | ||
36 | + text-decoration: none; | ||
37 | + color: #03316f; | ||
38 | + } | ||
35 | } | 39 | } |
36 | 40 | ||
37 | #proposal-result { | 41 | #proposal-result { |