| 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 body { | 9 body { |
| 10 background-color: #f7f7f7; | 10 background-color: #f7f7f7; |
| 11 color: #585858; | 11 color: #585858; |
| 12 font-size: 125%; | 12 font-size: 125%; |
| 13 } | 13 } |
| 14 | 14 |
| 15 body.safe-browsing { | 15 body.safe-browsing { |
| 16 background-color: rgb(206, 52, 38); | 16 background-color: rgb(206, 52, 38); |
| 17 color: white; | 17 color: white; |
| 18 } | 18 } |
| 19 | 19 |
| 20 body.yellow { | |
| 21 background-color: rgb(255, 220, 59); | |
| 22 color: black; | |
| 23 } | |
| 24 | |
| 25 button { | 20 button { |
| 26 background: rgb(76, 142, 250); | 21 background: rgb(76, 142, 250); |
| 27 border: 0; | 22 border: 0; |
| 28 border-radius: 2px; | 23 border-radius: 2px; |
| 29 box-sizing: border-box; | 24 box-sizing: border-box; |
| 30 color: #fff; | 25 color: #fff; |
| 31 cursor: pointer; | 26 cursor: pointer; |
| 32 float: right; | 27 float: right; |
| 33 font-size: .875em; | 28 font-size: .875em; |
| 34 height: 36px; | 29 height: 36px; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 color: #696969; | 147 color: #696969; |
| 153 font-size: .875em; | 148 font-size: .875em; |
| 154 } | 149 } |
| 155 | 150 |
| 156 .ssl .icon { | 151 .ssl .icon { |
| 157 background-image: -webkit-image-set( | 152 background-image: -webkit-image-set( |
| 158 url(images/1x/brokenssl_red.png) 1x, | 153 url(images/1x/brokenssl_red.png) 1x, |
| 159 url(images/2x/brokenssl_red.png) 2x); | 154 url(images/2x/brokenssl_red.png) 2x); |
| 160 } | 155 } |
| 161 | 156 |
| 162 .ssl-guard #icon { | |
| 163 background-image: -webkit-image-set( | |
| 164 url(images/1x/brokenssl_guard.png) 1x, | |
| 165 url(images/2x/brokenssl_guard.png) 2x); | |
| 166 height: 104px; | |
| 167 width: 94px; | |
| 168 } | |
| 169 | |
| 170 .styled-checkbox { | 157 .styled-checkbox { |
| 171 float: left; | 158 float: left; |
| 172 height: 16px; | 159 height: 16px; |
| 173 margin-top: .36em; | 160 margin-top: .36em; |
| 174 position: relative; | 161 position: relative; |
| 175 width: 16px; | 162 width: 16px; |
| 176 } | 163 } |
| 177 | 164 |
| 178 [dir='rtl'] .styled-checkbox { | 165 [dir='rtl'] .styled-checkbox { |
| 179 float: right; | 166 float: right; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 } | 252 } |
| 266 | 253 |
| 267 .nav-wrapper { | 254 .nav-wrapper { |
| 268 margin-top: 30px; | 255 margin-top: 30px; |
| 269 } | 256 } |
| 270 | 257 |
| 271 .small-link { | 258 .small-link { |
| 272 font-size: 1em; | 259 font-size: 1em; |
| 273 } | 260 } |
| 274 } | 261 } |
| OLD | NEW |