From 477c80d57a5b415942074b39145f1fd1305abc9e Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 20 Mar 2026 21:54:15 -0700 Subject: [PATCH] Feat: Global styles with Stain font + Tailwind --- styles.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 styles.css diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..77f4e22 --- /dev/null +++ b/styles.css @@ -0,0 +1,20 @@ +@import url("https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"); + +@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 { + font-family: "Stain", sans-serif; +} + +::selection { + background: #d4d4d4; +} + +input, select, button { + font-family: "Stain", sans-serif; +}