From 4b1ca3e29672db658feace1cf5fda70753a99c23 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Sat, 1 Jun 2019 09:17:28 -0400 Subject: [PATCH 1/2] Make post body h2's smaller on index pages Previously,

s in a post were the exact same size as post titles on index pages (blog index, tag listing). This fixes that by reducing the font-size of body h2's. Closes #82. --- less/core.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/less/core.less b/less/core.less index a25d867..66ce3ba 100644 --- a/less/core.less +++ b/less/core.less @@ -604,6 +604,9 @@ body#collection article, body#subpage article { padding-top: 0; padding-bottom: 0; .book { + h2 { + font-size: 1.4em; + } a.hidden.action { color: #666; float: right; From 6bf4e1a52ea4d86fc3b17b9069ae39a91bbf3a2e Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Sat, 1 Jun 2019 09:26:58 -0400 Subject: [PATCH 2/2] Add spacing around time element on index pages This adds a small margin around a time element, which makes things look better when the body of a post starts with a header. --- less/core.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/less/core.less b/less/core.less index 66ce3ba..118acd8 100644 --- a/less/core.less +++ b/less/core.less @@ -252,6 +252,8 @@ body { margin-bottom: 0.25em; &+time { display: block; + margin-top: 0.25em; + margin-bottom: 0.25em; } } time {