This commit is contained in:
traveler 2025-12-28 21:05:20 -06:00
parent 30bd533207
commit 7f4e35fb74

View file

@ -32,24 +32,35 @@ body.tab-nucking-futz {
/* Readability / tone-down layer */ /* Readability / tone-down layer */
/* ----------------------------- */ /* ----------------------------- */
/* Dark overlay behind all content */ /* Let more background show through */
#page-wrapper { #page-wrapper {
background-color: rgba(0, 0, 0, 0.55); background-color: rgba(0, 0, 0, 0.40); /* was 0.55 */
} }
/* Soft blur + desaturate background only /* Soft blur + desaturate background only
body::before { body::before {
content: ""; content: "";
position: fixed; position: fixed;
inset: 0; inset: 0;
backdrop-filter: blur(6px) saturate(0.8); backdrop-filter: blur(6px) saturate(0.8);
z-index: -1; z-index: -1;
} */ }
*/
/* Make service cards and widgets pop */ /* Make service cards and widgets pop (but more transparent) */
.service-card, .service-card,
.widget { .widget {
background: rgba(20, 20, 20, 0.85) !important; background: rgba(20, 20, 20, 0.70) !important; /* was 0.85 */
backdrop-filter: blur(2px); backdrop-filter: blur(2px);
border-radius: 10px; border-radius: 10px;
} }
/* ----------------------------- */
/* PNCHarris: narrow centered column */
/* ----------------------------- */
body.tab-pncharris #page-wrapper {
max-width: 900px; /* adjust: 760px narrower, 1100px wider */
margin: 0 auto;
padding-left: 16px;
padding-right: 16px;
}