aboutsummaryrefslogtreecommitdiff
path: root/src/styles/typography.css
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-23 23:00:53 -0800
committerFuwn <[email protected]>2024-01-23 23:00:53 -0800
commitd2a5bf359a4f964af342fa1d078fa16b1bd87f8b (patch)
tree1c5bcd3d44c8124c2096256646dff8db9edd203b /src/styles/typography.css
parentrefactor(html): preload stylesheets (diff)
downloaddue.moe-d2a5bf359a4f964af342fa1d078fa16b1bd87f8b.tar.xz
due.moe-d2a5bf359a4f964af342fa1d078fa16b1bd87f8b.zip
refactor(styles): move out to src
Diffstat (limited to 'src/styles/typography.css')
-rw-r--r--src/styles/typography.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/styles/typography.css b/src/styles/typography.css
new file mode 100644
index 00000000..e502fa90
--- /dev/null
+++ b/src/styles/typography.css
@@ -0,0 +1,21 @@
+/* Kosugi, M PLUS 1 Code */
+/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;550;700;800&display=swap'); */
+@import url('https://proxy.due.moe/?q=https://fonts.googleapis.com/css?family=DM+Sans:400,500,600,700&display=swap');
+
+body {
+ font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
+ Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
+ font-size: 1em;
+ line-height: 1.5;
+ /* font-weight: 300; */
+ /* text-shadow: 0 0 0.25em var(--base01); */
+ padding: 1.25rem;
+}
+
+#wrapped {
+ font-family: inherit;
+ font-size: inherit;
+ line-height: inherit;
+ font-weight: 400;
+ text-shadow: none;
+}