From cb481a7423b5bd4d00fbd895690bf2dfc6f1ac70 Mon Sep 17 00:00:00 2001 From: residualentropy <161914158+residualentropy@users.noreply.github.com> Date: Sat, 27 Jul 2024 11:09:14 +0200 Subject: [PATCH] fix falling neofox --- docs/style.css | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/style.css b/docs/style.css index 0f65d38..71441f0 100644 --- a/docs/style.css +++ b/docs/style.css @@ -16,7 +16,7 @@ body { display: flex; background: black; color: white; - position:absolute; + position: absolute; z-index: 1000; height: 100vh; width: 100vw; @@ -35,15 +35,16 @@ body { } .fadeout { - animation-name: fadeout; - animation-duration: 1000ms; - animation-fill-mode: forwards; + animation-name: fadeout; + animation-duration: 1000ms; + animation-fill-mode: forwards; } @keyframes fadeout { from { opacity: 1; } + to { opacity: 0; } @@ -159,10 +160,10 @@ a img { @keyframes fall { 0% { - transform: translateY(0) rotate(0); + transform: translateY(-50vh) rotate(0); } 100% { - transform: translateY(200vh) rotate(180deg); + transform: translateY(150vh) rotate(180deg); } -} +} \ No newline at end of file