From d3980d19ede4a572a16f8c3a6eaf2cf4b70d05ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 5 Feb 2026 20:01:44 +0100 Subject: [PATCH] fix: remove scanline and vignette overlays from 404 Co-Authored-By: Claude Opus 4.5 --- layouts/404.html | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/layouts/404.html b/layouts/404.html index 699e454..e3b04db 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -55,46 +55,8 @@ 60% { transform: skew(-0.5deg); } } - /* Scanline overlay */ - .scanlines { - position: fixed; - inset: 0; - pointer-events: none; - z-index: 10; - background: repeating-linear-gradient( - 0deg, - rgba(0, 0, 0, 0.1) 0px, - rgba(0, 0, 0, 0.1) 1px, - transparent 1px, - transparent 2px - ); - animation: scanline-flicker 0.1s infinite; - } - - @keyframes scanline-flicker { - 0%, 100% { opacity: 0.8; } - 50% { opacity: 0.85; } - } - - /* CRT vignette effect */ - .vignette { - position: fixed; - inset: 0; - pointer-events: none; - z-index: 9; - background: radial-gradient( - ellipse at center, - transparent 0%, - transparent 60%, - rgba(0, 0, 0, 0.4) 100% - ); - } - -
-
-

404