summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDavid Gay <eapoems@riseup.net>2023-10-30 00:26:41 -0400
committerDavid Gay <eapoems@riseup.net>2023-10-30 00:26:41 -0400
commit1fa540c11e46be221a4662bd3a688ec61056e701 (patch)
treee948108333550e18d38374702344067945bea6a1 /app
parentda6df343c5ad556e671f0ea1572ba233de5c7a83 (diff)
Pokemon font
Diffstat (limited to 'app')
-rw-r--r--app/assets/fonts/pokemon-classic.ttfbin0 -> 91132 bytes
-rw-r--r--app/assets/stylesheets/application.tailwind.css13
2 files changed, 7 insertions, 6 deletions
diff --git a/app/assets/fonts/pokemon-classic.ttf b/app/assets/fonts/pokemon-classic.ttf
new file mode 100644
index 0000000..f2cb4ef
--- /dev/null
+++ b/app/assets/fonts/pokemon-classic.ttf
Binary files differ
diff --git a/app/assets/stylesheets/application.tailwind.css b/app/assets/stylesheets/application.tailwind.css
index 8666d2f..4908cf3 100644
--- a/app/assets/stylesheets/application.tailwind.css
+++ b/app/assets/stylesheets/application.tailwind.css
@@ -2,12 +2,13 @@
@tailwind components;
@tailwind utilities;
-/*
+@font-face {
+ font-family: "Pokemon Classic";
+ src: url("pokemon-classic.ttf") format("truetype");
+}
-@layer components {
- .btn-primary {
- @apply py-2 px-4 bg-blue-200;
+@layer base {
+ h1, h2, h3, h4, h5, h6, .subtitle {
+ font-family: "Pokemon Classic", sans-serif;
}
}
-
-*/