2020-05-29 06:21:22 +08:00
|
|
|
:root {
|
2020-08-12 05:02:25 +08:00
|
|
|
--bg-color: #000;
|
|
|
|
--main-color: #eee;
|
|
|
|
--caret-color: #eee;
|
|
|
|
--sub-color: #444;
|
|
|
|
--text-color: #eee;
|
|
|
|
--error-color: #fff;
|
|
|
|
--error-extra-color: #d8d8d8;
|
|
|
|
--colorful-error-color: #fff;
|
|
|
|
--colorful-error-extra-color: #d8d8d8;
|
2020-05-29 06:21:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes shadow {
|
2020-08-12 05:02:25 +08:00
|
|
|
to {
|
|
|
|
color: #000;
|
|
|
|
}
|
2020-05-29 06:21:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes shadow-repeat {
|
2020-08-12 05:02:25 +08:00
|
|
|
50% {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
color: #eee;
|
|
|
|
}
|
2020-05-29 06:21:22 +08:00
|
|
|
}
|
|
|
|
|
2020-08-12 05:02:25 +08:00
|
|
|
#liveWpm,
|
|
|
|
#timerNumber {
|
|
|
|
color: white;
|
2020-05-30 22:46:41 +08:00
|
|
|
}
|
|
|
|
|
2020-07-03 01:39:24 +08:00
|
|
|
#top .config .group .buttons .text-button.active,
|
2020-05-29 06:21:22 +08:00
|
|
|
#result .stats .group,
|
2020-07-03 01:39:24 +08:00
|
|
|
#menu .icon-button:hover,
|
|
|
|
#top .config .group .buttons .text-button:hover,
|
2020-05-29 06:21:22 +08:00
|
|
|
a:hover {
|
2021-09-14 20:39:18 +08:00
|
|
|
animation: shadow-repeat 3s linear infinite forwards;
|
2020-05-29 06:21:22 +08:00
|
|
|
}
|
|
|
|
|
2020-08-12 05:02:25 +08:00
|
|
|
#logo,
|
2021-06-02 02:07:39 +08:00
|
|
|
#typingTest .word letter.correct {
|
2021-09-14 20:39:18 +08:00
|
|
|
animation: shadow 5s linear 1 forwards;
|
2020-05-29 06:21:22 +08:00
|
|
|
}
|