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;