added a subtle wave animation to the 'processing...' text.

This commit is contained in:
Xiaohan-Tian
2025-08-15 19:34:13 -07:00
parent c6fac8b319
commit f5a6c8d92c
3 changed files with 74 additions and 17 deletions
+26
View File
@@ -1964,3 +1964,29 @@ textarea {
@keyframes globalSpinner {
to { transform: rotate(360deg); }
}
/* Processing wave animation */
.processing-wave {
background: linear-gradient(
90deg,
rgba(135, 206, 250, 0.5) 0%,
rgba(135, 206, 250, 0.8) 25%,
rgb(171, 218, 250) 50%,
rgba(135, 206, 250, 0.8) 75%,
rgba(135, 206, 250, 0.5) 100%
);
background-size: 200% 100%;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: wave 2s linear infinite;
}
@keyframes wave {
0% {
background-position: 200% 0%;
}
100% {
background-position: -200% 0%;
}
}