tailwindcss rewrite

This commit is contained in:
z0x 2024-09-12 23:51:18 -04:00
parent c19ed0113d
commit e7a707b4e2
11 changed files with 90 additions and 318 deletions

16
snowflake.css Normal file
View file

@ -0,0 +1,16 @@
@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;
}