summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2013-05-13 02:18:25 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-05-13 02:18:25 +0200
commit9236c30df74a27c987d8e82169bc7730141bfc63 (patch)
tree8c7efed45b6dee4eea703f838ff33302d8fb8984
parent59bcdfc0130542e9d27e10fbfc6553cb15b5bd8c (diff)
downloadwww-9236c30df74a27c987d8e82169bc7730141bfc63.tar.gz
www-9236c30df74a27c987d8e82169bc7730141bfc63.tar.bz2
www-9236c30df74a27c987d8e82169bc7730141bfc63.zip
fix layout
bootstrap requires spanN to do not have a padding, but the thumbnail-class adds padding
-rw-r--r--index.html2
-rw-r--r--templates/index.html4
2 files changed, 3 insertions, 3 deletions
diff --git a/index.html b/index.html
index e0d71e9..390a354 100644
--- a/index.html
+++ b/index.html
@@ -23,11 +23,11 @@
#hosts li {
list-style-type: none;
text-align: center;
- line-height: 100px;
margin: 10px;
}
#hosts li a {
+ line-height: 100px;
display: block;
}
diff --git a/templates/index.html b/templates/index.html
index 1933e65..3873911 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -3,8 +3,8 @@
<ul id="hosts" class="row">
{{#hosts}}
- <li class="span2 thumbnail">
- <a data-uri="{{uri}}">{{name}}</a>
+ <li class="span2">
+ <a data-uri="{{uri}}" class="thumbnail">{{name}}</a>
</li>
{{/hosts}}
</ul>