From 5bdaf8a142e86dfec1568a882ec17c6ae9855983 Mon Sep 17 00:00:00 2001 From: Zoness Date: Fri, 19 Dec 2025 13:42:45 -0600 Subject: [PATCH] Custom Style: Restore mainroad-style divider on site title --- static/css/custom.css | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 static/css/custom.css diff --git a/static/css/custom.css b/static/css/custom.css new file mode 100644 index 0000000..b1f597f --- /dev/null +++ b/static/css/custom.css @@ -0,0 +1,10 @@ +/* Site title - homepage header container */ +.header__container::after { + content: ''; + display: block; + width: 100%; + height: 4px; + background: #e22d30; + margin: 15px auto 0; + border-radius: 0; +}