From 7f4e35fb749c0c52a101d29e7cb152392b4a5ec5 Mon Sep 17 00:00:00 2001 From: traveler Date: Sun, 28 Dec 2025 21:05:20 -0600 Subject: [PATCH] jk --- config/custom.css | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/config/custom.css b/config/custom.css index fcf64c2..9058db8 100755 --- a/config/custom.css +++ b/config/custom.css @@ -32,24 +32,35 @@ body.tab-nucking-futz { /* Readability / tone-down layer */ /* ----------------------------- */ -/* Dark overlay behind all content */ +/* Let more background show through */ #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 { content: ""; position: fixed; inset: 0; backdrop-filter: blur(6px) saturate(0.8); z-index: -1; -} */ +} +*/ -/* Make service cards and widgets pop */ +/* Make service cards and widgets pop (but more transparent) */ .service-card, .widget { - background: rgba(20, 20, 20, 0.85) !important; + background: rgba(20, 20, 20, 0.70) !important; /* was 0.85 */ backdrop-filter: blur(2px); 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; +}