Get things into a somewhat working state on the login form

This commit is contained in:
Dane Everitt 2018-03-31 15:52:11 -05:00
parent 7de2c8684c
commit 791cbaa5ce
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
15 changed files with 450 additions and 132 deletions

View file

@ -0,0 +1,10 @@
.animate {
&.fadein {
animation: fadein 500ms;
}
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}