Commit 05967084c67de691f8d6c82aa236bdcbc46fd59f

Authored by Victor Costa
1 parent 444d3e53

Add link to start page

Showing 2 changed files with 5 additions and 1 deletions   Show diff stats
index.html
... ... @@ -19,7 +19,7 @@
19 19  
20 20 <script id='proposal-template' type='text/x-handlebars-template'>
21 21 <header>
22   - <h1>{{article.title}}</h1>
  22 + <h1><a href="/">{{article.title}}</a></h1>
23 23 <a id='display-contrast' href='#'>Alto Contraste</a>
24 24 </header>
25 25  
... ...
sass/style.scss
... ... @@ -31,6 +31,10 @@ h1 {
31 31 width: 100%;
32 32 text-transform: uppercase;
33 33 border-bottom: 1px solid #d6dcd7;
  34 + a {
  35 + text-decoration: none;
  36 + color: #03316f;
  37 + }
34 38 }
35 39  
36 40 #proposal-result {
... ...