Files
swaous.asuscomm.com/output/wintryscene/main.css
Lazy Hippopotamus 099bfceb7e
All checks were successful
Swaous.Asuscomm Build / Build-Docker-Image (push) Successful in 35s
slight updates
2025-02-24 16:46:32 -05:00

39 lines
621 B
CSS
Executable File

body {
margin: 0px;
padding: 0px;
}
#scene {
background-color: rgb(111, 127, 131);
width: 100vw;
height: 100vh;
position: absolute;
top: 0px;
left: 0px;
transform-style: preserve-3d;
perspective: 1px;
overflow-y: scroll;
}
#scene > img {
width: 100vw;
transform-origin: 50% 100vh;
position: absolute;
top: -300px;
}
@keyframes flakefall {
0% {
top: -50px;
}
100% {
top: 100vh;
}
}
#snow > img {
position: absolute;
animation-name: flakefall;
animation-timing-function: cubic-bezier(.3,0,1,.7);
width: 20px;
}