OLD | NEW |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 /* Don't use the main frame div when the error is in a subframe. */ | 5 /* Don't use the main frame div when the error is in a subframe. */ |
6 html[subframe] #main-frame-error { | 6 html[subframe] #main-frame-error { |
7 display: none; | 7 display: none; |
8 } | 8 } |
9 | 9 |
10 /* Don't use the subframe error div when the error is in a main frame. */ | 10 /* Don't use the subframe error div when the error is in a main frame. */ |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 url('default_200_percent/common/error_network_generic.png') 2x); | 49 url('default_200_percent/common/error_network_generic.png') 2x); |
50 height: 50px; | 50 height: 50px; |
51 padding-top: 20px; | 51 padding-top: 20px; |
52 width: 41px; | 52 width: 41px; |
53 } | 53 } |
54 | 54 |
55 .icon-offline { | 55 .icon-offline { |
56 content: -webkit-image-set( | 56 content: -webkit-image-set( |
57 url('default_100_percent/offline/100-error-offline.png') 1x, | 57 url('default_100_percent/offline/100-error-offline.png') 1x, |
58 url('default_200_percent/offline/200-error-offline.png') 2x); | 58 url('default_200_percent/offline/200-error-offline.png') 2x); |
| 59 height: 47px; |
| 60 margin: 0 0 40px; |
| 61 position: relative; |
| 62 width: 44px; |
59 } | 63 } |
60 | 64 |
61 #content-top { | 65 #content-top { |
62 margin: 20px; | 66 margin: 20px; |
63 } | 67 } |
64 | 68 |
65 #help-box-outer { | 69 #help-box-outer { |
66 -webkit-transition: height ease-in 218ms; | 70 -webkit-transition: height ease-in 218ms; |
67 overflow: hidden; | 71 overflow: hidden; |
68 } | 72 } |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 } | 260 } |
257 | 261 |
258 #buttons::after { | 262 #buttons::after { |
259 clear: both; | 263 clear: both; |
260 content: ''; | 264 content: ''; |
261 display: block; | 265 display: block; |
262 width: 100%; | 266 width: 100%; |
263 } | 267 } |
264 | 268 |
265 /* Offline page */ | 269 /* Offline page */ |
266 .offline .icon { | |
267 height: 47px; | |
268 margin: 0 0 40px; | |
269 position: relative; | |
270 width: 44px; | |
271 } | |
272 | |
273 .offline .interstitial-wrapper { | 270 .offline .interstitial-wrapper { |
274 color: #2b2b2b; | 271 color: #2b2b2b; |
275 font-size: 1em; | 272 font-size: 1em; |
276 line-height: 1.55; | 273 line-height: 1.55; |
277 margin: 100px auto 0; | 274 margin: 100px auto 0; |
278 max-width: 600px; | 275 max-width: 600px; |
279 width: 100%; | 276 width: 100%; |
280 } | 277 } |
281 | 278 |
282 .offline .runner-container { | 279 .offline .runner-container { |
(...skipping 22 matching lines...) Expand all Loading... |
305 position: absolute; | 302 position: absolute; |
306 top: 0; | 303 top: 0; |
307 width: 100vw; | 304 width: 100vw; |
308 z-index: 1; | 305 z-index: 1; |
309 } | 306 } |
310 | 307 |
311 #offline-resources { | 308 #offline-resources { |
312 display: none; | 309 display: none; |
313 } | 310 } |
314 | 311 |
OLD | NEW |