From fab9846b0106046b2723dc659438b5483df34ac5 Mon Sep 17 00:00:00 2001 From: esquizo Date: Sun, 14 Jun 2026 00:24:48 -0300 Subject: adicionado efeito de scanlines --- static/style.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'static') diff --git a/static/style.css b/static/style.css index 9f114ef..6595584 100644 --- a/static/style.css +++ b/static/style.css @@ -117,6 +117,25 @@ pre { max-width: 100%; } +.scanlines::before { + content: " "; + display: block; + position: fixed; + top: 0; + left: 0; + bottom: 0; + right: 0; + background: repeating-linear-gradient( + rgba(18, 16, 16, 0) 0px, + rgba(18, 16, 16, 0) 1px, + rgba(0, 0, 0, 0.25) 1px, + rgba(0, 0, 0, 0.25) 2px + ); + background-size: 100% 100%; + z-index: 10; + pointer-events: none; /* Allows users to click elements underneath */ +} + @media (min-width: 1000px) { .header-container { justify-content: center; -- cgit v1.2.3