From f2de01a82a5a0e06fc819205316d91697beb39a2 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Thu, 26 Sep 2024 14:25:08 -0500 Subject: [PATCH] Trying anything --- static/root.css | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/static/root.css b/static/root.css index e565394..6f69aee 100644 --- a/static/root.css +++ b/static/root.css @@ -45,7 +45,6 @@ body { } .animatedMain { - opacity: 1; animation: fadeDelay 1s linear; animation-delay: 1.25s; animation-fill-mode: both; @@ -102,6 +101,20 @@ img:not(.project-inner > div > img):not(.activity>img) { } } +@keyframes fadeDelay { + 0% { + display: none; + opacity: 0; + transform: translateY(25vh); + } + + 100% { + display: block; + opacity: 1; + transform: translateY(0); + } +} + @keyframes mainText { 0% { transform: translateY(calc(50vh - 6rem)) scale(1.5); @@ -118,20 +131,6 @@ img:not(.project-inner > div > img):not(.activity>img) { } } -@keyframes fadeDelay { - 0% { - display: block; - opacity: 0; - transform: translateY(25vh); - } - - 100% { - display: block; - opacity: 1; - transform: translateY(0); - } -} - @keyframes hideContent { 0% { overflow-y: hidden;