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; +}