blob: 0a383834612739442443e151702cfe5b227b6863 (
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
|
/* COURIER PRIME FONT for Autocento project.
* ONLY PUT @font-face RULES HERE.
*/
/* Normal = normal */
@font-face {
font-family: "Courier Prime";
font-weight: normal;
font-style: normal;
src: url("Courier_Prime.ttf");
}
@font-face {
font-family: "Courier Prime";
font-weight: normal;
font-style: italic;
src: url("Courier_Prime_Italic.ttf");
}
/* Bold = bold */
@font-face {
font-family: "Courier Prime";
font-weight: bold;
font-style: normal;
src: url("Courier_Prime_Bold.ttf");
}
@font-face {
font-family: "Courier Prime";
font-weight: bold;
font-style: italic;
src: url("Courier_Prime_Bold_Italic.ttf");
}
|