AutoRedirector/simple.css
changjin wei(魏昌进) 732f94a869 chrome extensions
2025-02-01 13:37:54 +08:00

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;
}