This commit is contained in:
Emma 2026-01-09 13:46:10 +00:00 committed by GitHub
commit dfe8834e34
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 0 deletions

View 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);
}
}

View file

@ -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,