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

View file

@ -32,9 +32,9 @@ 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
@ -44,12 +44,23 @@ body::before {
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;
}