Chromium Code Reviews| 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 @font-face { | 5 @font-face { |
| 6 font-family: 'Roboto2'; | 6 font-family: 'Roboto2'; |
| 7 font-weight: 400; | 7 font-weight: 400; |
| 8 src: local('Roboto'), local('Roboto2-Regular'), | 8 src: local('Roboto'), local('Roboto2-Regular'), |
| 9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); | 9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); |
| 10 } | 10 } |
| 11 | 11 |
| 12 body { | 12 body { |
| 13 color: #414141; | 13 color: #414141; |
| 14 font-family: 'Roboto2', sans-serif; | |
|
jungshik at Google
2014/12/16 20:44:00
Again, let's leave this alone because this file is
| |
| 15 margin: 0; | 14 margin: 0; |
| 16 } | 15 } |
| 17 | 16 |
| 18 a { | 17 a { |
| 19 text-decoration: none; | 18 text-decoration: none; |
| 20 } | 19 } |
| 21 | 20 |
| 22 a.colored-link { | 21 a.colored-link { |
| 23 color: rgb(66, 133, 244); | 22 color: rgb(66, 133, 244); |
| 24 } | 23 } |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 101 margin-right: 24px; | 100 margin-right: 24px; |
| 102 } | 101 } |
| 103 | 102 |
| 104 #optin-label a { | 103 #optin-label a { |
| 105 color: white; | 104 color: white; |
| 106 } | 105 } |
| 107 | 106 |
| 108 #optout-label a { | 107 #optout-label a { |
| 109 color: rgb(66, 133, 244); | 108 color: rgb(66, 133, 244); |
| 110 } | 109 } |
| OLD | NEW |