Commit 6536fc8b3fe25c9ab9709b1e374d4c1821a291fc

Authored by Carlos Coêlho
1 parent 43f44ed1
Exists in master

Footer alignment

Signed-off-by: Carlos Oliveira <carlospecter@gmail.com>
Signed-off-by: Peter Lima <peterlima@gmail.com>
src/colab_spb_theme/static/css/footer.css
1 1 /*Footer*/
2 2  
3 3 #btn-top {
4   - min-width: 960px;
5   - max-width: 960px;
6   - padding-right: 0px;
  4 + min-width: 960px;
  5 + max-width: 960px;
  6 + padding-right: 0px;
  7 + margin-bottom: 22px;
  8 + text-decoration: none;
  9 + font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
  10 + font-size: 14px;
  11 + position: relative;
7 12 }
8 13  
  14 +#btn-top a {
  15 + padding-left: 20px;
  16 + background: url("../img/voltar-topo.png") no-repeat left center;
  17 + color: #777;
  18 + font-size: 14px;
  19 +}
9 20  
10 21 #footer {
11 22 padding: 4px 0 20px 0;
... ... @@ -61,7 +72,7 @@
61 72  
62 73 #doormat-container .doormatColumn {
63 74 float: left;
64   - margin: 0 1em;
  75 + margin: 0 1.1em 0 0.8em;
65 76 text-align: left;
66 77 }
67 78  
... ... @@ -76,16 +87,13 @@
76 87 #extra-footer p {
77 88 margin: 1em auto;
78 89 max-width: 960px;
  90 + font-size: 12px;
79 91 }
80 92  
81 93 #footer .clear {
82 94 clear: both;
83 95 }
84 96  
85   -.go-top{
86   - font-size: 13px;
87   - height: 2em;
88   -}
89 97  
90 98 .go-top a{
91 99 color: #717782;
... ... @@ -95,5 +103,9 @@
95 103 .go-top i {
96 104 margin-right: 5px;
97 105 text-decoration: none;
98   - font-size: 12px;
  106 + font-size: 12px;
  107 +}
  108 +
  109 +html footer div#wrapper-footer-brasil {
  110 + padding: 0;
99 111 }
... ...
src/colab_spb_theme/templates/footer.html
... ... @@ -4,7 +4,7 @@
4 4 <footer>
5 5 <div id="btn-top" class="container">
6 6 <div class="pull-right go-top">
7   - <a id="link-top" href="#link-rodape"><i class="fa fa-chevron-up"></i>Voltar ao topo</a>
  7 + <a id="link-top" href="#link-rodape">Voltar para o topo</a>
8 8 </div>
9 9 </div>
10 10 <div id="footer" role="contentinfo">
... ... @@ -88,8 +88,11 @@
88 88 </div>
89 89 <div id="extra-footer">
90 90 <p>
91   - Desenvolvido com o CMS de código aberto
92   - <a href="#"></a>
  91 + Desenvolvido com os projetos de software livre
  92 + <a href="http://github.com/colab/colab">Colab</a>,
  93 + <a href="http://gitlab.com">Gitlab</a>,
  94 + <a href="http://www.gnu.org/software/mailman/">Mailman</a> e
  95 + <a href="http://noosfero.org">Noosfero</a>
93 96 </p>
94 97 </div>
95 98 </footer>
... ...