mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-04 21:09:18 +08:00
added read ahead hard. closes #1019
This commit is contained in:
parent
929a233324
commit
a739f521e4
2 changed files with 12 additions and 2 deletions
|
@ -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",
|
||||
|
|
5
static/funbox/read_ahead_hard.css
Normal file
5
static/funbox/read_ahead_hard.css
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue