blob: 637c4079803dc4bb20b313687989b7f72e31be34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@font-face {
font-family: capitals;
src: url(GentiumPlus-R.woff) format("woff");
unicode-range: U+0041-005A;
}
@font-face {
font-family: lowercase;
src: url(GentiumPlus-R.woff) format("woff");
unicode-range: U+0061-007A;
}
@font-face {
font-family: gentium;
src: url(GentiumPlus-R.woff) format("woff");
}
.gentium {
font-family: capitals, lowercase, gentium, sans-serif;
}
|