| 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; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 button:hover { | 44 button:hover { |
| 45 box-shadow: 0 1px 3px rgba(0, 0, 0, .50); | 45 box-shadow: 0 1px 3px rgba(0, 0, 0, .50); |
| 46 } | 46 } |
| 47 | 47 |
| 48 #details { | 48 #details { |
| 49 color: #696969; | 49 color: #696969; |
| 50 margin: 45px 0 50px; | 50 margin: 45px 0 50px; |
| 51 } | 51 } |
| 52 | 52 |
| 53 #details p:not(:first-of-type) { | 53 #details p:not(:first-of-type) { |
| 54 margin-top: 39px; | 54 margin-top: 20px; |
| 55 } | 55 } |
| 56 | 56 |
| 57 #error-code { | 57 #error-code { |
| 58 color: black; | 58 color: black; |
| 59 opacity: .35; | 59 opacity: .35; |
| 60 text-transform: uppercase; | 60 text-transform: uppercase; |
| 61 } | 61 } |
| 62 | 62 |
| 63 h1 { | 63 h1 { |
| 64 -webkit-margin-after: 16px; | 64 -webkit-margin-after: 16px; |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 @media (max-height: 600px) { | 204 @media (max-height: 600px) { |
| 205 .interstitial-wrapper { | 205 .interstitial-wrapper { |
| 206 margin-top: 13%; | 206 margin-top: 13%; |
| 207 } | 207 } |
| 208 } | 208 } |
| 209 | 209 |
| 210 @media (max-width: 400px) { | 210 @media (max-width: 400px) { |
| 211 button, | 211 button, |
| 212 [dir='rtl'] button { | 212 [dir='rtl'] button { |
| 213 float: none; | 213 float: none; |
| 214 height: auto; | 214 font-size: 1em; |
| 215 width: 100%; | 215 width: 100%; |
| 216 } | 216 } |
| 217 | 217 |
| 218 #details { | 218 #details { |
| 219 margin: 20px 0 20px 0; | 219 margin: 20px 0 20px 0; |
| 220 } | 220 } |
| 221 | 221 |
| 222 #details p:not(:first-of-type) { | 222 #details p:not(:first-of-type) { |
| 223 margin-top: 10px; | 223 margin-top: 10px; |
| 224 } | 224 } |
| 225 | 225 |
| 226 #details-button { | 226 #details-button { |
| 227 display: block; | 227 display: block; |
| 228 padding-top: 14px; | 228 padding-top: 14px; |
| 229 text-align: center; | 229 text-align: center; |
| 230 width: 100%; | 230 width: 100%; |
| 231 } | 231 } |
| 232 | 232 |
| 233 .interstitial-wrapper { | 233 .interstitial-wrapper { |
| 234 padding: 0 5%; | 234 padding: 0 5%; |
| 235 } | 235 } |
| 236 | 236 |
| 237 #malware-opt-in { | 237 #malware-opt-in { |
| 238 margin-top: 24px; | 238 margin-top: 24px; |
| 239 } | 239 } |
| 240 | 240 |
| 241 .nav-wrapper { | 241 .nav-wrapper { |
| 242 margin-top: 30px; | 242 margin-top: 30px; |
| 243 } | 243 } |
| 244 |
| 245 .small-link { |
| 246 font-size: 1em; |
| 247 } |
| 244 } | 248 } |
| OLD | NEW |