45 lines
943 B
CSS
45 lines
943 B
CSS
|
@font-face {
|
||
|
font-family: "Comic Neue";
|
||
|
src: url("./Comic_Neue/ComicNeue-Regular.ttf");
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: "Comic Neue";
|
||
|
font-weight: bold;
|
||
|
src: url("./Comic_Neue/ComicNeue-Bold.ttf");
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "Helvetica";
|
||
|
src: url("./Helvetica/Helvetica.ttf");
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: "Helvetica";
|
||
|
font-weight: bold;
|
||
|
src: url("./Helvetica/Helvetica-Bold.ttf");
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "Lexend";
|
||
|
src: url("./Lexend/Lexend-VariableFont_wght.ttf");
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "Permanent Marker";
|
||
|
src: url("./Permanent_Marker/PermanentMarker-Regular.ttf");
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "VCR OSD Mono";
|
||
|
src: url("./VCR%20OSD%20MONO/VCR_OSD_MONO.ttf");
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
:root {
|
||
|
--font-text-top: "Permanent Marker";
|
||
|
--font-text-mono: "VCR OSD Mono";
|
||
|
--font-text-legible: "Lexend";
|
||
|
--font-text-header: "Comic Neue";
|
||
|
--font-text-generic: "Helvetica";
|
||
|
}
|