Files
web7sys/website-7sys/css/animations.css
2024-11-01 06:42:44 +01:00

10 lines
218 B
CSS

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