60 lines
1.3 KiB
SCSS
60 lines
1.3 KiB
SCSS
/*
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
// 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
|
|
@font-face {
|
|
font-family: "Linux Libertine";
|
|
font-style: italic;
|
|
font-weight: 700;
|
|
src: local("Linux Libertine Bold Italic"),
|
|
url("../font/LinLibertine_RBIah.ttf");
|
|
}
|