From 04aa4acc49896285883821ec32529bc63a0c01bd Mon Sep 17 00:00:00 2001 From: h202-wq Date: Wed, 19 Aug 2026 08:42:39 -0400 Subject: [PATCH] fixed colored links + fixed navagation --- src/style.css | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/style.css b/src/style.css index c7cab9e..a67c406 100644 --- a/src/style.css +++ b/src/style.css @@ -28,6 +28,10 @@ body { -webkit-font-smoothing: antialiased; } +a { + color: inherit; +} + .candle-canvas { position: fixed; inset: 0; @@ -243,6 +247,18 @@ body { font-size: 0.9rem; } +.verse-ref a { + color: var(--accent); + text-decoration: none; + transition: color 0.3s; +} + +.verse-ref a:hover { + color: var(--accent-soft); + text-decoration: underline; + text-underline-offset: 4px; +} + @keyframes rise { from { opacity: 0; @@ -748,6 +764,15 @@ body { display: flex; } + .home-nav { + position: static; + width: 100%; + display: flex; + justify-content: center; + gap: 2rem; + margin-bottom: 1.4rem; + } + .sidebar { position: fixed; top: 0;