Reduce the amount of space above and below headers. Now things seem much easier to read!!

This commit is contained in:
2025-11-16 19:32:03 -07:00
parent 4b13c1a771
commit 82b6f78627
2 changed files with 11 additions and 0 deletions

View File

@@ -4,6 +4,8 @@
{{ partial "head.html" . }}
{{ partial "favicons.html" . }}
{{ partial "meta.html" . }}
<link rel="stylesheet" href="/css/styles.css">
<link rel="stylesheet" href="/css/style.css">
</head>
{{ block "body" . }}

9
static/css/style.css Normal file
View File

@@ -0,0 +1,9 @@
/* Prevent excess gaps underneath headers. Looks horrible! */
h1,h2,h3 {
margin-bottom: 8px;
margin-top: 4px;
}
h4,h5,h6 {
margin-bottom: 4px;
margin-top: 2px;
}