aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Legler <alex@a3li.li>2015-02-13 16:16:20 +0100
committerAlex Legler <alex@a3li.li>2015-02-13 16:16:20 +0100
commite175491a4156cc6b5ef7bd78541f6618adb27017 (patch)
treef03262d4c5096ceffde856e3f0de09b3545c3878
parentnavbar-grey: active item isn't bold anymore, don't color links (diff)
downloadtyrian-theme-e175491a4156cc6b5ef7bd78541f6618adb27017.tar.gz
tyrian-theme-e175491a4156cc6b5ef7bd78541f6618adb27017.tar.bz2
tyrian-theme-e175491a4156cc6b5ef7bd78541f6618adb27017.zip
Fix footer icons on xs screens
-rw-r--r--index.html6
-rw-r--r--sources/css/tyrian/less/footer.less9
2 files changed, 10 insertions, 5 deletions
diff --git a/index.html b/index.html
index b0b10ce..9db069c 100644
--- a/index.html
+++ b/index.html
@@ -269,14 +269,14 @@
</div>
</div>
<div class="row">
- <div class="col-xs-3 col-md-2">
+ <div class="col-xs-2 col-sm-3 col-md-2">
<ul class="footerlinks three-icons">
<li><a href="http://twitter.com/gentoo" title="@Gentoo on Twitter"><span class="fa fa-twitter fa-fw"></span></a></li>
<li><a href="https://plus.google.com/+Gentoo" title="+Gentoo on Google+"><span class="fa fa-google-plus fa-fw"></span></a></li>
<li><a href="https://www.facebook.com/gentoo.org" title="Gentoo on Facebook"><span class="fa fa-facebook fa-fw"></span></a></li>
</ul>
</div>
- <div class="col-xs-9 col-md-9">
+ <div class="col-xs-10 col-sm-9 col-md-10">
<strong>&copy; 2001&ndash;2015 Gentoo Foundation, Inc.</strong><br />
<small>
Gentoo is a trademark of the Gentoo Foundation, Inc.
@@ -293,4 +293,4 @@
<script src="assets/bootstrap.js"></script>
<script src="assets/retina.min.js"></script>
</body>
-</html>
+</html> \ No newline at end of file
diff --git a/sources/css/tyrian/less/footer.less b/sources/css/tyrian/less/footer.less
index b324a81..5499e44 100644
--- a/sources/css/tyrian/less/footer.less
+++ b/sources/css/tyrian/less/footer.less
@@ -81,7 +81,12 @@ ul.footerlinks {
}
ul.three-icons li {
- float: left;
- width: 33%;
text-align: center;
+}
+
+@media (min-width: @screen-sm-min) {
+ ul.three-icons li {
+ float: left;
+ width: 33%;
+ }
} \ No newline at end of file