All checks were successful
Swaous.Asuscomm Build / Build-Docker-Image (push) Successful in 2m35s
39 lines
621 B
CSS
Executable File
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;
|
|
} |