From 5c3b1d5685b496c5b785c97d3bb9c7116ee075e9 Mon Sep 17 00:00:00 2001 From: David Reed Date: Sun, 1 Jan 2023 14:48:41 -0500 Subject: [PATCH] Remove fade in animation This general animation will be replaced with better-looking ones Fading in a page is unnecessary --- public/index.css | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/public/index.css b/public/index.css index 8272991..7d3dc99 100644 --- a/public/index.css +++ b/public/index.css @@ -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; }