Commit 9e112fd65632f1bf7e74b5be48491398291807d2
Exists in
master
change footer
Showing
5 changed files
with
17 additions
and
73 deletions
Show diff stats
footer.rhtml
... | ... | @@ -1,56 +0,0 @@ |
1 | -<script> | |
2 | - // Identificar Blocos de links com e sem título: | |
3 | - // TODO: Colocar isso no core do noosfero para qualquer bloco. | |
4 | - jQuery('.link-list-block').each(function(num, el) { | |
5 | - title = jQuery('.block-title', el).text().trim(); | |
6 | - el.className += (title=='')? ' without-title' : ' with-title'; | |
7 | - }); | |
8 | - | |
9 | - // Identificar cabeçalho e rodabe vazios: | |
10 | - // TODO: Colocar isso no core do noosfero. | |
11 | - jQuery('#profile-header, #profile-footer').each(function(num, el) { | |
12 | - if ( jQuery(el).html().trim() == '' ) el.className += ' empty'; | |
13 | - }); | |
14 | -</script> | |
15 | - | |
16 | -<div id="footer-border"> | |
17 | -<div id="footer-box"> | |
18 | -<div id="footer-content"> | |
19 | - | |
20 | -<a href="http://sedf.cdtc.gdf.br" id="gdf"><span>SABERES</span></a> | |
21 | - | |
22 | -<ul id="footer-menu"> | |
23 | - <li>Conheça | |
24 | - <ul> | |
25 | - <li><a href="/portal/quem-somos">Quem Somos</a></li> | |
26 | - <li><a href="/termo-de-uso.html">Termos de Uso</a></li> | |
27 | - <li><a href="/doc">Documentação</a></li> | |
28 | - <li><a href="/contact/portal/new">Fale Conosco</a></li> | |
29 | - </ul> | |
30 | - </li> | |
31 | - <li>Colabore | |
32 | - <ul> | |
33 | - <li><a href="/myprofile/portal/cms/suggest_an_article">Sugerir uma Notícia</a></li> | |
34 | - <li><a href="/colabore/sugerir-melhorias">Sugerir Melhorias</a></li> | |
35 | - <li><a href="/colabore/reporte-um-bug">Reportar um Bug</a></li> | |
36 | - <li><a href="/desenvolvimento">Desenvolvimento</a></li> | |
37 | - </ul> | |
38 | - </li> | |
39 | - | |
40 | - | |
41 | -</ul><!-- id="footer-menu" --> | |
42 | -<script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script> | |
43 | - | |
44 | -<div id="copyright"> | |
45 | - <p><a rel="license" href="http://creativecommons.org/licenses/by/4.0/deed.en_US"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by/4.0/80x15.png" /></a><br />Todo o conteúdo e dados da rede está disponível sob a licença <a rel="license" href="http://creativecommons.org/licenses/by/4.0/deed.en_US">Creative Commons Attribution 4.0 International License</a> exceto quando especificado em contrário e nos conteúdos replicados de outras fontes.</p> | |
46 | - | |
47 | - <p id="dev-info"><a href="http://www.gnu.org/licenses/agpl.html"><img alt="AGPL License" style="border-width:0" src="http://www.gnu.org/graphics/agplv3-88x31.png" /></a><br/><%= _('This site uses <a href="http://noosfero.org/">Noosfero</a>, developed by %s and licensed under the <a href="http://www.gnu.org/licenses/agpl.html">GNU Affero General Public License</a> version 3 or any later version.') % link_to('Colivre', 'http://colivre.coop.br/') %> | |
48 | - </p> | |
49 | - | |
50 | - | |
51 | -</div><!-- id="copyright" --> | |
52 | - | |
53 | -</div><!-- id="footer-content" --> | |
54 | -</div><!-- id="footer-box" --> | |
55 | -</div><!-- id="footer-border" --> | |
56 | - |
header.rhtml
241 Bytes
images/bg-gradient.png
style.css
... | ... | @@ -31,19 +31,19 @@ body { |
31 | 31 | /* Bar Psocial Style */ |
32 | 32 | |
33 | 33 | #theme-header { |
34 | - height: 40px; | |
35 | - background: #E8E8E8; | |
36 | - background-image: linear-gradient(bottom, #E8E8E8 20%, #FEFEFE 80%); | |
37 | - background-image: -o-linear-gradient(bottom, #E8E8E8 20%, #FEFEFE 80%); | |
38 | - background-image: -moz-linear-gradient(bottom, #E8E8E8 20%, #FEFEFE 80%); | |
39 | - background-image: -webkit-linear-gradient(bottom, #E8E8E8 20%, #FEFEFE 80%); | |
40 | - background-image: -ms-linear-gradient(bottom, #E8E8E8 20%, #FEFEFE 80%); | |
34 | + height: 90px; | |
35 | + background: #f9c404; | |
36 | + background-image: linear-gradient(bottom, #fcdd4e 20%, #f9c404 80%); | |
37 | + background-image: -o-linear-gradient(bottom, #fcdd4e 20%, #f9c404 80%); | |
38 | + background-image: -moz-linear-gradient(bottom, #fcdd4e 20%, #f9c404 80%); | |
39 | + background-image: -webkit-linear-gradient(bottom, #fcdd4e 20%, #f9c404 80%); | |
40 | + background-image: -ms-linear-gradient(bottom, #fcdd4e 20%, #f9c404 80%); | |
41 | 41 | background-image: -webkit-gradient( |
42 | 42 | linear, |
43 | 43 | left bottom, |
44 | 44 | left top, |
45 | - color-stop(0.2, #E8E8E8), | |
46 | - color-stop(0.8, #FEFEFE) | |
45 | + color-stop(0.2, #fcdd4e), | |
46 | + color-stop(0.8, #f9c404) | |
47 | 47 | ); |
48 | 48 | border-bottom: 4px solid #C90B10; |
49 | 49 | } |
... | ... | @@ -70,7 +70,7 @@ body { |
70 | 70 | } |
71 | 71 | #assets-menu { |
72 | 72 | background: #E8E8E8; |
73 | - top: 35px; | |
73 | + top: 85px; | |
74 | 74 | left: 80px; |
75 | 75 | min-width: 132px; |
76 | 76 | } |
... | ... | @@ -563,7 +563,7 @@ div#article-parent { |
563 | 563 | /************************** theme footer ***************************/ |
564 | 564 | |
565 | 565 | #theme-footer { |
566 | - background: #e8edf1; | |
566 | + background: #f9c404; | |
567 | 567 | width: 100%; |
568 | 568 | position: absolute; |
569 | 569 | z-index: 10; |
... | ... | @@ -635,7 +635,7 @@ div#article-parent { |
635 | 635 | #copyright { |
636 | 636 | float: right; |
637 | 637 | width: 500px; |
638 | - opacity: 0.6; | |
638 | + /* opacity: 0.6; */ | |
639 | 639 | color: #000 rgba(0,0,0,0.7); |
640 | 640 | } |
641 | 641 | |
... | ... | @@ -645,14 +645,14 @@ div#article-parent { |
645 | 645 | } |
646 | 646 | |
647 | 647 | #copyright img { |
648 | - opacity: 0.7; | |
648 | + /* opacity: 0.7; */ | |
649 | 649 | vertical-align: middle; |
650 | 650 | margin-left: 3px; |
651 | 651 | margin-top: 10px; |
652 | 652 | } |
653 | 653 | |
654 | 654 | #copyright img:hover { |
655 | - opacity: 1; | |
655 | + opacity: 1; | |
656 | 656 | } |
657 | 657 | |
658 | 658 | #copyright #license span { display: none; } |
... | ... | @@ -672,7 +672,7 @@ div#article-parent { |
672 | 672 | width: 84px; |
673 | 673 | height: 98px; |
674 | 674 | background: url(images/gdf-footer.png) top left no-repeat; |
675 | - opacity: 0.7; | |
675 | + /* opacity: 0.7; */ | |
676 | 676 | margin: 5px; |
677 | 677 | } |
678 | 678 | #gdf:hover { | ... | ... |