From afe0cbff6c118da0d90b1ba6df7648cb013680f5 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Thu, 26 Sep 2024 14:47:33 -0500 Subject: [PATCH] I HATE CHROMIUM --- static/index.html | 2 +- static/root.css | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/static/index.html b/static/index.html index d5953ff..b9e95b4 100644 --- a/static/index.html +++ b/static/index.html @@ -26,7 +26,7 @@ {WEATHER_MODIFIER} -

Welcome to Violet's PurgatoryCommit {COMMIT_COUNT}

+

Welcome to Violet's PurgatoryCommit {COMMIT_COUNT}

Make sure to check out this project on Forgejo!


diff --git a/static/root.css b/static/root.css index 7ce339c..bb89a35 100644 --- a/static/root.css +++ b/static/root.css @@ -14,6 +14,10 @@ body { line-height: min(calc(2.2rem + 2vw), 3rem); } +#textWrapper { + animation: textFade 1s cubic-bezier(0.075, 0.82, 0.165, 1); +} + #card { background-color: rgba(10, 5, 90); padding: 15px; @@ -133,6 +137,18 @@ img:not(.project-inner > div > img):not(.activity>img) { } } +@keyframes textFade { + 0% { + transform: scale(1.15); + opacity: 0; + } + + 100% { + transform: scale(1); + opacity: 1; + } +} + @keyframes hideContent { 0% { overflow-y: hidden;