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