diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-05-09 16:59:23 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-05-09 16:59:23 +0200 |
commit | 5a0f2ed7af3bb804219c1be07969103572384ceb (patch) | |
tree | bb87a04560201d8af6e6e4ca5d84f8a06b8c3ace /public/font/font.css | |
parent | 87f7bd7b20277786c39726db397caf1971abb956 (diff) |
add next.js project files
Diffstat (limited to 'public/font/font.css')
-rw-r--r-- | public/font/font.css | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/public/font/font.css b/public/font/font.css new file mode 100644 index 0000000..61c9755 --- /dev/null +++ b/public/font/font.css @@ -0,0 +1,115 @@ +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url("./inter/Inter-Regular.woff2?v=3.15") format("woff2"), + url("./inter/Inter-Regular.woff?v=3.15") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 400; + font-display: swap; + src: url("./inter/Inter-Italic.woff2?v=3.15") format("woff2"), + url("./inter/Inter-Italic.woff?v=3.15") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 500; + font-display: swap; + src: url("./inter/Inter-Medium.woff2?v=3.15") format("woff2"), + url("./inter/Inter-Medium.woff?v=3.15") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 500; + font-display: swap; + src: url("./inter/Inter-MediumItalic.woff2?v=3.15") format("woff2"), + url("./inter/Inter-MediumItalic.woff?v=3.15") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 600; + font-display: swap; + src: url("./inter/Inter-SemiBold.woff2?v=3.15") format("woff2"), + url("./inter/Inter-SemiBold.woff?v=3.15") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 600; + font-display: swap; + src: url("./inter/Inter-SemiBoldItalic.woff2?v=3.15") format("woff2"), + url("./inter/Inter-SemiBoldItalic.woff?v=3.15") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url("./inter/Inter-Bold.woff2?v=3.15") format("woff2"), + url("./inter/Inter-Bold.woff?v=3.15") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 700; + font-display: swap; + src: url("./inter/Inter-BoldItalic.woff2?v=3.15") format("woff2"), + url("./inter/Inter-BoldItalic.woff?v=3.15") format("woff"); +} + + + +@font-face { + font-family: 'JetBrainsMono'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url("./jetbrainsmono/JetBrainsMono-Regular.woff2") format("woff2"); +} +@font-face { + font-family: 'JetBrainsMono'; + font-style: italic; + font-weight: 400; + font-display: swap; + src: url("./jetbrainsmono/JetBrainsMono-Italic.woff2") format("woff2"); +} + +@font-face { + font-family: 'JetBrainsMono'; + font-style: normal; + font-weight: 500; + font-display: swap; + src: url("./jetbrainsmono/JetBrainsMono-Medium.woff2") format("woff2"); +} +@font-face { + font-family: 'JetBrainsMono'; + font-style: italic; + font-weight: 500; + font-display: swap; + src: url("./jetbrainsmono/JetBrainsMono-MediumItalic.woff2") format("woff2"); +} + +@font-face { + font-family: 'JetBrainsMono'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url("./jetbrainsmono/JetBrainsMono-Bold.woff2") format("woff2"); +} +@font-face { + font-family: 'JetBrainsMono'; + font-style: italic; + font-weight: 700; + font-display: swap; + src: url("./jetbrainsmono/JetBrainsMono-BoldItalic.woff2") format("woff2"); +} + |