This commit is contained in:
ben7sys
2024-11-15 09:06:19 +01:00
parent c976595f15
commit 263d2a88d6
15 changed files with 1036 additions and 0 deletions

11
public/css/animations.css Normal file
View File

@@ -0,0 +1,11 @@
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes shinyEffect {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}