blob: 7432d14390a1e62b992e3edb6ad6837bc0440ea1 (
plain)
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
|
/* CSS for Linux Libertine family of fonts */
@font-face {
font-family: "Libertine";
src: url('LinLibertine_R.woff'),
url('LinLibertine_R.otf');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Libertine";
src: url('LinLibertine_RB.woff'),
url('LinLibertine_RB.otf');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Libertine";
src: url('LinLibertine_RI.woff'),
url('LinLibertine_RI.otf');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: "Libertine";
src: url('LinLibertine_RBI.woff'),
url('LinLibertine_RBI.otf');
font-weight: 700;
font-style: italic;
}
|