From 3d0146f3be1640fe5923d8a9ef68b65a92aee678 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Wed, 7 Jan 2026 20:06:12 -0500 Subject: [PATCH] Add HUGE SOURCE CODE button to about page hero --- templates/about.html.j2 | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/templates/about.html.j2 b/templates/about.html.j2 index e166326..c96c538 100644 --- a/templates/about.html.j2 +++ b/templates/about.html.j2 @@ -97,6 +97,29 @@ text-align: center; line-height: 1.8; } +.source-code-btn { + display: inline-block; + margin-top: 50px; + padding: 24px 60px; + font-size: 1.8em; + font-weight: 900; + letter-spacing: 0.15em; + text-transform: uppercase; + text-decoration: none; + color: #000; + background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ffd93d 100%); + border: none; + border-radius: 8px; + box-shadow: 0 8px 30px rgba(255,107,107,0.4), 0 0 60px rgba(255,107,107,0.2); + transition: all 0.3s ease; + position: relative; + z-index: 1; +} +.source-code-btn:hover { + transform: translateY(-4px) scale(1.02); + box-shadow: 0 12px 40px rgba(255,107,107,0.5), 0 0 80px rgba(255,107,107,0.3); + color: #000; +} /* Chapter Sections */ .chapter { @@ -488,6 +511,7 @@

{{ t.about_hero_tagline }}

{{ t.about_hero_tagline2 }}

+ SOURCE CODE