diff --git a/config/custom.css b/config/custom.css index a7eb64d..8c0224a 100755 --- a/config/custom.css +++ b/config/custom.css @@ -32,9 +32,9 @@ body.tab-nucking-futz { /* Readability / tone-down layer */ /* ----------------------------- */ -/* Let more background show through */ +/* Let more background show through (was 0.55) */ #page-wrapper { - background-color: rgba(0, 0, 0, 0.55); /* was 0.55 */ + background-color: rgba(0, 0, 0, 0.40); } /* Soft blur + desaturate background only @@ -47,10 +47,10 @@ body::before { } */ -/* Make service cards and widgets pop (but more transparent) */ +/* Make service cards and widgets pop (but more transparent than before) */ .service-card, .widget { - background: rgba(20, 20, 20, 0.55) !important; /* was 0.85 */ + background: rgba(20, 20, 20, 0.70) !important; /* was 0.85 */ backdrop-filter: blur(2px); border-radius: 10px; } @@ -58,9 +58,26 @@ body::before { /* ----------------------------- */ /* PNCHarris: narrow centered column */ /* ----------------------------- */ -body.tab-pncharris #page-wrapper { - max-width: 600px; /* adjust: 760px narrower, 1100px wider */ - margin: 0 auto; + +/* Constrain the real content container */ +body.tab-pncharris main { + max-width: 900px; /* adjust: 760px narrower, 1100px wider */ + margin: 0 auto !important; padding-left: 16px; padding-right: 16px; } + +/* Some builds wrap groups/sections full-width; constrain them too */ +body.tab-pncharris section, +body.tab-pncharris .group { + max-width: 900px; + margin-left: auto !important; + margin-right: auto !important; +} + +/* If cards are being forced to stretch, relax that on PNCHarris */ +body.tab-pncharris .service-card, +body.tab-pncharris .widget { + width: auto !important; + max-width: 100% !important; +}