This commit is contained in:
2026-03-14 17:58:18 +01:00
parent bfad446554
commit 8cdb518022
4 changed files with 217 additions and 0 deletions

39
websnap/style.css Normal file
View File

@@ -0,0 +1,39 @@
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 100%; height: 100%;
background: #000;
overflow: hidden;
}
#wrapper {
position: fixed;
inset: 0;
}
video {
width: 100%; height: 100%;
object-fit: cover;
display: block;
}
#overlay {
position: absolute;
inset: 0;
width: 100%; height: 100%;
pointer-events: none;
}
#flash {
position: fixed;
inset: 0;
background: white;
opacity: 0;
pointer-events: none;
transition: opacity 0.20s ease-in;
}
#flash.pop {
opacity: 1;
transition: none;
}