diff options
| author | Botond Hende <nettingman@gmail.com> | 2025-12-20 14:31:12 +0100 |
|---|---|---|
| committer | Botond Hende <nettingman@gmail.com> | 2025-12-20 14:40:09 +0100 |
| commit | 926ceaec72dcce2c9a61029c09c8195f8fa6bafd (patch) | |
| tree | 044b0376a5f37aa40f268eda20fddbba6a6902da /blog | |
| parent | d8995902414f2d2689b0bbdc6651730b1fe9bd31 (diff) | |
added space between blogposts on listing
Diffstat (limited to 'blog')
| -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 %} |
