Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
EnderMythex authored Jan 18, 2025
1 parent b44bfdd commit 4c6f612
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1615,3 +1615,56 @@
.theme8-active .button.primary {
animation: theme8Pulse 2s infinite;
}


/* --------------------------------------------------------------------------
Snowflakes
-------------------------------------------------------------------------- */

/* .snow-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1000;
}
.snowflake {
position: fixed;
background: rgba(255, 255, 255, 0.8);
border-radius: 50%;
pointer-events: none;
animation: fall linear infinite;
}
@keyframes fall {
0% {
transform: translateY(-10vh) translateX(0);
opacity: 1;
}
100% {
transform: translateY(100vh) translateX(20px);
opacity: 0.3;
}
} */

/* --------------------------------------------------------------------------
Click /s
-------------------------------------------------------------------------- */

@keyframes fadeOut {
0% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(-50px);
}
}

0 comments on commit 4c6f612

Please sign in to comment.