Template:Nuts/nuttyeffect.css
From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
.acorn {
font-size: 40px; /* Adjust size of the emoji */
animation: fall 2s linear infinite; /* Animation properties */
}
@keyframes fall {
0% {
transform: translateY(-300px); /* Start above the viewport */
opacity: 1;
}
90% {
opacity: 1;
}
100% {
transform: translateY(100vh); /* Move to the bottom of the viewport */
opacity: 0; /* Fade out */
}
}