2020-05-12 07:59:12 +08:00
|
|
|
:root {
|
|
|
|
--bg-color: #111;
|
|
|
|
--main-color: #eee;
|
|
|
|
--caret-color: #eee;
|
|
|
|
--sub-color: #444;
|
2020-05-30 22:42:06 +08:00
|
|
|
--text-color: #eee;
|
|
|
|
--error-color: #eee;
|
|
|
|
--error-extra-color: rgb(179, 179, 179);
|
2020-05-12 07:59:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rgb{
|
|
|
|
0%{
|
|
|
|
color: #f44336;
|
|
|
|
}
|
|
|
|
25%{
|
|
|
|
color: #FFC107;
|
|
|
|
}
|
|
|
|
50%{
|
|
|
|
color: #4CAF50;
|
|
|
|
}
|
|
|
|
75%{
|
|
|
|
color: #3F51B5;
|
|
|
|
}
|
|
|
|
100%{
|
|
|
|
color: #f44336;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-30 22:42:06 +08:00
|
|
|
@keyframes rgb-bg{
|
|
|
|
0%{
|
|
|
|
background: #f44336;
|
|
|
|
}
|
|
|
|
25%{
|
|
|
|
background: #FFC107;
|
|
|
|
}
|
|
|
|
50%{
|
|
|
|
background: #4CAF50;
|
|
|
|
}
|
|
|
|
75%{
|
|
|
|
background: #3F51B5;
|
|
|
|
}
|
|
|
|
100%{
|
|
|
|
background: #f44336;
|
|
|
|
}
|
2020-05-27 05:07:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-30 22:42:06 +08:00
|
|
|
.button.discord::after,
|
|
|
|
#caret{
|
|
|
|
animation-name: rgb-bg !important;
|
|
|
|
animation-duration: 1s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: linear;
|
2020-05-27 05:07:30 +08:00
|
|
|
}
|
|
|
|
|
2020-05-30 22:42:06 +08:00
|
|
|
#top.focus .button.discord::after{
|
|
|
|
animation-name: none !important;
|
|
|
|
}
|
2020-05-27 05:07:30 +08:00
|
|
|
|
2020-05-12 07:59:12 +08:00
|
|
|
.logo .bottom,
|
|
|
|
#top .config .group .buttons .button.active,
|
|
|
|
#result .stats .group .bottom,
|
|
|
|
#menu .button:hover,
|
|
|
|
#top .config .group .buttons .button:hover,
|
|
|
|
a:hover {
|
|
|
|
animation-name: rgb;
|
|
|
|
animation-duration: 1s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.word letter.correct{
|
|
|
|
animation-name: rgb;
|
|
|
|
animation-duration: 5s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
}
|