login animations

This commit is contained in:
idler-wheel
2025-03-30 10:00:53 -04:00
parent ed765fb9d0
commit 1291f2e99b
2 changed files with 76 additions and 36 deletions

View File

@@ -1,17 +1,29 @@
/* styles.css */
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
from {
opacity: 0;
}
.animate-fadeIn {
animation: fadeIn 1s ease-in-out;
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;