background logo

This commit is contained in:
lelo 2026-01-23 21:11:30 +00:00
parent 4db1b8d927
commit 6630a4f300

View File

@ -19,6 +19,32 @@ body {
var(--light-background); var(--light-background);
} }
/* Subtle oversized logo watermark on all main sections */
main {
position: relative;
overflow: hidden;
}
main::before {
content: "";
position: absolute;
inset: 100px 0 0 0;
background-image: url("/custom_logo/logoB.png");
background-repeat: no-repeat;
background-position: center top;
background-size: 140%;
opacity: 0.03;
filter: blur(3px) saturate(90%) brightness(1.02);
mix-blend-mode: multiply;
pointer-events: none;
z-index: 5; /* bring logo in front */
}
main > * {
position: relative;
z-index: 1;
}
/* Header styles */ /* Header styles */
.site-header { .site-header {
background: linear-gradient(120deg, var(--dark-background), #13253f); background: linear-gradient(120deg, var(--dark-background), #13253f);