From 5596bf6d98b1f00f2250f0c86f119b83bcda2131 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Sun, 11 Sep 2022 08:33:51 -0500 Subject: [PATCH 2/2] * html/layout.css (h4, h5): Margins, text-decoration The margin changes add whitespace after other page elements, matching the margins of other heading levels. The text decorations visually distinguish them from normal body text. The result is much more readable. --- html/layout.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/html/layout.css b/html/layout.css index 59d88a3bec..dbd7a9626e 100644 --- a/html/layout.css +++ b/html/layout.css @@ -92,6 +92,14 @@ h3 { font-size: 1.5em; margin: 1.2em 0px; } +h4 { + margin: 1em 0px; + text-decoration: underline; +} +h5 { + margin: 1em 0px; + text-decoration: italic; +} a { color: #c73a6c; -- 2.34.0