Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions frontend/static/funbox/travel.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
main .page {
animation: slideSide 3s infinite alternate ease-in-out
}

@keyframes slideSide {
from {
transform: translateX(-300px);
}
to {
transform: translateX(300px);
}
}
8 changes: 8 additions & 0 deletions packages/funbox/src/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading