mirror of
https://github.com/galaxy-sea/AutoRedirector.git
synced 2025-09-16 04:00:45 +00:00
30 lines
340 B
CSS
30 lines
340 B
CSS
@keyframes rainbowText {
|
|
0% {
|
|
color: red;
|
|
}
|
|
|
|
20% {
|
|
color: orange;
|
|
}
|
|
|
|
40% {
|
|
color: yellow;
|
|
}
|
|
|
|
60% {
|
|
color: green;
|
|
}
|
|
|
|
80% {
|
|
color: blue;
|
|
}
|
|
|
|
100% {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
.rainbow {
|
|
font-weight: bold;
|
|
animation: rainbowText 3s linear infinite;
|
|
} |