Remove fade in animation

This general animation will be replaced with better-looking ones
Fading in a page is unnecessary
This commit is contained in:
David Reed 2023-01-01 14:48:41 -05:00
parent e3c6b1c552
commit 5c3b1d5685
No known key found for this signature in database
GPG key ID: 2211691D8A1EE72F

View file

@ -1,13 +1,5 @@
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap");
@import url("https://unpkg.com/@fortawesome/fontawesome-free@5.15.4/css/all.min.css");
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
body {
font-family: "Roboto", sans-serif;
@ -16,9 +8,6 @@ body {
display: flex;
flex-direction: column;
min-height: 100vh;
animation: fadeInAnimation ease-in-out 0.3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
.fa-magnifying-glass {
@ -134,7 +123,4 @@ form input {
form input:focus {
border: 1px solid rgba(253, 253, 253, 0.514);
border-radius: 6px;
animation: fadeInAnimation ease-in-out 0.3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}