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 /* TODO: Need to clean up @font-face after we remove font-family from body. */ | 5 /* TODO: Need to clean up @font-face after we remove font-family from body. */ |
6 @font-face { | 6 @font-face { |
7 font-family: 'Roboto2'; | 7 font-family: 'Roboto2'; |
8 font-weight: 400; | 8 font-weight: 400; |
9 src: local('Roboto'), local('Roboto2-Regular'), | 9 src: local('Roboto'), local('Roboto2-Regular'), |
10 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); | 10 url(chrome://resources/roboto/roboto.woff2) format('woff2'), |
| 11 url(chrome://resources/roboto/roboto.woff) format('woff'); |
11 } | 12 } |
12 | 13 |
13 body { | 14 body { |
14 color: #414141; | 15 color: #414141; |
15 font-family: 'Roboto2', sans-serif; | 16 font-family: 'Roboto2', sans-serif; |
16 margin: 0; | 17 margin: 0; |
17 } | 18 } |
18 | 19 |
19 a { | 20 a { |
20 text-decoration: none; | 21 text-decoration: none; |
(...skipping 84 matching lines...) Loading... |
105 margin-right: 24px; | 106 margin-right: 24px; |
106 } | 107 } |
107 | 108 |
108 #optin-button .caption { | 109 #optin-button .caption { |
109 color: white; | 110 color: white; |
110 } | 111 } |
111 | 112 |
112 #optout-button .caption { | 113 #optout-button .caption { |
113 color: rgb(66, 133, 244); | 114 color: rgb(66, 133, 244); |
114 } | 115 } |
OLD | NEW |