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 @font-face { | 6 @font-face { |
6 font-family: 'Roboto2'; | 7 font-family: 'Roboto2'; |
7 font-weight: 400; | 8 font-weight: 400; |
8 src: local('Roboto'), local('Roboto2-Regular'), | 9 src: local('Roboto'), local('Roboto2-Regular'), |
9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); | 10 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); |
10 } | 11 } |
11 | 12 |
12 body { | 13 body { |
13 color: #414141; | 14 color: #414141; |
14 font-family: 'Roboto2', sans-serif; | 15 font-family: 'Roboto2', sans-serif; |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 margin-right: 24px; | 102 margin-right: 24px; |
102 } | 103 } |
103 | 104 |
104 #optin-label a { | 105 #optin-label a { |
105 color: white; | 106 color: white; |
106 } | 107 } |
107 | 108 |
108 #optout-label a { | 109 #optout-label a { |
109 color: rgb(66, 133, 244); | 110 color: rgb(66, 133, 244); |
110 } | 111 } |
OLD | NEW |