adding back some stuff from old server
All checks were successful
Swaous.Asuscomm Build / Build-Docker-Image (push) Successful in 2m35s
All checks were successful
Swaous.Asuscomm Build / Build-Docker-Image (push) Successful in 2m35s
This commit is contained in:
39
wintryscene/main.css
Executable file
39
wintryscene/main.css
Executable file
@@ -0,0 +1,39 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user