site/src/scss/_fonts.scss

60 lines
1.3 KiB
SCSS
Raw Normal View History

2023-10-24 01:40:23 -04:00
/*
FONT: LINUX LIBERTINE
===============================================================================
License: GPL and OFL 1.1
For license text, see:
- https://gils.nexus/font/GPL.txt
- https://gils.nexus/font/OFL-1.1.txt
2023-10-24 01:40:23 -04:00
*/
// Normal
@font-face {
font-family: "Linux Libertine";
font-style: normal;
src: local("Linux Libertine"), url("../font/LinLibertine_Rah.ttf");
}
// Normal semibold
@font-face {
font-family: "Linux Libertine";
font-style: normal;
font-weight: 600;
src: local("Linux Libertine Semibold"), url("../font/LinLibertine_RZah.ttf");
}
// Normal bold
@font-face {
font-family: "Linux Libertine";
font-style: normal;
font-weight: 700;
src: local("Linux Libertine Bold"), url("../font/LinLibertine_RBah.ttf");
}
// Italic
@font-face {
font-family: "Linux Libertine";
font-style: italic;
src: local("Linux Libertine Italic"), url("../font/LinLibertine_RIah.ttf");
}
// Italic semibold
@font-face {
font-family: "Linux Libertine";
font-style: italic;
font-weight: 600;
src: local("Linux Libertine Semibold Italic"),
url("../font/LinLibertine_RZIah.ttf");
}
// Italic bold
2023-10-24 01:40:23 -04:00
@font-face {
font-family: "Linux Libertine";
font-style: italic;
font-weight: 700;
src: local("Linux Libertine Bold Italic"),
url("../font/LinLibertine_RBIah.ttf");
2023-10-24 01:40:23 -04:00
}