From 4b09b19b6953d84fc6aee63167d180815ade030b 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, decoration, weight, style The margin changes add whitespace after other page elements, matching the margins of other heading levels. The other changes visually distinguish them from normal body text. The result is much more readable. --- html/layout.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/html/layout.css b/html/layout.css index 59d88a3bec..f7fd276900 100644 --- a/html/layout.css +++ b/html/layout.css @@ -90,8 +90,17 @@ h2 { h3 { font-size: 1.5em; + font-weight: bold; margin: 1.2em 0px; } +h4 { + margin: 1em 0px; + text-decoration: underline; +} +h5 { + margin: 1em 0px; + font-style: italic; +} a { color: #c73a6c; -- 2.34.0