Files
HooHacks-12/React/src/app/styles.css
2025-03-30 10:00:53 -04:00

31 lines
375 B
CSS

/* styles.css */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.animate-fadeIn {
animation: fadeIn 1s ease-in-out forwards;
}
.delay-0 {
animation-delay: 0s;
}
.delay-1 {
animation-delay: 1s;
}
.delay-2 {
animation-delay: 2s;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif;
}