From 998ff14b715fff7a6d94d4480b2a5b0ec0368528 Mon Sep 17 00:00:00 2001 From: Ryan Salazar Date: Sat, 23 May 2026 01:28:20 +0000 Subject: [PATCH] =?UTF-8?q?style:=20dial=20down=20header=20rails=20?= =?UTF-8?q?=E2=80=94=201px=20with=20subtle=20glow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit User feedback: rails were too prominent. Reduced vertical + top rails to 1px with 55% green and a 2px soft glow (was 2px solid + 8px glow). --- src/styles/tailwind.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 96a1013..ebb4b69 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -1557,9 +1557,9 @@ h1, h2, h3 { position: absolute; top: 0; bottom: 0; - width: 2px; - background: #00ff9f; - box-shadow: 0 0 8px rgba(0, 255, 159, 0.7); + width: 1px; + background: rgba(0, 255, 159, 0.55); + box-shadow: 0 0 2px rgba(0, 255, 159, 0.25); pointer-events: none; /* Must beat the sticky main-nav (z-50) and ticker sub-bars so the line paints across every sub-bar background, not behind them. */ @@ -1574,9 +1574,9 @@ h1, h2, h3 { top: 0; left: max(12px, calc((100% - 1200px) / 2 + 12px)); right: max(12px, calc((100% - 1200px) / 2 + 12px)); - height: 2px; - background: #00ff9f; - box-shadow: 0 0 8px rgba(0, 255, 159, 0.7); + height: 1px; + background: rgba(0, 255, 159, 0.55); + box-shadow: 0 0 2px rgba(0, 255, 159, 0.25); pointer-events: none; z-index: 61; }