blob: c782885ba30640a32551c0bf3d32a71b8cb726a8 (
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
46
47
48
49
50
51
52
53
54
55
|
@font-face {
font-family: 'Roboto';
src: url('/static/fonts/Roboto-Bold.ttf') format('truetype');
font-weight: bold;
}
@font-face {
font-family: 'Roboto';
src: url('/static/fonts/Roboto-BoldItalic.ttf') format('truetype');
font-weight: bold;
font-style: italic;
}
/*
@font-face {
font-family: 'Roboto';
src: url('/static/fonts/Roboto-Light.ttf') format('truetype');
font-weight: 100;
}
@font-face {
font-family: 'Roboto';
src: url('/static/fonts/Roboto-LightItalic.ttf') format('truetype');
font-weight: 100;
}
*/
@font-face {
font-family: 'Roboto';
src: url('/static/fonts/Roboto-Medium.ttf') format('truetype');
font-weight: 300;
}
@font-face {
font-family: 'Roboto';
src: url('/static/fonts/Roboto-MediumItalic.ttf') format('truetype');
font-style: italic;
font-weight: 300;
}
@font-face {
font-family: 'Roboto';
src: url('/static/fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'Roboto';
src: url('/static/fonts/Roboto-Italic.ttf') format('truetype');
font-style: italic;
}
/*
@font-face {
font-family: 'Roboto';
src: url('/static/fonts/Roboto-Thin.ttf') format('truetype');
font-weight: 100;
}
@font-face {
font-family: 'Roboto';
src: url('/static/fonts/Roboto-ThinItalic.ttf') format('truetype');
font-weight: 100;
}
*/
|