Update web/static/app.css

This commit is contained in:
Joshua Laymon 2025-08-14 17:31:58 +00:00
parent bde737c311
commit 283769509d

View File

@ -397,4 +397,35 @@ code,kbd{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono
outline: none; outline: none;
border-color: #6b82ff; /* (matches your current focus color) */ border-color: #6b82ff; /* (matches your current focus color) */
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) ===== */
.danger-bg{
min-height:100vh;
background:
linear-gradient(110deg,
#fee2e2 0%, /* light red */
#fecaca 35%, /* softer red */
#fca5a5 100% /* warm red */
);
background-attachment: fixed;
}
/* Keep cards readable over the red gradient */
.danger-bg .card,
.danger-bg .result-card,
.danger-bg .search-form,
.danger-bg .entry-form,
.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 */
.danger-bg .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);
} }