mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-05 22:28:01 +08:00
feat(funbox): add ASL (@fehmer) (#6485)
This commit is contained in:
parent
d3f3a834e3
commit
ac1d6f0847
4 changed files with 18 additions and 1 deletions
8
frontend/static/funbox/asl.css
Normal file
8
frontend/static/funbox/asl.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
@font-face {
|
||||
font-family: "Gallaudet";
|
||||
src: url("/webfonts/GallaudetRegular.woff2") format("woff2");
|
||||
}
|
||||
|
||||
#wordsWrapper {
|
||||
font-family: "Gallaudet" !important;
|
||||
}
|
BIN
frontend/static/webfonts/GallaudetRegular.woff2
Normal file
BIN
frontend/static/webfonts/GallaudetRegular.woff2
Normal file
Binary file not shown.
|
@ -452,6 +452,14 @@ const list: Record<FunboxName, FunboxMetadata> = {
|
|||
frontendFunctions: ["withWords"],
|
||||
name: "polyglot",
|
||||
},
|
||||
asl: {
|
||||
description: "Practice american sign language.",
|
||||
canGetPb: true,
|
||||
difficultyLevel: 1,
|
||||
properties: ["hasCssFile", "noLigatures"],
|
||||
name: "asl",
|
||||
cssModifications: ["words"],
|
||||
},
|
||||
};
|
||||
|
||||
// oxlint doesnt understand ts overloading
|
||||
|
|
|
@ -42,7 +42,8 @@ export type FunboxName =
|
|||
| "instant_messaging"
|
||||
| "underscore_spaces"
|
||||
| "ALL_CAPS"
|
||||
| "polyglot";
|
||||
| "polyglot"
|
||||
| "asl";
|
||||
|
||||
export type FunboxForcedConfig = Record<string, string[] | boolean[]>;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue