diff options
-rw-r--r-- | tuxlite_zf/Screenshot.png | bin | 117113 -> 117549 bytes | |||
-rw-r--r-- | tuxlite_zf/static/css/style.css | 10 | ||||
-rw-r--r-- | tuxlite_zf/templates/base.html | 2 | ||||
-rw-r--r-- | tuxlite_zf/templates/index.html | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/tuxlite_zf/Screenshot.png b/tuxlite_zf/Screenshot.png Binary files differindex e42e317..c7107ee 100644 --- a/tuxlite_zf/Screenshot.png +++ b/tuxlite_zf/Screenshot.png diff --git a/tuxlite_zf/static/css/style.css b/tuxlite_zf/static/css/style.css index fe6a0a4..40e3162 100644 --- a/tuxlite_zf/static/css/style.css +++ b/tuxlite_zf/static/css/style.css @@ -5,9 +5,7 @@ ol li ul, ol li ol { margin-bottom: 1.25em;
}
-ul, ol, dl {
-list-style-position: inside;
-}
+article { padding-left:1em; }
/* Base.html - top navigation */
@@ -34,8 +32,10 @@ text-transform: uppercase; /* Index.html - posts */
-h3.article-title { margin-bottom: 0em; }
-.article-title a { color: #222222; }
+h3.article-title {
+margin-bottom: 0em;
+color: #3A91CB;
+}
/* Article infos | infos_bottom.html */
diff --git a/tuxlite_zf/templates/base.html b/tuxlite_zf/templates/base.html index 2d5e1f2..fc4072e 100644 --- a/tuxlite_zf/templates/base.html +++ b/tuxlite_zf/templates/base.html @@ -86,7 +86,7 @@ </ul>
{% endif %}
- {% if SOCIAL %}
+ {% if SOCIAL %}
<h5 class="sidebar-title">Social</h5>
<ul class="side-nav">
{% for name, link in SOCIAL %}
diff --git a/tuxlite_zf/templates/index.html b/tuxlite_zf/templates/index.html index a07813c..6e632dc 100644 --- a/tuxlite_zf/templates/index.html +++ b/tuxlite_zf/templates/index.html @@ -7,7 +7,7 @@ {# First item #} {% if loop.first and not articles_page.has_previous() %} <article> - <h3 class="article-title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h3> + <a href="{{ SITEURL }}/{{ article.url }}"><h3 class="article-title">{{ article.title }}</h3></a> {% include 'article_infos.html' %}{{ article.content }}{% include 'article_infos_bottom.html' %}{% include 'comments.html' %} </article> |