astrojs rewrite
This commit is contained in:
parent
e7a707b4e2
commit
39c53b1bd1
20 changed files with 8110 additions and 26 deletions
24
src/css/snowflake.css
Normal file
24
src/css/snowflake.css
Normal file
|
@ -0,0 +1,24 @@
|
|||
@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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue