From 6630a4f300d4258dbbdf5452a132832424d02a5f Mon Sep 17 00:00:00 2001 From: lelo Date: Fri, 23 Jan 2026 21:11:30 +0000 Subject: [PATCH] background logo --- static/app.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/static/app.css b/static/app.css index f9a4604..2f616d1 100644 --- a/static/app.css +++ b/static/app.css @@ -19,6 +19,32 @@ body { 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 */ .site-header { background: linear-gradient(120deg, var(--dark-background), #13253f);