more css hottie

This commit is contained in:
KS Jannette
2026-03-02 00:34:34 -05:00
parent 5ad51271af
commit c2515472b2
2 changed files with 18 additions and 1 deletions

View File

@@ -86,3 +86,20 @@
color: #0066cc;
text-decoration: none;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.login-form-hidden {
opacity: 0;
}
.login-form-visible {
animation: fadeIn 2s ease-in-out forwards;
}