sup

A curses threads-with-tags style email client

sup-website.git

git clone https://supmua.dev/git/sup-website/
commit 53f07eccef344d06e376f63ddcd41fbca668a746
parent 4f2b04df62af938e80043b5acdcfcf829e61bb4c
Author: Dan Callaghan <djc@djc.id.au>
Date:   Fri,  3 Apr 2026 15:24:17 +1100

header tagline should not be marked up as h2

Diffstat:
M _includes/header.html | 2 +-
M stylesheets/stylesheet.css | 7 ++++++-
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/_includes/header.html b/_includes/header.html
@@ -2,7 +2,7 @@
       <div class="container">
         <a href="/">
           <h1>sup</h1>
-          <h2>A curses threads-with-tags style email client</h2>
+          <p class="tagline">A curses threads-with-tags style email client</p>
         </a>
 
         <section id="links">
diff --git a/stylesheets/stylesheet.css b/stylesheets/stylesheet.css
@@ -67,10 +67,15 @@ header h1:before {
   font-size: 24px;
 }
 
-header h2 {
+header .tagline {
   font-size: 18px;
   font-weight: 300;
   color: #666;
+  margin: 0 0 20px;
+  letter-spacing: -0.03em;
+  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
+               0 0 5px rgba(181, 232, 83, 0.1),
+               0 0 10px rgba(181, 232, 83, 0.1);
 }
 
 #downloads .btn {