feat: Improve CSS + add fonts
This commit is contained in:
parent
ea79a6fbf6
commit
22a753478c
19 changed files with 708 additions and 307 deletions
|
|
@ -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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue