aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-12-10 02:43:12 -0500
committertdro <tdro@noreply.example.com>2022-12-10 02:43:12 -0500
commit552d06867ed2b7f0811fde0338d220bc1ae1b304 (patch)
tree7c7960b69e376bf2f86684665cce766da38598fd
parenta98d48c0bd279bc1562e8f8385988b2d7a65de2c (diff)
downloadcanory-552d06867ed2b7f0811fde0338d220bc1ae1b304.tar.gz
canory-552d06867ed2b7f0811fde0338d220bc1ae1b304.tar.bz2
canory-552d06867ed2b7f0811fde0338d220bc1ae1b304.zip
assets/css/default: Animation adjustments
Add remaining subtle changes
-rw-r--r--assets/css/default.css20
1 files 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;