From 15a38caaf9ae31ed2272ee24cda20b4d20ad8439 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 18 Mar 2026 18:43:08 +0800 Subject: [PATCH] style: simplify footer layout and update links Replace two-column footer (links left, attribution right) with a single inline row of slash-separated items. Update attribution text to 'Made by Vinta' with a link to vinta.ws, align footer links to match standard anchor color/hover behavior. Co-Authored-By: Claude --- website/static/style.css | 12 +++++------- website/templates/base.html | 20 ++++++++++---------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/website/static/style.css b/website/static/style.css index c31b6875..c95edbb7 100644 --- a/website/static/style.css +++ b/website/static/style.css @@ -407,16 +407,14 @@ a:hover { color: var(--accent-hover); text-decoration: underline; } background: var(--bg-input); display: flex; align-items: center; - justify-content: space-between; + justify-content: flex-end; + gap: 0.5rem; } -.footer a { color: var(--text-muted); text-decoration: none; } -.footer a:hover { color: var(--accent); } +.footer a { color: var(--accent); text-decoration: none; } +.footer a:hover { color: var(--accent-hover); text-decoration: underline; } -.footer-links { - display: flex; - gap: 1rem; -} +.footer-sep { color: var(--border-strong); } /* === Responsive === */ @media (max-width: 900px) { diff --git a/website/templates/base.html b/website/templates/base.html index f8eb9e3f..3f5a3d07 100644 --- a/website/templates/base.html +++ b/website/templates/base.html @@ -38,20 +38,20 @@
{% block content %}{% endblock %}