homepage/config/custom.css
traveler 819297aeaa kl
2025-12-28 21:19:24 -06:00

66 lines
1.5 KiB
CSS
Executable file

/* custom.css */
/* Base background behavior */
body {
background-size: cover !important;
background-position: center center !important;
background-attachment: fixed !important;
}
/* Per-tab backgrounds */
body.tab-glance {
background-image: url("/images/bg-glance.jpg") !important;
}
body.tab-pncharris {
background-image: url("/images/pncharris-bg.png") !important;
}
body.tab-netgrimoire {
background-image: url("/images/Netgrimoire-bg.png") !important;
}
body.tab-wasted-bandwidth {
background-image: url("/images/Wasted-bandwidth-bg.png") !important;
}
body.tab-nucking-futz {
background-image: url("/images/Nucking-futz-bg.png") !important;
}
/* ----------------------------- */
/* Readability / tone-down layer */
/* ----------------------------- */
/* Let more background show through */
#page-wrapper {
background-color: rgba(0, 0, 0, 0.55); /* was 0.55 */
}
/* 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 (but more transparent) */
.service-card,
.widget {
background: rgba(20, 20, 20, 0.55) !important; /* was 0.85 */
backdrop-filter: blur(2px);
border-radius: 10px;
}
/* ----------------------------- */
/* PNCHarris: narrow centered column */
/* ----------------------------- */
body.tab-pncharris #page-wrapper {
max-width: 600px; /* adjust: 760px narrower, 1100px wider */
margin: 0 auto;
padding-left: 16px;
padding-right: 16px;
}