Browse Source

Slight gradient on bottom bar, switch links.

pull/24/head
Ben Kurtovic 12 years ago
parent
commit
3a70096689
2 changed files with 10 additions and 4 deletions
  1. +2
    -2
      pages/support/footer.mako
  2. +8
    -2
      static/css/main.css

+ 2
- 2
pages/support/footer.mako View File

@@ -16,7 +16,7 @@
<a href="http://wiki.toolserver.org/"><img src="${root}/static/images/toolserver-button.png" title="Powered by the Wikimedia Toolserver" alt="Powered by the Wikimedia Toolserver" /></a>
</td>
<td>
<p>Copyright &copy; 2009&ndash;2012 <a href="http://earwig.github.com/">Ben Kurtovic</a> &bull; \
<p>Copyright &copy; 2009&ndash;2012 <a href="http://en.wikipedia.org/wiki/User:The_Earwig">Ben Kurtovic</a> &bull; \
<a href="mailto:earwig@toolserver.org">Contact</a> &bull; \
<a href="https://github.com/earwig/toolserver">View Source</a> &bull; \
<a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0 Strict</a><br />
@@ -24,7 +24,7 @@
</p>
</td>
<td>
<a href="http://en.wikipedia.org/wiki/User:The_Earwig"><img src="${root}/static/images/earwig-button.png" title="Powered by Earwig Technology" alt="Powered by Earwig Technology" /></a>
<a href="http://earwig.github.com/"><img src="${root}/static/images/earwig-button.png" title="Powered by Earwig Technology" alt="Powered by Earwig Technology" /></a>
</td>
</tr>
</table>


+ 8
- 2
static/css/main.css View File

@@ -22,11 +22,17 @@ div#footer {
width: 100%;
height: 70px;
bottom: 0;
background-color: #EEE;
font-size: 12px;
text-align: center;
line-height: 1.5;

background: #EEEEEE;
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F7F7F7), to(#CCCCCC)); /* Chrome, Safari 4+ */
background: -webkit-linear-gradient(top, #F7F7F7, #CCCCCC); /* Chrome 10+, Safari 5+ */
background: -moz-linear-gradient(top, #F7F7F7, #CCCCCC); /* Firefox 3.6+ */
background: -ms-linear-gradient(top, #F7F7F7, #CCCCCC); /* IE 10+ (lol) */
background: -o-linear-gradient(top, #F7F7F7, #CCCCCC); /* Opera 11.10+ */
background: linear-gradient(top, #F7F7F7, #CCCCCC);
}

div#foot-divider {


Loading…
Cancel
Save