This commit is contained in:
ben7sys
2024-11-01 06:42:44 +01:00
parent d8be0951b0
commit 7b26b3c509
15 changed files with 951 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
to { transform: translateY(-50%) rotate(360deg); }
}