Files
test/frontend/static/themes/shadow.css
Benjamin Falch 2bc741fb78
Some checks failed
Mark Stale PRs / stale (push) Has been cancelled
adding monkeytype
2026-04-23 13:53:44 +02:00

49 lines
1000 B
CSS

header [data-ui-element="logo"] svg {
color: #8c3230;
}
header [data-ui-element="logoText"] {
color: #557d8d;
}
@keyframes shadow {
to {
color: #000;
}
}
@keyframes shadow-repeat {
50% {
color: #000;
}
100% {
color: #eee;
}
}
#liveWpm,
#liveStatsTextTop {
color: white;
}
#result .stats .group,
[data-nav-item]:hover,
footer button:hover,
a:not(.button):not([data-ui-variant="button"]):hover {
animation: shadow-repeat 3s linear infinite forwards;
}
[data-nav-item="account"]:hover svg {
color: currentColor;
animation: shadow-repeat 3s linear infinite forwards;
}
#typingTest .word letter.correct,
#typingTest #words.highlight-word .word.typed letter.correct,
#typingTest #words.highlight-next-word .word.typed letter.correct,
#typingTest #words.highlight-next-two-words .word.typed letter.correct,
#typingTest #words.highlight-next-three-words .word.typed letter.correct {
color: var(--correct-letter-color);
animation: shadow 5s linear 1 forwards;
}