You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
/*
|
|
This file is from the Gentium project (https://software.sil.org/gentium/).
|
|
Copyright (c) 2003-2021 SIL International (http://www.sil.org/) with Reserved
|
|
Font Names "Gentium" and "SIL". This Font Software is licensed under the SIL
|
|
Open Font License, Version 1.1 (http://scripts.sil.org/OFL).
|
|
*/
|
|
|
|
/* use Gentium Plus - Regular in .woff format */
|
|
@font-face {
|
|
font-family: GentiumPlusW;
|
|
src: url(GentiumPlus-Regular.woff2);
|
|
}
|
|
/* use Gentium Plus - Italic in .woff2 format */
|
|
@font-face {
|
|
font-family: GentiumPlusW;
|
|
font-style: italic;
|
|
src: url(GentiumPlus-Italic.woff2);
|
|
}
|
|
/* use Gentium Plus - Bold in .woff2 format */
|
|
@font-face {
|
|
font-family: GentiumPlusW;
|
|
font-weight: bold;
|
|
src: url(GentiumPlus-Bold.woff2);
|
|
}
|
|
/* use Gentium Plus - Bold Italic in .woff2 format */
|
|
@font-face {
|
|
font-family: GentiumPlusW;
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
src: url(GentiumPlus-BoldItalic.woff2);
|
|
}
|
|
|
|
/* set body to use Gentium Plus */
|
|
body {
|
|
font-family: GentiumPlusW, sans-serif;
|
|
/* fall back to sans serif so that it's really obvious if the fonts don't load */
|
|
}
|
|
/* remove bold styling from heading */
|
|
h1 {
|
|
font-weight: normal;
|
|
}
|
|
|