| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 @media (max-height: 600px) { | 198 @media (max-height: 600px) { |
| 199 .interstitial-wrapper { | 199 .interstitial-wrapper { |
| 200 margin-top: 13%; | 200 margin-top: 13%; |
| 201 } | 201 } |
| 202 } | 202 } |
| 203 | 203 |
| 204 @media (max-width: 400px) { | 204 @media (max-width: 400px) { |
| 205 button, | 205 button, |
| 206 [dir='rtl'] button { | 206 [dir='rtl'] button { |
| 207 float: none; | 207 float: none; |
| 208 height: auto; | 208 font-size: 1em; |
| 209 width: 100%; | 209 width: 100%; |
| 210 } | 210 } |
| 211 | 211 |
| 212 #details { | 212 #details { |
| 213 margin: 20px 0 20px 0; | 213 margin: 20px 0 20px 0; |
| 214 } | 214 } |
| 215 | 215 |
| 216 #details p:not(:first-of-type) { | 216 #details p:not(:first-of-type) { |
| 217 margin-top: 10px; | 217 margin-top: 10px; |
| 218 } | 218 } |
| 219 | 219 |
| 220 #details-button { | 220 #details-button { |
| 221 display: block; | 221 display: block; |
| 222 padding-top: 14px; | 222 padding-top: 14px; |
| 223 text-align: center; | 223 text-align: center; |
| 224 width: 100%; | 224 width: 100%; |
| 225 } | 225 } |
| 226 | 226 |
| 227 .interstitial-wrapper { | 227 .interstitial-wrapper { |
| 228 padding: 0 5%; | 228 padding: 0 5%; |
| 229 } | 229 } |
| 230 | 230 |
| 231 #malware-opt-in { | 231 #malware-opt-in { |
| 232 margin-top: 24px; | 232 margin-top: 24px; |
| 233 } | 233 } |
| 234 | 234 |
| 235 .nav-wrapper { | 235 .nav-wrapper { |
| 236 margin-top: 30px; | 236 margin-top: 30px; |
| 237 } | 237 } |
| 238 |
| 239 .small-link { |
| 240 font-size: 1em; |
| 241 } |
| 238 } | 242 } |
| OLD | NEW |