diff options
-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; } |