added read ahead hard. closes #1019

This commit is contained in:
Miodec 2021-02-24 15:04:23 +00:00
parent 929a233324
commit a739f521e4
2 changed files with 12 additions and 2 deletions

View file

@ -74,15 +74,20 @@
"type": "script",
"info": "React quickly! Only one future word is visible."
},
{
"name": "read_ahead_easy",
"type": "style",
"info": "Only the current word is invisible."
},
{
"name": "read_ahead",
"type": "style",
"info": "Current and the next word is invisible!"
},
{
"name": "read_ahead_easy",
"name": "read_ahead_hard",
"type": "style",
"info": "Only the current word is invisible."
"info": "Current and the next two words are invisible!"
},
{
"name": "memory",

View file

@ -0,0 +1,5 @@
#words .word.active:nth-of-type(n + 2),
#words .word.active:nth-of-type(n + 2) + .word,
#words .word.active:nth-of-type(n + 2) + .word + .word {
color: transparent;
}