From 552d06867ed2b7f0811fde0338d220bc1ae1b304 Mon Sep 17 00:00:00 2001 From: tdro Date: Sat, 10 Dec 2022 02:43:12 -0500 Subject: assets/css/default: Animation adjustments Add remaining subtle changes --- assets/css/default.css | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/assets/css/default.css b/assets/css/default.css index dc5acfb..3c1203e 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -2108,7 +2108,7 @@ text-animation[twitch] { } text-animation[tremble] { - animation: quiver 0.15s infinite, quiver 0.25s infinite, quiver 0.35s infinite; + animation: quiver 0.35s infinite, quiver 0.75s infinite, quiver 1.35s infinite; } text-animation[shake] span { @@ -2136,7 +2136,8 @@ text-animation[shrink] span { } text-animation[distort] span { - animation: distort 1.5s infinite; + animation: distort 0.25s infinite, distort 0.55s infinite, + distort 0.75s infinite; } @keyframes rotateY { @@ -2162,13 +2163,13 @@ text-animation[distort] span { @keyframes tilt-rightward { 50% { - transform: rotateZ(7.5deg); + transform: rotateZ(5deg); } } @keyframes tilt-leftward { 50% { - transform: rotateZ(-7.5deg); + transform: rotateZ(-5deg); } } @@ -2241,14 +2242,11 @@ text-animation[distort] span { } @keyframes distort { - 0% { - text-shadow: 1px 1px var(--danger), -1px -1px var(--link); + 20% { + text-shadow: 4px 0 var(--background); } - 10% { - text-shadow: -1px -2px var(--danger), 1px 1px var(--link); - } - 15% { - text-shadow: 1px -1px var(--danger), -1px 1px var(--link); + 50% { + text-shadow: -4px 0 var(--background); } 100% { text-shadow: none; -- cgit v1.2.3