31 lines
375 B
CSS
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;
|
|
}
|
|
|