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:
parent
e3c6b1c552
commit
5c3b1d5685
1 changed files with 0 additions and 14 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue