From ebafbc15cc3fc83ceee3ad528a4eda211dae3baf Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 20 Mar 2026 22:57:26 -0700 Subject: [PATCH] Refactor: Extract font styles --- src/styles.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/styles.css diff --git a/src/styles.css b/src/styles.css new file mode 100644 index 0000000..bf42f97 --- /dev/null +++ b/src/styles.css @@ -0,0 +1,14 @@ +@font-face { + font-family: "Stain"; + src: url("https://cdn.jsdelivr.net/gh/multipleof4/stain.otf@master/dist/Stain.otf") format("opentype"); + font-weight: normal; + font-style: normal; +} + +body, +input, +select, +button, +a { + font-family: "Stain", sans-serif; +}