mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-13 19:04:06 +08:00
Merge da0cc481ee into 69cc227c87
This commit is contained in:
commit
dfe8834e34
2 changed files with 20 additions and 0 deletions
12
frontend/static/funbox/travel.css
Normal file
12
frontend/static/funbox/travel.css
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
main .page {
|
||||
animation: slideSide 3s infinite alternate ease-in-out
|
||||
}
|
||||
|
||||
@keyframes slideSide {
|
||||
from {
|
||||
transform: translateX(-300px);
|
||||
}
|
||||
to {
|
||||
transform: translateX(300px);
|
||||
}
|
||||
}
|
||||
|
|
@ -476,6 +476,14 @@ const list: Record<FunboxName, FunboxMetadata> = {
|
|||
frontendFunctions: ["alterText"],
|
||||
name: "rot13",
|
||||
},
|
||||
travel: {
|
||||
description: "Side to Side! wheeeeeee!",
|
||||
canGetPb: false,
|
||||
difficultyLevel: 2,
|
||||
properties: [],
|
||||
frontendFunctions: ["travelScript"],
|
||||
name: "TRAVEL!",
|
||||
},
|
||||
no_quit: {
|
||||
description: "You can't restart the test.",
|
||||
canGetPb: true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue