From e41e522c13aa1851a88c74ac92ddd3b33ecbe56d Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 1 Sep 2021 12:53:31 +0200 Subject: [PATCH] _scss: tweak white-space / margins - Reduce white-space after headings, so that the section content groups better with the heading - Increase white-space before headings, so that sections are more separated from the previous sections. - Reduce indentation of bullet-lists and numbered-lists. These lists are still indented slightly (5px), but reducing the indentation to make the layout a bit less "busy", and to give list-items slightly more width before content is wrapped. Signed-off-by: Sebastiaan van Stijn --- _scss/_typography.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_scss/_typography.scss b/_scss/_typography.scss index 45c85c274a..455c4b77b9 100755 --- a/_scss/_typography.scss +++ b/_scss/_typography.scss @@ -43,6 +43,8 @@ h1,h2,h3,h4,h5,h6 { font-family: $headings; clear: both; line-height: 26px; + margin-top: 30px; + margin-bottom: 0; } h1 { @@ -75,3 +77,7 @@ h6 { dd, dt { line-height: 25px; } + +ol, ul { + padding-left: 25px; +}