OLD | NEW |
| (Empty) |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 /* TODO(dzhioev): get rid of this file, when we have Roboto among system fonts. | |
7 * http://crbug.com/409047 | |
8 */ | |
9 | |
10 @font-face { | |
11 font-family: 'Roboto'; | |
12 font-style: normal; | |
13 font-weight: 100; | |
14 src: url(Roboto-Thin.ttf) format('truetype'); | |
15 } | |
16 | |
17 @font-face { | |
18 font-family: 'Roboto'; | |
19 font-style: normal; | |
20 font-weight: 300; | |
21 src: url(Roboto-Light.ttf) format('truetype'); | |
22 } | |
23 | |
24 @font-face { | |
25 font-family: 'Roboto'; | |
26 font-style: normal; | |
27 font-weight: 400; | |
28 src: url(Roboto-Regular.ttf) format('truetype'); | |
29 } | |
30 | |
31 @font-face { | |
32 font-family: 'Roboto'; | |
33 font-style: normal; | |
34 font-weight: 500; | |
35 src: url(Roboto-Medium.ttf) format('truetype'); | |
36 } | |
37 | |
38 @font-face { | |
39 font-family: 'Roboto'; | |
40 font-style: normal; | |
41 font-weight: 700; | |
42 src: url(Roboto-Bold.ttf) format('truetype'); | |
43 } | |
OLD | NEW |