rgb-progress-bar/style.css

89 lines
1.4 KiB
CSS
Raw Normal View History

2022-10-04 12:29:10 -04:00
/* YouTube */
2022-10-04 13:44:30 -04:00
.ytp-play-progress, .ytp-swatch-background-color,
2022-03-29 21:37:05 -04:00
/* Invidious */
/* Odysee */
2022-10-04 12:29:10 -04:00
.vjs-play-progress,
.vjs-slider-bar,
2022-03-29 21:37:05 -04:00
/* Vimeo */
2022-10-04 12:29:10 -04:00
.played,
/* Twitch */
2022-10-04 13:44:30 -04:00
.seekbar-segment,
/* Reddit */
2023-06-16 19:55:49 -04:00
._3fnsfWuIyofBJBBCbeOZzM,
#vid_v2s2bbq > div:nth-child(1) > div:nth-child(3) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1)
2022-10-04 13:44:30 -04:00
{
2022-01-12 13:32:36 -05:00
animation: RGB 25s ease-in-out infinite;
2022-01-12 13:21:35 -05:00
}
@keyframes RGB {
2022-01-12 13:32:36 -05:00
from {
background-color: #FF0000;
2022-03-27 19:49:40 -04:00
color: #FF0000;
2022-01-12 13:32:36 -05:00
}
7% {
background-color: #FF7700;
2022-03-27 19:49:40 -04:00
color: #FF7700;
2022-01-12 13:32:36 -05:00
}
14% {
background-color: #FFDD00;
2022-03-29 21:37:05 -04:00
color: #FFDD00;
2022-01-12 13:32:36 -05:00
}
21% {
background-color: #00FF00;
2022-03-27 19:49:40 -04:00
color: #00FF00;
2022-01-12 13:32:36 -05:00
}
28% {
background-color: #0000FF;
2022-03-27 19:49:40 -04:00
color: #0000FF;
2022-01-12 13:32:36 -05:00
}
35% {
background-color: #8A2BE2;
2022-03-27 19:49:40 -04:00
color: #8A2BE2;
2022-01-12 13:32:36 -05:00
}
42% {
background-color: #C77DF3;
2022-03-27 19:49:40 -04:00
color: #C77DF3;
2022-01-12 13:32:36 -05:00
}
49% {
background-color: #C77DF3;
2022-03-27 19:49:40 -04:00
color: #C77DF3;
2022-01-12 13:32:36 -05:00
}
56% {
background-color: #8A2BE2;
2022-03-27 19:49:40 -04:00
color: #8A2BE2;
2022-01-12 13:32:36 -05:00
}
63% {
background-color: #0000FF;
2022-03-27 19:49:40 -04:00
color: #0000FF;
2022-01-12 13:32:36 -05:00
}
70% {
background-color: #00FF00;
2022-03-27 19:49:40 -04:00
color: #00FF00;
2022-01-12 13:32:36 -05:00
}
77% {
background-color: #FFDD00;
2022-03-29 21:37:05 -04:00
color: #FFDD00;
2022-01-12 13:32:36 -05:00
}
84% {
2022-03-27 19:49:40 -04:00
backgroud-color: #FF7700;
color: #FF7700;
2022-01-12 13:32:36 -05:00
}
91% {
background-color: #FF0000;
2022-03-27 19:49:40 -04:00
color: #FF0000;
2022-01-12 13:32:36 -05:00
}
2022-10-04 12:29:10 -04:00
}