diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-18 20:05:10 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-18 20:05:10 +0200 |
commit | 63f3d429e606a898c0347d4c994a864063e360ea (patch) | |
tree | ef666b1ac4d2827d7d57dfa70185264f86a71d72 | |
parent | footer: less words more good (diff) | |
download | jekyll-theme-63f3d429e606a898c0347d4c994a864063e360ea.tar.gz jekyll-theme-63f3d429e606a898c0347d4c994a864063e360ea.zip |
posts: denser feed
Diffstat (limited to '')
-rw-r--r-- | _includes/jekyll-theme/posts/feed.html | 2 | ||||
-rw-r--r-- | assets/css/jekyll-theme/posts.css | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/_includes/jekyll-theme/posts/feed.html b/_includes/jekyll-theme/posts/feed.html index f3bfe14..9e9e268 100644 --- a/_includes/jekyll-theme/posts/feed.html +++ b/_includes/jekyll-theme/posts/feed.html @@ -4,7 +4,7 @@ {% for post in paginator.posts %} <div class="feed-entry"> <div class="post-header"> - <h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2> + <h3><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h3> <div class="post-date"> <p class="text-muted"> {% if post.category %} diff --git a/assets/css/jekyll-theme/posts.css b/assets/css/jekyll-theme/posts.css index 1395c05..bf10e90 100644 --- a/assets/css/jekyll-theme/posts.css +++ b/assets/css/jekyll-theme/posts.css @@ -25,7 +25,6 @@ /* Don't use an actual <hr>, it's margins are too big, use a border instead. */ .feed-entry { - margin-bottom: 15px; /* The color of <hr>. */ - border-bottom: 1px solid #eee; + border-bottom: 3px solid #eee; } |