-
Notifications
You must be signed in to change notification settings - Fork 26
/
fonts.css
41 lines (40 loc) · 1.17 KB
/
fonts.css
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
@font-face {
font-family: "Liberation Serif";
src: url("../Tools/Fonts/liberation-fonts/LiberationSerif-Regular.ttf");
}
@font-face {
font-family: "Liberation Serif";
src: url("../Tools/Fonts/liberation-fonts/LiberationSerif-Bold.ttf");
font-weight: bold;
}
@font-face {
font-family: "Liberation Serif";
src: url("../Tools/Fonts/liberation-fonts/LiberationSerif-Italic.ttf");
font-style: italic;
}
@font-face {
font-family: "Liberation Serif";
src: url("../Tools/Fonts/liberation-fonts/LiberationSerif-BoldItalic.ttf");
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: "Courier New";
src: url("../Tools/Fonts/microsoft-core-fonts/CourierNew-Regular.ttf");
}
@font-face {
font-family: "Courier New";
src: url("../Tools/Fonts/microsoft-core-fonts/CourierNew-Bold.ttf");
font-weight: bold;
}
@font-face {
font-family: "Courier New";
src: url("../Tools/Fonts/microsoft-core-fonts/CourierNew-Italic.ttf");
font-style: italic;
}
@font-face {
font-family: "Courier New";
src: url("../Tools/Fonts/microsoft-core-fonts/CourierNew-BoldItalic.ttf");
font-weight: bold;
font-style: italic;
}