/usr/share/doc/fonts-sil-charis/web/CharisSIL-webfont-example.css is in fonts-sil-charis 5.000-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | /*
CharisSIL-webfont-example.css
Charis SIL v5.000
14 Oct 2014
This file is part of Charis SIL font family (http://scripts.sil.org/CharisSILfont)
and is Copyright (c) 1994-2014 SIL International (http://www.sil.org/),
with Reserved Font Names "Charis" and "SIL". This Font Software is licensed
under the SIL Open Font License, Version 1.1. You should have received a copy
of the license along with this Font Software. If this is not the case, go to
(http://scripts.sil.org/OFL) for all the details including a FAQ.
*/
/* use Charis SIL - Regular in .woff format */
@font-face {
font-family: CharisSILW;
src: url(CharisSIL-R.woff);
}
/* use Charis SIL - Italic in .woff format */
@font-face {
font-family: CharisSILW;
font-style: italic;
src: url(CharisSIL-I.woff);
}
@font-face {
font-family: CharisSILW;
font-weight: bold;
src: url(CharisSIL-B.woff);
}
@font-face {
font-family: CharisSILW;
font-weight: bold;
font-style: italic;
src: url(CharisSIL-BI.woff);
}
/* set body to use Charis SIL in .ttf format */
body {
font-family: CharisSILW, 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;
}
|