diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2024-05-20 15:34:51 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2024-05-20 15:34:51 +0200 |
commit | 3673a981f43d526250797dfa52883f0fe47f5bbf (patch) | |
tree | 31f9d714255b5f7bc69f31ab3b6a948653a19ecd /src | |
parent | 771feb19554948455a15f9337bcd6df573834aff (diff) | |
download | rgoncalves.se-3673a981f43d526250797dfa52883f0fe47f5bbf.tar.gz |
feat(styles): use ibm plex mono
Diffstat (limited to 'src')
-rw-r--r-- | src/styles/main.css | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/src/styles/main.css b/src/styles/main.css index 5886f3c..ddbf881 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -1,7 +1,35 @@ +@font-face { + font-family: "IBM Plex Mono"; + src: url("/static/fonts/ibm-plex-mono-medium-normal.woff2") format("woff2"); + font-style: normal; + font-weight: 400; +} + +@font-face { + font-family: "IBM Plex Mono"; + src: url("/static/fonts/ibm-plex-mono-medium-italic.woff2") format("woff2"); + font-style: italic; + font-weight: 400; +} + +@font-face { + font-family: "IBM Plex Mono"; + src: url("/static/fonts/ibm-plex-mono-bold-normal.woff2") format("woff2"); + font-style: normal; + font-weight: 600; +} + +@font-face { + font-family: "IBM Plex Mono"; + src: url("/static/fonts/ibm-plex-mono-bold-italic.woff2") format("woff2"); + font-style: italic; + font-weight: 600; +} + /* page */ * { - font-family: monospace, monospace; + font-family: "IBM Plex Mono", monospace; } html { |