diff --git a/themes/waterspill-en/static/css/style.css b/themes/waterspill-en/static/css/style.css index 499f1a9..4236804 100644 --- a/themes/waterspill-en/static/css/style.css +++ b/themes/waterspill-en/static/css/style.css @@ -1,4 +1,5 @@ dd { margin-left: 23px } +.archives-mobile { display: none } /* *** General Styles *** */ body { @@ -24,10 +25,6 @@ a:hover { text-decoration: none; } -p { - line-height: 1.5em; - padding: 5px 0; -} h1, h2, @@ -53,7 +50,7 @@ ol { list-style: none; } -#topmenu ul li { +#topMenu ul li { list-style: none; } @@ -64,6 +61,10 @@ div.figure img { @media screen and (min-width: 900px) { * { margin: 0; padding: 0; } + p { + line-height: 1.5em; + padding: 5px 0; + } body { text-align: center; } @@ -242,6 +243,7 @@ div.figure img { body { padding:1rem; } + .archives { display: none; } h2 { background: url(../images/hr.gif) top center no-repeat; @@ -252,11 +254,31 @@ div.figure img { display:none; } - #mainContent dl { + .blogItem h2 { + margin-bottom:0.25rem; + } + .blogItem h3 { + font-size: 12px; + margin:0; + padding: 0; + text-align:right; } - #mainContent dt { - font-size: 75%; + #header h2 { + display: none + } + + #topMenu ul { + background: url(../images/hr.gif) top center no-repeat; + padding-top:1rem; + margin-left:0px; + text-align: center; + } + + #topMenu ul li { + display:inline; + font-size: 16pt; + text-transform: uppercase; } #sidebar-mobile { diff --git a/themes/waterspill-en/templates/archives.html b/themes/waterspill-en/templates/archives.html index c460e01..96c8230 100644 --- a/themes/waterspill-en/templates/archives.html +++ b/themes/waterspill-en/templates/archives.html @@ -1,24 +1,13 @@ {% extends "base.html" %} {% block title %}Archives of {{ SITENAME }}{% endblock %} {% block content %} - -
-
-

Archives of {{ SITENAME }}

- {% for article in dates %} -
{{ article.locale_date }}
-
{{ article.title }}
- {% endfor %} -
- - -
- - - +
+
+

Archives of {{ SITENAME }}

+ {% for article in dates %} +
{{ article.locale_date }}
+
{{ article.title }}
+ {% endfor %} +
+
{% endblock %} - - - - - diff --git a/themes/waterspill-en/templates/base.html b/themes/waterspill-en/templates/base.html index 914ad59..f8fc301 100644 --- a/themes/waterspill-en/templates/base.html +++ b/themes/waterspill-en/templates/base.html @@ -35,7 +35,7 @@ {% for item in BEFORE_MENU %}
  • {{ item.name }}
  • {% endfor %} -
  • Home
  • +
  • Home
  • Archives
  • {% for item in AFTER_MENU %}
  • {{ item.name }}
  • @@ -115,10 +115,6 @@
    -
    - - {% include 'analytics.html' %} diff --git a/themes/waterspill-en/templates/index.html b/themes/waterspill-en/templates/index.html index 7f14be6..bf3547e 100644 --- a/themes/waterspill-en/templates/index.html +++ b/themes/waterspill-en/templates/index.html @@ -13,7 +13,7 @@ {% endfor %} -
    +

    Archives of {{ SITENAME }}

    {% for article in dates %} {% if loop.index > 3 %} @@ -21,7 +21,7 @@
    {{ article.title }}
    {% endif %} {% endfor %} -
    + {% endif %} {% endblock content %}