40 lines
994 B
Text
40 lines
994 B
Text
|
/* A font by Jos Buivenga (exljbris) -> www.exljbris.nl */
|
||
|
@font-face {
|
||
|
font-family: Delicious;
|
||
|
src: local("Delicious"), url("<%= font_path "Delicious-Roman.otf" %>)");
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: Delicious;
|
||
|
font-weight: bold;
|
||
|
src: local("Delicious"), url("<%= font_path "Delicious-Bold.otf" %>");
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: Delicious;
|
||
|
font-style: italic;
|
||
|
src: local("Delicious"), url("<%= font_path "Delicious-Italic.otf" %>");
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "Noto Sans";
|
||
|
src: local("Noto Sans"), url("<%= font_path "NotoSans-Variable.ttf" %>");
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "Noto Sans";
|
||
|
font-style: italic;
|
||
|
src: local("Noto Sans"), url("<%= font_path "NotoSans-Italic-Variable.ttf" %>");
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "Noto Serif";
|
||
|
src: local("Noto Serif"), url("<%= font_path "NotoSerif-Variable.ttf" %>");
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "Noto Serif";
|
||
|
font-style: italic;
|
||
|
src: local("Noto Serif"), url("<%= font_path "NotoSerif-Italic-Variable.ttf" %>");
|
||
|
}
|