z0x.ca/snowflake.css
2024-09-12 23:51:18 -04:00

16 lines
No EOL
307 B
CSS

@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes snowfall {
0% { transform: translateY(-10vh); }
100% { transform: translateY(130vh); }
}
.snowflake {
background: white;
border-radius: 50%;
position: fixed;
top: -5vh;
animation: snowfall infinite;
opacity: 0.1;
}