checking flipped and colorful mode

also disabling animation
closes #3531
This commit is contained in:
Miodec 2022-09-11 14:06:31 +02:00
parent a50de54ffe
commit 69dd84006f
3 changed files with 57 additions and 0 deletions

View file

@ -1,4 +1,23 @@
#words .word.active:nth-of-type(n + 2),
#words .word.active:nth-of-type(n + 2) + .word {
color: transparent;
animation: none;
}
#words.flipped .word.active:nth-of-type(n + 2),
#words.flipped .word.active:nth-of-type(n + 2) + .word {
color: transparent;
animation: none;
}
#words.colorfulMode .word.active:nth-of-type(n + 2),
#words.colorfulMode .word.active:nth-of-type(n + 2) + .word {
color: transparent;
animation: none;
}
#words.flipped.colorfulMode .word.active:nth-of-type(n + 2),
#words.flipped.colorfulMode .word.active:nth-of-type(n + 2) + .word {
color: transparent;
animation: none;
}

View file

@ -1,3 +1,19 @@
#words .word.active:nth-of-type(n + 2) {
color: transparent;
animation: none;
}
#words.flipped .word.active:nth-of-type(n + 2) {
color: transparent;
animation: none;
}
#words.colorfulMode .word.active:nth-of-type(n + 2) {
color: transparent;
animation: none;
}
#words.colorfulMode.flipped .word.active:nth-of-type(n + 2) {
color: transparent;
animation: none;
}

View file

@ -2,4 +2,26 @@
#words .word.active:nth-of-type(n + 2) + .word,
#words .word.active:nth-of-type(n + 2) + .word + .word {
color: transparent;
animation: none;
}
#words.flipped .word.active:nth-of-type(n + 2),
#words.flipped .word.active:nth-of-type(n + 2) + .word,
#words.flipped .word.active:nth-of-type(n + 2) + .word + .word {
color: transparent;
animation: none;
}
#words.colorfulMode .word.active:nth-of-type(n + 2),
#words.colorfulMode .word.active:nth-of-type(n + 2) + .word,
#words.colorfulMode .word.active:nth-of-type(n + 2) + .word + .word {
color: transparent;
animation: none;
}
#words.colorfulMode.flipped .word.active:nth-of-type(n + 2),
#words.colorfulMode.flipped .word.active:nth-of-type(n + 2) + .word,
#words.colorfulMode.flipped .word.active:nth-of-type(n + 2) + .word + .word {
color: transparent;
animation: none;
}