diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-02-11 18:45:30 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-02-11 18:45:30 -0500 |
| commit | 9d6db882ea61e9a68ff60a8f92e2c50d3b191b2b (patch) | |
| tree | 477c7d19c2ccca7822cb3a1ea3bc89f4395ee7d4 /ui/styles/fonts.css | |
| parent | 8d15a359d480d08c73a97e7ce4a888c66eae46d0 (diff) | |
| parent | 04f2c43c6eea53c301f63a36f8882cef2f94859f (diff) | |
Merge remote-tracking branch 'origin/prop/fonts'
Diffstat (limited to 'ui/styles/fonts.css')
| -rw-r--r-- | ui/styles/fonts.css | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/ui/styles/fonts.css b/ui/styles/fonts.css new file mode 100644 index 0000000..66612e2 --- /dev/null +++ b/ui/styles/fonts.css @@ -0,0 +1,95 @@ +/*** Roboto ***/ +@font-face { + font-family: "Roboto"; + src: + url("../fonts/Roboto-Regular.ttf") format("truetype"); + font-weight: normal; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: "Roboto"; + src: + url("../fonts/Roboto-Bold.ttf") format("truetype"); + font-weight: bold; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: "Roboto"; + src: + url("../fonts/Roboto-Italic.ttf") format("truetype"); + font-weight: normal; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: "Roboto"; + src: + url("../fonts/Roboto-BoldItalic.ttf") format("truetype"); + font-weight: bold; + font-style: italic; + font-display: swap; +} + +/*** Archistico ***/ +@font-face { + font-family: "Archistico"; + src: + url("../fonts/Archistico_Simple.ttf") format("truetype"); + font-weight: normal; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: "Archistico"; + src: + url("../fonts/Archistico_Bold.ttf") format("truetype"); + font-weight: bold; + font-style: normal; + font-display: swap; +} + +/*** FiraCode ***/ +@font-face { + font-family: "FiraCode"; + src: + url("../fonts/FiraCode-Regular.otf") format("opentype"); + font-weight: normal; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: "FiraCode"; + src: + url("../fonts/FiraCode-Bold.otf") format("opentype"); + font-weight: bold; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: "FiraCode"; + src: + url("../fonts/FiraCode-Italic.otf") format("opentype"); + font-weight: normal; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: "FiraCode"; + src: + url("../fonts/FiraCode-BoldItalic.otf") format("opentype"); + font-weight: bold; + font-style: italic; + font-display: swap; +} + +/*** Overlock ***/ +@font-face { + font-family: "Overlock"; + src: + url("../fonts/Overlock-Regular.ttf") format("truetype"); + font-weight: normal; + font-style: normal; + font-display: swap; +} |
