From 410f48c9414fa6c75b345a44dc88ffa3d0afec26 Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Sat, 6 Sep 2025 03:12:16 +0000 Subject: [PATCH] Update web/static/themes/classic.css --- web/static/themes/classic.css | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/web/static/themes/classic.css b/web/static/themes/classic.css index d9b381c..e212035 100644 --- a/web/static/themes/classic.css +++ b/web/static/themes/classic.css @@ -435,4 +435,34 @@ body, .lead-text, .page, .card, .search-input, .input-hero, .textarea-hero, } /* (Note) We intentionally omit the old `body.dark-mode` blocks here. - Midnight (your dark theme) now owns dark styling. */ \ No newline at end of file + Midnight (your dark theme) now owns dark styling. */ + +/* Force the original gradient globally when Classic is active */ +html[data-theme="classic"] body { + min-height: 100vh; + background: + linear-gradient(110deg, + #d7b592 0%, + #e7e3db 30%, + #8fbfe0 100% + ); + background-attachment: fixed; +} + +/* Make the topbar translucent over the gradient (was previously .themed-bg .topbar-wrap) */ +html[data-theme="classic"] .topbar-wrap { + background: rgba(248,250,252,.85); + backdrop-filter: blur(6px); + -webkit-backdrop-filter: blur(6px); + border-bottom: 1px solid rgba(229,231,235,.9); +} + +/* Keep cards floating nicely over the gradient */ +html[data-theme="classic"] .card, +html[data-theme="classic"] .result-card, +html[data-theme="classic"] .search-form, +html[data-theme="classic"] .form-card{ + background:#ffffff; + border:1px solid var(--border); + box-shadow:0 10px 30px rgba(0,0,0,.06); +} \ No newline at end of file