From 0310912a0f2f916b54a54cfd20db77dd0d787ef5 Mon Sep 17 00:00:00 2001 From: esquizo Date: Sun, 14 Jun 2026 10:26:45 -0300 Subject: movido stylesheets para src/css --- src/css/scanlines.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/css/scanlines.css (limited to 'src/css/scanlines.css') diff --git a/src/css/scanlines.css b/src/css/scanlines.css new file mode 100644 index 0000000..e48074b --- /dev/null +++ b/src/css/scanlines.css @@ -0,0 +1,20 @@ + +.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 */ +} + -- cgit v1.2.3