Compare commits

...

3 commits

Author SHA1 Message Date
2e9014d19e style: Import IBMPlexMono from common fonts 2023-05-28 13:06:40 +02:00
1ca4b59bb9 common: Added IBMPlexMono font for all websites to use 2023-05-28 13:06:32 +02:00
4e14111e13 style: Ran dos2unix
Seems like someone saved this file with CRLF line endings :/
2023-05-28 13:03:41 +02:00
6 changed files with 68 additions and 42 deletions

View file

@ -0,0 +1,24 @@
@font-face {
font-family: 'IBM Plex Mono';
src: url("IBMPlexMono/Regular.woff2") format("woff2");
}
@font-face {
font-family: 'IBM Plex Mono';
src: url("IBMPlexMono/Bold.woff2") format("woff2");
font-weight: bold;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url("IBMPlexMono/Italic.woff2") format("woff2");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url("IBMPlexMono/BoldItalic.woff2") format("woff2");
font-weight: bold;
font-style: italic;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1,3 +1,5 @@
@import "common/fonts/IBMPlexMono.css";
body {
font-family: "IBM Plex Mono", monospace;
color: lightgray;