feat: Improve CSS + add fonts

This commit is contained in:
Ungol 2025-12-23 22:27:51 +01:00
parent b650cc8f76
commit aaa91838ee
19 changed files with 708 additions and 307 deletions

View file

@ -1,3 +1,87 @@
$text-font: "Ubuntu Nerd Font", Arial, Helvetica, sans-serif;
$title-font: "Ubuntu Nerd Font", Arial, Helvetica, sans-serif;
$mono-font: "UbuntuMono Nerd Font", monospace;
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-B.ttf") format(truetype);
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-BI.ttf") format(truetype);
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-R.ttf") format(truetype);
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-RI.ttf") format(truetype);
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-M.ttf") format(truetype);
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-MI.ttf") format(truetype);
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-L.ttf") format(truetype);
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-LI.ttf") format(truetype);
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: "Ubuntu Mono";
src: url("fonts/Ubuntu/UbuntuMono-B.ttf") format(truetype);
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Ubuntu Mono";
src: url("fonts/Ubuntu/UbuntuMono-BI.ttf") format(truetype);
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: "Ubuntu Mono";
src: url("fonts/Ubuntu/UbuntuMono-R.ttf") format(truetype);
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Ubuntu Mono";
src: url("fonts/Ubuntu/UbuntuMono-RI.ttf") format(truetype);
font-weight: 400;
font-style: italic;
}
$text-font: "Ubuntu", Helvetica, sans-serif;
$title-font: "Ubuntu", Helvetica, sans-serif;
$mono-font: "Ubuntu Mono", monospace;