blob: 0c9fe45e1b1ec49faca73cb910e0708b8e1959e0 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/* Concrete Roman */
@font-face {
font-family: 'Concrete Roman';
src: url('/fonts/cmunobx.woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Concrete Roman';
src: url('/fonts/cmunobi.woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Concrete Roman';
src: url('/fonts/cmunoti.woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Concrete Roman';
src: url('/fonts/cmunorm.woff');
font-weight: normal;
font-style: normal;
}
/* Inconsolata */
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
src: url('/fonts/Inconsolata-Normal.woff');
}
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 700;
src: local('Inconsolata Bold'), local('Inconsolata-Bold'), url('/fonts/Inconsolata-Bold.woff');
}
|