diff options
| author | esquizo <esquizo+noreply@esquizo.net> | 2026-06-14 10:18:36 -0300 |
|---|---|---|
| committer | esquizo <esquizo+noreply@esquizo.net> | 2026-06-14 10:18:36 -0300 |
| commit | d2dd8aca869535eae62a8376a3060aa4d2ce256e (patch) | |
| tree | 2b68804a14671c0b00cc917b2f9c014cc36834d9 /styles/scanlines.css | |
| parent | fc18663266a597264e3129b45ebe35ea95971f8d (diff) | |
bundling de css usando o esbuild
Diffstat (limited to 'styles/scanlines.css')
| -rw-r--r-- | styles/scanlines.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/styles/scanlines.css b/styles/scanlines.css new file mode 100644 index 0000000..e48074b --- /dev/null +++ b/styles/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 */ +} + |
