diff options
| author | esquizo <esquizo+noreply@esquizo.net> | 2026-06-14 00:24:48 -0300 |
|---|---|---|
| committer | esquizo <esquizo+noreply@esquizo.net> | 2026-06-14 09:13:31 -0300 |
| commit | fab9846b0106046b2723dc659438b5483df34ac5 (patch) | |
| tree | 9dfc1fac96b790e256a870c0bb076f1eeb0dd6a3 /static/style.css | |
| parent | 160bd49d26e2ddda4b227ed672742ffc019f4d3d (diff) | |
adicionado efeito de scanlines
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 19 |
1 files changed, 19 insertions, 0 deletions
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; |
