Commit 9a88aab00d60d60b71eb633a4d467b2a05b4ce62
1 parent
5161636a
Exists in
master
and in
26 other branches
using link list as top menu
Showing
2 changed files
with
32 additions
and
2 deletions
Show diff stats
themes/participa-consulta/app/participa-consulta.scss
@@ -16,22 +16,52 @@ html, body { | @@ -16,22 +16,52 @@ html, body { | ||
16 | line-height: 30px; | 16 | line-height: 30px; |
17 | padding: 15px 15px 15px 55px; | 17 | padding: 15px 15px 15px 55px; |
18 | text-transform: capitalize; | 18 | text-transform: capitalize; |
19 | + background-size: 30px 30px; | ||
19 | } | 20 | } |
20 | 21 | ||
21 | .skin-whbl .membersblock > .panel-heading{ | 22 | .skin-whbl .membersblock > .panel-heading{ |
22 | @extend .box-default; | 23 | @extend .box-default; |
23 | background: #DAE1C4 url("../assets/images/participa-consulta/pessoas.png") no-repeat 15px center; | 24 | background: #DAE1C4 url("../assets/images/participa-consulta/pessoas.png") no-repeat 15px center; |
24 | - background-size: 30px 30px; | ||
25 | color: #4F9CAC; | 25 | color: #4F9CAC; |
26 | } | 26 | } |
27 | 27 | ||
28 | .skin-whbl .statisticsblock > .panel-heading{ | 28 | .skin-whbl .statisticsblock > .panel-heading{ |
29 | @extend .box-default; | 29 | @extend .box-default; |
30 | background: #69677C url("../assets/images/participa-consulta/indicadores.png") no-repeat 15px center; | 30 | background: #69677C url("../assets/images/participa-consulta/indicadores.png") no-repeat 15px center; |
31 | - background-size: 30px 30px; | ||
32 | color: #DAE1C4; | 31 | color: #DAE1C4; |
33 | } | 32 | } |
34 | 33 | ||
34 | +.link-list-block{ | ||
35 | + width: 900px; //Apagar depois!!!! | ||
36 | + font-family: "Ubuntu"; | ||
37 | + font-size: 12px; | ||
38 | + background: #69677C; | ||
39 | + border-radius: 0 0 3px 3px; | ||
40 | + margin-bottom: 30px; | ||
41 | + padding: 20px; | ||
42 | + margin: 0 0 30px 0; | ||
43 | + position: relative; | ||
44 | +} | ||
45 | + | ||
46 | +.link-list-block div, .link-list-block a{ | ||
47 | + display: inline-block; | ||
48 | + background: #69677C; | ||
49 | + border-radius: 0; | ||
50 | + color: #FFF; | ||
51 | + font-family: "Ubuntu Mediun"; | ||
52 | + font-size: 16px; | ||
53 | + margin: 0; | ||
54 | + padding: 0; | ||
55 | + font-weight: bold; | ||
56 | +} | ||
57 | + | ||
58 | +.link-list-block div:first-child{ | ||
59 | + padding: 15px 15px 15px 55px; | ||
60 | + background: #69677C url("../assets/images/participa-consulta/home.png") no-repeat 15px center; | ||
61 | + color: #FFF; | ||
62 | + background-size: 30px 30px; | ||
63 | +} | ||
64 | + | ||
35 | .profile-header{ | 65 | .profile-header{ |
36 | text-align: center; | 66 | text-align: center; |
37 | } | 67 | } |
777 Bytes