Update web/static/app.css

This commit is contained in:
Joshua Laymon 2025-08-14 17:42:06 +00:00
parent d33061f1e0
commit a78527d065

View File

@ -399,27 +399,23 @@ code,kbd{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono
box-shadow: 0 0 0 3px rgba(107,130,255,.25); box-shadow: 0 0 0 3px rgba(107,130,255,.25);
} }
/* ===== Danger themed gradient (red family) ===== */ /* ===== Solid red family background ===== */
.danger-bg { .danger-bg {
min-height: 100vh; min-height: 100vh;
background: #D98482; background: #D98482;
} }
/* Keep cards readable over the red gradient */ /* Keep cards readable over red bg */
.danger-bg .card, .danger-bg .login-card {
.danger-bg .result-card, background: #ffffff;
.danger-bg .search-form, border: 1px solid var(--border);
.danger-bg .entry-form, box-shadow: 0 10px 30px rgba(0,0,0,.08);
.danger-bg .login-card{
background:#ffffff;
border:1px solid var(--border);
box-shadow:0 10px 30px rgba(0,0,0,.08);
} }
/* Optional: make the top bar a touch translucent over red bg */ /* Optional: translucent top bar over red bg */
.danger-bg .topbar-wrap{ .danger-bg .topbar-wrap {
background:rgba(248,250,252,.85); background: rgba(248,250,252,.85);
backdrop-filter: blur(6px); backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
border-bottom:1px solid rgba(229,231,235,.9); border-bottom: 1px solid rgba(229,231,235,.9);
} }