Update web/static/themes/classic.css

This commit is contained in:
Joshua Laymon 2025-09-06 03:12:16 +00:00
parent 027448e369
commit 410f48c941

View File

@ -436,3 +436,33 @@ 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. */
/* 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);
}