about summary refs log tree commit diff
diff options
context:
space:
mode:
authoruser@node5.net <user@node5.net>2025-09-25 22:06:52 +0200
committeruser@node5.net <user@node5.net>2025-09-25 22:06:52 +0200
commit6a2f3f8492316f4aab810ba67a382a1b73f4f7ec (patch)
treeef47f0161e92729015fbc3319795c0b4553e85ad
parent9f731f24b10545dbdbf0060f39a53ada7b09a2ed (diff)
Style - Title hairline -> under line
-rw-r--r--blog.node5.net/static/main.css4
-rw-r--r--blog.node5.net/templates/base.html3
2 files changed, 4 insertions, 3 deletions
diff --git a/blog.node5.net/static/main.css b/blog.node5.net/static/main.css
index 0d93b47..2ec91ea 100644
--- a/blog.node5.net/static/main.css
+++ b/blog.node5.net/static/main.css
@@ -114,6 +114,8 @@ a:visited {
 h1 {
 	color: var(--secondary-color);
 	margin: 0;
+  text-decoration: underline;
+  text-decoration-thickness: 0.1em;
 }
 
 h2 {
@@ -138,7 +140,7 @@ tr:nth-child(even) {
 }
 
 .entries {
-	margin: 0;
+  padding-top: 2em;
 	padding: 0;
 	list-style: None;
 }
diff --git a/blog.node5.net/templates/base.html b/blog.node5.net/templates/base.html
index 23e4bf2..d626c45 100644
--- a/blog.node5.net/templates/base.html
+++ b/blog.node5.net/templates/base.html
@@ -16,8 +16,7 @@
     <a id="logo" href="/">
         <h1 class="inline">{{ title }}</h1>
     </a><span id="motd" class="grey inline">{{ motd }}</span>
-    <hr>
-    <br>
+
     {% block content %}
     {% endblock %}