Update web/static/themes/classic.css
This commit is contained in:
parent
027448e369
commit
410f48c941
@ -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. */
|
||||
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);
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user