From d4e76877e9734b1c952919e8525f7f11b8396d7f Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sun, 16 Nov 2025 19:49:11 -0700 Subject: [PATCH] Add more CSS elements and be more specific with header sizes. --- static/css/style.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index 2b5e1b7..5f8b554 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,9 +1,17 @@ /* Prevent excess gaps underneath headers. Looks horrible! */ -h1,h2,h3 { +h1,h2,p,div { + margin-bottom: 16px; + margin-top: 8px; +} +h3,h4 { + margin-bottom: 12px; + margin-top: 6px; +} +h5,h6 { margin-bottom: 8px; margin-top: 4px; } -h4,h5,h6 { +pre,strong { margin-bottom: 4px; margin-top: 2px; }