From 0f7fe333268b63c1889d080f5a14528482eedfe1 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 14 Feb 2022 12:54:05 +0000 Subject: [PATCH] feat(fonts): add css font-face file --- fonts/Menlo Nerd Font Mono.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 fonts/Menlo Nerd Font Mono.css diff --git a/fonts/Menlo Nerd Font Mono.css b/fonts/Menlo Nerd Font Mono.css new file mode 100644 index 0000000..03712de --- /dev/null +++ b/fonts/Menlo Nerd Font Mono.css @@ -0,0 +1,26 @@ +@font-face { + font-family: "Menlo Nerd Font Mono"; + font-style: normal; + font-weight: 400; + src: url("Menlo Regular Nerd Font Complete Mono.ttf") format("truetype"); +} + +@font-face { + font-family: "Menlo Nerd Font Mono"; + font-style: italic; + font-weight: 400; + src: url("Menlo Italic Nerd Font Complete Mono.ttf") format("truetype"); +} + +@font-face { + font-family: "Menlo Nerd Font Mono"; + font-weight: 700; + src: url("Menlo Bold Nerd Font Complete Mono.ttf") format("truetype"); +} + +@font-face { + font-family: "Menlo Nerd Font Mono"; + font-style: italic; + font-weight: 700; + src: url("Menlo Bold Italic Nerd Font Complete Mono.ttf") format("truetype"); +}