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 @font-face { | |
| 5 font-family: 'Roboto2'; | |
| 6 font-weight: 400; | |
| 7 src: local('Roboto'), | |
| 8 local('Roboto2-Regular'), | |
| 9 url(../roboto/roboto.woff2) format('woff2'), | |
| 10 url(../roboto/roboto.woff) format('woff'); | |
| 11 } | |
| 4 | 12 |
| 5 a { | 13 a { |
| 6 color: #585858; | 14 color: #585858; |
| 7 } | 15 } |
| 8 | 16 |
| 9 body { | 17 body { |
| 10 background-color: #f7f7f7; | 18 background-color: #f7f7f7; |
| 11 color: #585858; | 19 color: #585858; |
| 20 font-family: 'Roboto2', serif; | |
|
Mathieu
2014/08/28 20:04:28
nit: I think the closest fallback to Roboto is 'sa
felt
2014/08/28 20:30:57
I actually removed this altogether; if I don't put
| |
| 12 font-size: 125%; | 21 font-size: 125%; |
| 13 } | 22 } |
| 14 | 23 |
| 15 body.safe-browsing { | 24 body.safe-browsing { |
| 16 background-color: rgb(206, 52, 38); | 25 background-color: rgb(206, 52, 38); |
| 17 color: white; | 26 color: white; |
| 18 } | 27 } |
| 19 | 28 |
| 20 button { | 29 button { |
| 21 background: rgb(76, 142, 250); | 30 background: rgb(76, 142, 250); |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 246 } | 255 } |
| 247 | 256 |
| 248 .nav-wrapper { | 257 .nav-wrapper { |
| 249 margin-top: 30px; | 258 margin-top: 30px; |
| 250 } | 259 } |
| 251 | 260 |
| 252 .small-link { | 261 .small-link { |
| 253 font-size: 1em; | 262 font-size: 1em; |
| 254 } | 263 } |
| 255 } | 264 } |
| OLD | NEW |