summaryrefslogtreecommitdiff
path: root/app/javascript/stylesheets/typography.css
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/stylesheets/typography.css')
-rw-r--r--app/javascript/stylesheets/typography.css17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/javascript/stylesheets/typography.css b/app/javascript/stylesheets/typography.css
new file mode 100644
index 0000000..7bb10ea
--- /dev/null
+++ b/app/javascript/stylesheets/typography.css
@@ -0,0 +1,17 @@
+@import url('https://fonts.googleapis.com/css2?family=Montaga&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
+
+.text-display {
+ font-family: "Montaga", "Open Sans", sans-serif;
+}
+
+body {
+ font-family: "Open Sans", sans-serif;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ @apply text-display;
+}
+
+.text-glow {
+ text-shadow: 0 0 4px;
+}