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,42 +1,44 @@
body {
font-family: "IBM Plex Mono", monospace;
color: lightgray;
background: #161616;
display: flex;
flex-direction: column;
align-items: center;
}
a {
font-weight: 600;
color: #f1c21b;
}
a:visited {
color: #ff832b;
}
a:hover {
color: #fddc69;
}
a:active {
color: #fcf4d6;
}
h1#construction {
color: #f1c21b;
}
header {
max-width: 30rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
main {
max-width: 50rem;
}
@import "common/fonts/IBMPlexMono.css";
body {
font-family: "IBM Plex Mono", monospace;
color: lightgray;
background: #161616;
display: flex;
flex-direction: column;
align-items: center;
}
a {
font-weight: 600;
color: #f1c21b;
}
a:visited {
color: #ff832b;
}
a:hover {
color: #fddc69;
}
a:active {
color: #fcf4d6;
}
h1#construction {
color: #f1c21b;
}
header {
max-width: 30rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
main {
max-width: 50rem;
}