This commit is contained in:
traveler 2025-12-23 16:15:52 -06:00
parent d59441d396
commit ba9beab695

View file

@ -1,5 +1,6 @@
/* custom.css */
/* Base background behavior */
body {
background-size: cover !important;
background-position: center center !important;
@ -23,3 +24,28 @@ body {
background-image: url("/images/bg-wasted-bandwidth.jpg") !important;
}
/* ----------------------------- */
/* Readability / tone-down layer */
/* ----------------------------- */
/* Dark overlay behind all content */
#page-wrapper {
background-color: rgba(0, 0, 0, 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 */
.service-card,
.widget {
background: rgba(20, 20, 20, 0.85) !important;
backdrop-filter: blur(2px);
border-radius: 10px;
}