This commit is contained in:
traveler 2025-12-28 21:34:50 -06:00
parent 49567a1712
commit c4a0c526c6

View file

@ -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;
}