From d728731d74222eb084537ad2cdbedada1db3de2f Mon Sep 17 00:00:00 2001 From: DeNNiiInc Date: Sat, 13 Dec 2025 12:13:21 +1100 Subject: [PATCH] Add GitHub repository link to footer --- index.html | 13 +++++++++++++ public/styles.css | 31 +++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/index.html b/index.html index 745c87a..5eafb1e 100644 --- a/index.html +++ b/index.html @@ -176,6 +176,19 @@ diff --git a/public/styles.css b/public/styles.css index 07b5238..ce342b5 100644 --- a/public/styles.css +++ b/public/styles.css @@ -394,3 +394,34 @@ select:focus { color: var(--text-secondary); font-size: 0.85rem; } + +.footer p { + margin-bottom: 0.5rem; +} + +.github-link { + display: inline-flex; + align-items: center; + gap: 0.5rem; + margin-top: 0.5rem; + padding: 0.5rem 1rem; + background: rgba(255, 255, 255, 0.05); + border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: var(--radius-md); + color: var(--text-secondary); + text-decoration: none; + font-size: 0.85rem; + transition: all 0.3s ease; +} + +.github-link:hover { + background: rgba(255, 255, 255, 0.1); + border-color: rgba(255, 255, 255, 0.3); + color: var(--text-primary); + transform: translateY(-2px); +} + +.github-icon { + width: 18px; + height: 18px; +}