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 { | 9 .bad-clock .icon { |
10 background-image: -webkit-image-set( | 10 background-image: -webkit-image-set( |
11 url(images/1x/clock.png) 1x, | 11 url(images/1x/clock.png) 1x, |
12 url(images/2x/clock.png) 2x); | 12 url(images/2x/clock.png) 2x); |
13 } | 13 } |
14 | 14 |
15 body { | 15 body { |
16 background-color: #f7f7f7; | 16 background-color: #f7f7f7; |
17 color: #585858; | 17 color: #585858; |
18 font-size: 125%; | |
19 } | 18 } |
20 | 19 |
21 body.safe-browsing { | 20 body.safe-browsing { |
22 background-color: rgb(206, 52, 38); | 21 background-color: rgb(206, 52, 38); |
23 color: white; | 22 color: white; |
24 } | 23 } |
25 | 24 |
26 button { | 25 button { |
27 background: rgb(76, 142, 250); | 26 background: rgb(76, 142, 250); |
28 border: 0; | 27 border: 0; |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 | 89 |
91 h2 { | 90 h2 { |
92 font-size: 1.2em; | 91 font-size: 1.2em; |
93 font-weight: normal; | 92 font-weight: normal; |
94 } | 93 } |
95 | 94 |
96 .hidden { | 95 .hidden { |
97 display: none; | 96 display: none; |
98 } | 97 } |
99 | 98 |
| 99 html { |
| 100 font-size: 125%; |
| 101 } |
| 102 |
100 .icon { | 103 .icon { |
101 background-repeat: no-repeat; | 104 background-repeat: no-repeat; |
102 background-size: 100%; | 105 background-size: 100%; |
103 height: 72px; | 106 height: 72px; |
104 margin: 0 0 40px; | 107 margin: 0 0 40px; |
105 width: 72px; | 108 width: 72px; |
106 } | 109 } |
107 | 110 |
108 input[type=checkbox] { | 111 input[type=checkbox] { |
109 visibility: hidden; | 112 visibility: hidden; |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 } | 264 } |
262 | 265 |
263 .nav-wrapper { | 266 .nav-wrapper { |
264 margin-top: 30px; | 267 margin-top: 30px; |
265 } | 268 } |
266 | 269 |
267 .small-link { | 270 .small-link { |
268 font-size: 1em; | 271 font-size: 1em; |
269 } | 272 } |
270 } | 273 } |
OLD | NEW |