removed bottom margin of blog header

This commit is contained in:
neko 2021-04-11 00:58:38 +02:00
parent a5cb02d098
commit 54d139cce1
2 changed files with 6 additions and 1 deletions

View File

@ -142,6 +142,11 @@ main a:hover {
font-size: large; font-size: large;
} }
h2.blog-head {
margin-bottom: 0px;
}
p.blog-date { p.blog-date {
margin-top: 20px; margin-top: 20px;
margin-bottom: 0px; margin-bottom: 0px;

View File

@ -3,7 +3,7 @@ title: Blog
layout: page-screen layout: page-screen
--- ---
<h2>▄▀▄▀ Recent Posts ▀▄▀▄</h2> <h2 class="blog-head">▄▀▄▀ Recent Posts ▀▄▀▄</h2>
{% for post in paginator.posts %} {% for post in paginator.posts %}
<p class="blog-date"> ░▒▓█ {{post.date | date: '%Y-%m-%d' }} █▓▒░ </p><p class="blog-post"><a href="{{site.baseurl}}{{post.url}}">cat {{post.title | replace:' ','_'}}.txt</a></p> <p class="blog-date"> ░▒▓█ {{post.date | date: '%Y-%m-%d' }} █▓▒░ </p><p class="blog-post"><a href="{{site.baseurl}}{{post.url}}">cat {{post.title | replace:' ','_'}}.txt</a></p>
{%endfor%} {%endfor%}