From 11bc99a2f03150204b412eab872657c0b4a2aa3a Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sun, 20 Jul 2025 11:50:13 -0400 Subject: [PATCH] Add back whitespace to block elements --- public_html/css/hpr.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index 6b31cab..7464cab 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -126,7 +126,8 @@ body > footer { background-color: var(--background-secondary); color: var(--text-secondary); padding: 0.25rem; - text-align: center + text-align: center; + line-height: 1.25; } body > footer hr:first-child { display: none; @@ -199,8 +200,11 @@ ul { li { line-height: 1.25; + margin-bottom: 0.25rem; +} +li:last-child { + margin-bottom: 0.25rem; } - a { text-decoration: none; color: var(--link-primary); @@ -236,7 +240,11 @@ p.meta { p.meta span label { font-weight: bold; } - +article > p, +#main_content > p, +#main_content > section > p { + line-height: 1.45; +} .lane { display: flex; flex-direction: row;