Commit 752fc5f4cad741180964e43f17f508e89cdddb03
1 parent
631b1544
Exists in
master
and in
5 other branches
Ver todos os programas added
Showing
2 changed files
with
8 additions
and
2 deletions
Show diff stats
index.html
... | ... | @@ -175,6 +175,7 @@ |
175 | 175 | <input placeholder="palavra chave" id="search-input" type="text" name="search" /> |
176 | 176 | </div> |
177 | 177 | --> |
178 | + <a class="ver-todos" href="#/programas" role="tab" aria-controls="proposal-group">Ver todos os programas</a> | |
178 | 179 | <h2 class="name">Programas</h2> |
179 | 180 | |
180 | 181 | <ul class="proposal-list row"> | ... | ... |
sass/style.sass
... | ... | @@ -67,7 +67,7 @@ $categories-descriptions: (saude: "Saúde é direito de todos e dever do Estado. |
67 | 67 | |
68 | 68 | // 1.5 - cores |
69 | 69 | $header-color: #03316f |
70 | -$link-color: #335277 | |
70 | +$link-color: #387bfa | |
71 | 71 | |
72 | 72 | // 1.6 - escurecer |
73 | 73 | $darken: 15% |
... | ... | @@ -101,7 +101,7 @@ h1 |
101 | 101 | a |
102 | 102 | color: $header-color |
103 | 103 | h2 |
104 | - border-bottom: 1px solid darken(#eeeff1,$darken) | |
104 | + // border-bottom: 1px solid darken(#eeeff1,$darken) | |
105 | 105 | font-size: $font-size-h2 |
106 | 106 | font-weight: 500 |
107 | 107 | margin-bottom: $gutter * 2 |
... | ... | @@ -127,6 +127,8 @@ blockquote |
127 | 127 | font-size: $font-size-h1 |
128 | 128 | margin: $gutter 0 |
129 | 129 | padding: $gutter 0 |
130 | +a,a:link,a:hover | |
131 | + color: $link-color | |
130 | 132 | |
131 | 133 | |
132 | 134 | // ------------------------------------ |
... | ... | @@ -367,6 +369,7 @@ h1 |
367 | 369 | padding-right: $gutter |
368 | 370 | padding-top: $gutter * 0.5 |
369 | 371 | text-transform: uppercase |
372 | + +hover(#fff,$darken) | |
370 | 373 | &:hover,&:focus |
371 | 374 | text-decoration: none |
372 | 375 | .arrow-box |
... | ... | @@ -383,6 +386,8 @@ h1 |
383 | 386 | margin-left: -8px |
384 | 387 | |
385 | 388 | // 6.7 - listagem dos programas aleatorios |
389 | +.ver-todos | |
390 | + float: right | |
386 | 391 | .proposal |
387 | 392 | &-container |
388 | 393 | border-radius: $radius | ... | ... |