Commit a4a063fdf8f4ad3b737582adc4a7755f1cd3f550
1 parent
b2cac32b
Exists in
master
and in
79 other branches
Fixing footer
Signed-off-by: Alexandre Barbosa <alexandreab@live.com> Signed-off-by: Carlos Oliveira <carlospecter@gmail.com> Signed-off-by: Peter Lima <peterlima@gmail.com>
Showing
2 changed files
with
44 additions
and
6 deletions
Show diff stats
colab_spb_theme/static/css/footer.css
... | ... | @@ -52,7 +52,7 @@ footer #doormat-container dt { |
52 | 52 | font-family: "open_sansbold", Arial, Helvetica, sans-serif; |
53 | 53 | } |
54 | 54 | |
55 | -footer #doormat-container dtfooter , | |
55 | +footer #doormat-container dt, | |
56 | 56 | footer #doormat-container dd { |
57 | 57 | padding-left: 10px; |
58 | 58 | margin-bottom: 4px; |
... | ... | @@ -76,14 +76,34 @@ footer #doormat-container .doormatColumn { |
76 | 76 | text-align: left; |
77 | 77 | } |
78 | 78 | |
79 | - | |
80 | -footer #footer .footer-logos { | |
79 | +#footer .footer-logos { | |
81 | 80 | margin: 0 0 -20px; |
82 | 81 | padding: 1.6em 0; |
83 | 82 | max-width: 100%; |
84 | 83 | background: #0041B1; |
85 | 84 | } |
86 | 85 | |
86 | +#footer .footer-logos div { | |
87 | + width: 960px; | |
88 | + margin: auto; | |
89 | + overflow: auto; | |
90 | +} | |
91 | + | |
92 | +#footer .footer-logos div .logo-acesso-footer { | |
93 | + background-image: url("../img/acesso-a-informacao.png"); | |
94 | + float: left; | |
95 | + width: 107px; | |
96 | + height: 49px; | |
97 | +} | |
98 | + | |
99 | + | |
100 | +#footer .footer-logos div .logo-brasil-footer { | |
101 | + background-image: url("../img/brasil.png"); | |
102 | + float: right; | |
103 | + width: 153px; | |
104 | + height: 48px; | |
105 | + } | |
106 | + | |
87 | 107 | footer #extra-footer p { |
88 | 108 | margin: 1em auto; |
89 | 109 | max-width: 960px; |
... | ... | @@ -110,6 +130,6 @@ footer .go-top i { |
110 | 130 | font-size: 12px; |
111 | 131 | } |
112 | 132 | |
113 | -html footer div#wrapper-footer-brasil { | |
133 | +html footer div#wrap-footer-brasil { | |
114 | 134 | padding: 0; |
115 | 135 | } | ... | ... |
colab_spb_theme/templates/footer.html
... | ... | @@ -77,14 +77,32 @@ |
77 | 77 | </div> |
78 | 78 | </div> |
79 | 79 | <div class="clear"></div> |
80 | - <div id="footer-brasil" class="footer-logos"> | |
80 | + <!-- <div id="footer-brasil" class="footer-logos"> | |
81 | 81 | <div> |
82 | 82 | <a href="http://www.acessoainformacao.gov.br/" class="logo-acesso"> |
83 | 83 | <img src="{% static 'img/acesso-a-informacao.png' %}" alt="Acesso a Informação"></a> |
84 | 84 | <a href="http://www.brasil.gov.br/" class="logo-brasil"> |
85 | 85 | <img src="{% static 'img/brasil.png' %}" alt="Brasil - Governo Federal"></a> |
86 | 86 | </div> |
87 | - </div> | |
87 | + </div> --> | |
88 | + <div class="footer-logos"> | |
89 | + | |
90 | + | |
91 | + <div> | |
92 | + | |
93 | + <a href="http://www.acessoainformacao.gov.br/"> | |
94 | + <span class="logo-acesso-footer"></span> | |
95 | + </a> | |
96 | + | |
97 | + | |
98 | + <a href="http://www.brasil.gov.br/"> | |
99 | + <span class="logo-brasil-footer"></span> | |
100 | + </a> | |
101 | + | |
102 | + | |
103 | + </div> | |
104 | + | |
105 | + </div> | |
88 | 106 | </div> |
89 | 107 | <div id="extra-footer"> |
90 | 108 | <p> | ... | ... |