mirror of
https://github.com/System-End/My-website.git
synced 2026-04-19 19:45:10 +00:00
31 lines
477 B
CSS
31 lines
477 B
CSS
@keyframes particleFloat {
|
|
0% {
|
|
transform: translateY(100vh) scale(0);
|
|
opacity: 0;
|
|
}
|
|
50% {
|
|
opacity: 0.5;
|
|
}
|
|
100% {
|
|
transform: translateY(-20vh) scale(1);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes glow {
|
|
0%, 100% {
|
|
filter: drop-shadow(0 0 2px var(--accent-neon));
|
|
}
|
|
50% {
|
|
filter: drop-shadow(0 0 8px var(--accent-neon));
|
|
}
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%, 100% {
|
|
transform: translateY(0);
|
|
}
|
|
50% {
|
|
transform: translateY(-10px);
|
|
}
|
|
}
|