Commit 98921a2cf66cd485d30d6f189927a83c7dadfede
1 parent
cb6d343f
Exists in
master
and in
2 other branches
Update theme
Showing
3 changed files
with
48 additions
and
33 deletions
Show diff stats
header.html.erb
... | ... | @@ -45,8 +45,8 @@ |
45 | 45 | </ul> |
46 | 46 | |
47 | 47 | <div id="logo"> |
48 | - <a title="Participa.br" href="/"> | |
49 | - <span id="portal-title">Portal SINESP</span> | |
48 | + <a title="Sinesp" href="/"> | |
49 | + <span id="portal-title"></span> | |
50 | 50 | </a> |
51 | 51 | </div> |
52 | 52 | |
... | ... | @@ -74,41 +74,11 @@ |
74 | 74 | </div> |
75 | 75 | </div> |
76 | 76 | |
77 | - <div id="sobre"> | |
78 | - <ul> | |
79 | - <li id="link-institucional"> | |
80 | - <a href="/sinesp/institucional">Institucional</a> | |
81 | - </li> | |
82 | - <li id="link-perguntas-frequentes"> | |
83 | - <a href="/sinesp/perguntas-frequentes">Perguntas frequentes</a> | |
84 | - </li> | |
85 | - <li id="link-ouvidoria-do-mj"> | |
86 | - <a href="/sinesp/ouvidoria-do-mj">Ouvidoria do MJ</a> | |
87 | - </li> | |
88 | - <li id="link-acesso-a-sistemas"> | |
89 | - <a href="/sinesp/acesso-a-sistemas">Acesso a sistemas</a> | |
90 | - </li> | |
91 | - <li id="link-dados-abertos"> | |
92 | - <a href="/sinesp/dados-abertos">Dados abertos</a> | |
93 | - </li> | |
94 | - <li id="link-area-de-imprensa"> | |
95 | - <a href="/sinesp/area-de-imprensa">Área de imprensa</a> | |
96 | - </li> | |
97 | - <li id="link-planos-e-programas"> | |
98 | - <a href="/sinesp/planos-e-programas">Planos e programas</a> | |
99 | - </li> | |
100 | - </ul> | |
101 | - </div> | |
77 | + <div style="clear: both;"></div> | |
102 | 78 | </div> |
103 | 79 | </div> |
104 | 80 | |
105 | 81 | <div id="barra-psocial"> |
106 | - <span id="custom-menu"> | |
107 | - <a href="http://bdjur.stj.jus.br/" target="_blank"><img src="/designs/themes/participa-theme/images/biblioteca_digital_sinesp.jpg" title="Biblioteca Digital"></a> | |
108 | - </span> | |
109 | - <div id="categories_menu"> | |
110 | - <%= theme_include 'categories' %> | |
111 | - </div> | |
112 | 82 | <div id="participa-languages"> |
113 | 83 | <a href="?lang=pt" class="flag-pt" title="Português"><span>Português</span></a> |
114 | 84 | <a href="?lang=en" class="flag-en" title="English"><span>English</span></a> | ... | ... |
6.42 KB
style.css
... | ... | @@ -3301,3 +3301,48 @@ body.action-embed-index { |
3301 | 3301 | #assets-menu a { |
3302 | 3302 | border: 0; |
3303 | 3303 | } |
3304 | + | |
3305 | +#wrap-2222 { | |
3306 | + background: rgb(181,201,211); /* Old browsers */ | |
3307 | + background: -moz-linear-gradient(top, rgba(181,201,211,1) 0%, rgba(252,252,252,1) 32%, rgba(252,252,252,1) 76%); /* FF3.6+ */ | |
3308 | + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(181,201,211,1)), color-stop(32%,rgba(252,252,252,1)), color-stop(76%,rgba(252,252,252,1))); /* Chrome,Safari4+ */ | |
3309 | + background: -webkit-linear-gradient(top, rgba(181,201,211,1) 0%,rgba(252,252,252,1) 32%,rgba(252,252,252,1) 76%); /* Chrome10+,Safari5.1+ */ | |
3310 | + background: -o-linear-gradient(top, rgba(181,201,211,1) 0%,rgba(252,252,252,1) 32%,rgba(252,252,252,1) 76%); /* Opera 11.10+ */ | |
3311 | + background: -ms-linear-gradient(top, rgba(181,201,211,1) 0%,rgba(252,252,252,1) 32%,rgba(252,252,252,1) 76%); /* IE10+ */ | |
3312 | + background: linear-gradient(to bottom, rgba(181,201,211,1) 0%,rgba(252,252,252,1) 32%,rgba(252,252,252,1) 76%); /* W3C */ | |
3313 | + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5c9d3', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */ | |
3314 | +} | |
3315 | + | |
3316 | +#wrap-2 { | |
3317 | + background-image: -webkit-gradient( | |
3318 | + linear, | |
3319 | + left bottom, | |
3320 | + left top, | |
3321 | + color-stop(0.66, #FFFFFF), | |
3322 | + color-stop(1, #B5C9D3) | |
3323 | + ); | |
3324 | + background-image: -o-linear-gradient(top, #FFFFFF 66%, #B5C9D3 100%); | |
3325 | + background-image: -moz-linear-gradient(top, #FFFFFF 66%, #B5C9D3 100%); | |
3326 | + background-image: -webkit-linear-gradient(top, #FFFFFF 66%, #B5C9D3 100%); | |
3327 | + background-image: -ms-linear-gradient(top, #FFFFFF 66%, #B5C9D3 100%); | |
3328 | + background-image: linear-gradient(to top, #FFFFFF 66%, #B5C9D3 100%); | |
3329 | + background-size: 100% 350px; | |
3330 | + background-repeat: no-repeat; | |
3331 | +} | |
3332 | + | |
3333 | +.header-content #header { | |
3334 | + background-color: white; | |
3335 | + background-image: none; | |
3336 | + height: 80px; | |
3337 | +} | |
3338 | + | |
3339 | +#accessibility a { | |
3340 | + color: #265d9d; | |
3341 | +} | |
3342 | + | |
3343 | +#logo #portal-title { | |
3344 | + background-image: url("images/logo.png"); | |
3345 | + width: 395px; | |
3346 | + height: 53px; | |
3347 | + background-repeat: no-repeat; | |
3348 | +} | ... | ... |