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 a { | 5 a { |
6 color: #585858; | 6 color: #585858; |
7 } | 7 } |
8 | 8 |
| 9 .bad-clock .icon { |
| 10 background-image: -webkit-image-set( |
| 11 url(images/1x/clock.png) 1x, |
| 12 url(images/2x/clock.png) 2x); |
| 13 } |
| 14 |
9 body { | 15 body { |
10 background-color: #f7f7f7; | 16 background-color: #f7f7f7; |
11 color: #585858; | 17 color: #585858; |
12 font-size: 125%; | 18 font-size: 125%; |
13 } | 19 } |
14 | 20 |
15 body.safe-browsing { | 21 body.safe-browsing { |
16 background-color: rgb(206, 52, 38); | 22 background-color: rgb(206, 52, 38); |
17 color: white; | 23 color: white; |
18 } | 24 } |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 } | 261 } |
256 | 262 |
257 .nav-wrapper { | 263 .nav-wrapper { |
258 margin-top: 30px; | 264 margin-top: 30px; |
259 } | 265 } |
260 | 266 |
261 .small-link { | 267 .small-link { |
262 font-size: 1em; | 268 font-size: 1em; |
263 } | 269 } |
264 } | 270 } |
OLD | NEW |