All checks were successful
ci/woodpecker/push/workflow Pipeline was successful
31 lines
496 B
SCSS
31 lines
496 B
SCSS
.falling-leaves {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.leaf-scene {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
transform-style: preserve-3d;
|
|
|
|
div {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
background-repeat: no-repeat;
|
|
background-size: 100%;
|
|
transform-style: preserve-3d;
|
|
backface-visibility: visible;
|
|
}
|
|
} |