diff options
| -rw-r--r-- | blog/assets/css/blog.css | 5 | ||||
| -rw-r--r-- | blog/templates/index.html.j2 | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/blog/assets/css/blog.css b/blog/assets/css/blog.css index e921a73..f7de826 100644 --- a/blog/assets/css/blog.css +++ b/blog/assets/css/blog.css @@ -118,6 +118,11 @@ hr { color: var(--term-black); } +hr.post-listing { + margin-top: 8rem; + margin-bottom: 8rem; +} + .nobr, .icon-text p, .icon-text span { diff --git a/blog/templates/index.html.j2 b/blog/templates/index.html.j2 index 09ce8ad..b3ed4e5 100644 --- a/blog/templates/index.html.j2 +++ b/blog/templates/index.html.j2 @@ -12,7 +12,7 @@ <p>{{ post.intro }}</p> </a> {% if not loop.last %} -<hr> +<hr class="post-listing"> {% endif %} {% endfor %} {% endblock %} |
