Commit 4bdf723d0a18b6c02a9bdb68e3dab484fd4c5c6e
1 parent
c9a29b2f
Exists in
master
and in
2 other branches
Adicionando footer do Participa.BR
Showing
5 changed files
with
71 additions
and
1 deletions
Show diff stats
footer.rhtml
| 1 | <div id="footer-content"> | 1 | <div id="footer-content"> |
| 2 | + <div id="footer-logos"> | ||
| 3 | + <div> | ||
| 4 | + <a class="logo-acesso" href="http://www.acessoainformacao.gov.br/" target="_blank"><span>Acesso a Informação</span></a> | ||
| 5 | + <div class="institucionais"> | ||
| 6 | + <a class="logo-sgpr" href="http://www.secretariageral.gov.br/" target="_blank"><span>Secretaria-geral da Presidência da República</span></a> | ||
| 7 | + <a class="logo-brasil" href="http://www.brasil.gov.br/" target="_blank"><span>Brasil - Governo Federal</span></a> | ||
| 8 | + </div> | ||
| 9 | + </div> | ||
| 10 | + </div><!-- end id="footer-logos" --> | ||
| 11 | + <div id="footer-license"> | ||
| 12 | + Este site utiliza o software livre <a href="http://noosfero.org" target="_blank">Noosfero</a>, licenciado pela <a href="http://www.gnu.org/licenses/agpl.html" target="_blank">GNU Affero General Public License, versão 3 ou superior.<a> | ||
| 13 | + </div><!-- end id="footer-license" --> | ||
| 2 | </div> | 14 | </div> |
| 3 | <script type="text/javascript" src="http://barra.brasil.gov.br/barra.js?cor=verde"></script> | 15 | <script type="text/javascript" src="http://barra.brasil.gov.br/barra.js?cor=verde"></script> |
| 4 | <script type="text/javascript"> | 16 | <script type="text/javascript"> |
| @@ -32,4 +44,4 @@ | @@ -32,4 +44,4 @@ | ||
| 32 | addVideoToDroppables(); | 44 | addVideoToDroppables(); |
| 33 | } | 45 | } |
| 34 | }); | 46 | }); |
| 35 | -</script> | ||
| 36 | \ No newline at end of file | 47 | \ No newline at end of file |
| 48 | +</script> |
3.75 KB
9.76 KB
2.4 KB
style.css
| @@ -61,6 +61,7 @@ body { | @@ -61,6 +61,7 @@ body { | ||
| 61 | } | 61 | } |
| 62 | 62 | ||
| 63 | #profile-header { | 63 | #profile-header { |
| 64 | + min-height: 35px; | ||
| 64 | max-height: 200px; | 65 | max-height: 200px; |
| 65 | overflow: hidden; | 66 | overflow: hidden; |
| 66 | } | 67 | } |
| @@ -690,3 +691,60 @@ div#article-parent { | @@ -690,3 +691,60 @@ div#article-parent { | ||
| 690 | } | 691 | } |
| 691 | 692 | ||
| 692 | /* Form style end */ | 693 | /* Form style end */ |
| 694 | + | ||
| 695 | +/* Footer */ | ||
| 696 | + | ||
| 697 | +#theme-footer { | ||
| 698 | + width: 100%; | ||
| 699 | +} | ||
| 700 | + | ||
| 701 | +#footer-logos { | ||
| 702 | + background: #00420C; | ||
| 703 | + max-width: 100%; | ||
| 704 | + padding: 2em 0; | ||
| 705 | + height: 49px; | ||
| 706 | +} | ||
| 707 | + | ||
| 708 | +#footer-logos div, | ||
| 709 | +#footer-license { | ||
| 710 | + max-width: 960px; | ||
| 711 | + font-size: 10px; | ||
| 712 | + margin: 0 auto; | ||
| 713 | +} | ||
| 714 | + | ||
| 715 | +#footer-logos a { | ||
| 716 | + display: block; | ||
| 717 | + height: 49px; | ||
| 718 | + float: left; | ||
| 719 | +} | ||
| 720 | + | ||
| 721 | +#footer-logos span { | ||
| 722 | + display: none; | ||
| 723 | +} | ||
| 724 | + | ||
| 725 | +#footer-logos .logo-acesso { | ||
| 726 | + background: transparent url(images/acesso-a-informacao.png) center center no-repeat; | ||
| 727 | + width: 107px; | ||
| 728 | +} | ||
| 729 | + | ||
| 730 | +#footer-logos .logo-brasil { | ||
| 731 | + background: transparent url(images/brasil.png) center center no-repeat; | ||
| 732 | + width: 120px; | ||
| 733 | +} | ||
| 734 | + | ||
| 735 | +#footer-logos .logo-sgpr { | ||
| 736 | + background: transparent url(images/sgpr.png) center center no-repeat; | ||
| 737 | + width: 120px; | ||
| 738 | + margin-right: 30px; | ||
| 739 | +} | ||
| 740 | + | ||
| 741 | +#footer-logos .institucionais { | ||
| 742 | + float: right; | ||
| 743 | +} | ||
| 744 | + | ||
| 745 | +#footer-license { | ||
| 746 | + text-align: left; | ||
| 747 | + padding: 10px; | ||
| 748 | +} | ||
| 749 | + | ||
| 750 | + |