aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gum/static/style.css14
-rw-r--r--gum/templates/sidebar.html6
2 files changed, 17 insertions, 3 deletions
diff --git a/gum/static/style.css b/gum/static/style.css
index 32d2fec..b618422 100644
--- a/gum/static/style.css
+++ b/gum/static/style.css
@@ -188,6 +188,20 @@ a:focus { color: #34495E; }
.label:hover,
.label:focus {color:#eee; }
+ul, ol {
+ margin-bottom: 0.273em;
+ margin-left: 1.5em;
+}
+
+ul {
+ list-style: disc outside;
+}
+
+ul.blank {
+ list-style: none outside;
+ margin-left: 0;
+}
+
/* Footer
--------------------------------------------------------- */
.bg { background:#eee; margin-top:35px; padding-top:25px; border-top:5px solid #3498DB; }
diff --git a/gum/templates/sidebar.html b/gum/templates/sidebar.html
index 25b22e4..d0df6b0 100644
--- a/gum/templates/sidebar.html
+++ b/gum/templates/sidebar.html
@@ -21,7 +21,7 @@
<h4>Categories</h4>
{% if categories %}
-<ul>
+<ul class="blank">
{% for cat, null in categories %}
<li><a href="{{ SITEURL }}/{{ cat.url|e }}">{{ cat }}</a></li>
{% endfor %}
@@ -31,7 +31,7 @@
<h4>Tags</h4>
{% if tags %}
- <ul>
+ <ul class="blank">
{% for tag in tag_cloud %}
<li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0|e }}</a></li>
{% endfor %}
@@ -42,7 +42,7 @@
{% if SOCIAL %}
<nav class="widget">
<h4>Social</h4>
- <ul>
+ <ul class="blank">
{% for name, url in SOCIAL %}
<li><a href="{{ url|e }}">{{ name }}</a></li>
{% endfor %}