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 <noreply@anthropic.com>
This commit is contained in:
Vinta Chen
2026-03-18 18:43:08 +08:00
parent 25ec0c3937
commit 15a38caaf9
2 changed files with 15 additions and 17 deletions

View File

@@ -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) {