15 lines
319 B
CSS
15 lines
319 B
CSS
|
|
@font-face {
|
||
|
|
font-family: "Joker";
|
||
|
|
src: url("/assets/fonts/Jokker-Medium.woff") format("woff");
|
||
|
|
font-weight: normal;
|
||
|
|
}
|
||
|
|
@font-face {
|
||
|
|
font-family: "Joker";
|
||
|
|
src: url("/assets/fonts/Jokker-Semibold.woff") format("woff");
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
font-family: "Joker";
|
||
|
|
font-size: var(--font-size-body);
|
||
|
|
}
|