| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 body { | 5 body { |
| 6 -webkit-user-select: none; | 6 -webkit-user-select: none; |
| 7 background: black; | 7 background: black; |
| 8 font-family: Noto Sans UI,Droid Sans Fallback,sans-serif; | 8 font-family: Noto Sans UI,Droid Sans Fallback,sans-serif; |
| 9 font-size: 84%; | 9 font-size: 84%; |
| 10 margin: 0; | 10 margin: 0; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 top: 0; | 80 top: 0; |
| 81 width: 100%; | 81 width: 100%; |
| 82 } | 82 } |
| 83 | 83 |
| 84 #error { | 84 #error { |
| 85 -webkit-box-align: center; | 85 -webkit-box-align: center; |
| 86 -webkit-box-orient: horizontal; | 86 -webkit-box-orient: horizontal; |
| 87 -webkit-box-pack: center; | 87 -webkit-box-pack: center; |
| 88 background-color: rgba(24, 24, 24, 1); | 88 background-color: rgba(24, 24, 24, 1); |
| 89 background-image: -webkit-image-set( | 89 background-image: -webkit-image-set( |
| 90 url('../images/media/error.png') 1x, | 90 url('../images/100/error.png') 1x, |
| 91 url('../images/media/2x/error.png') 2x); | 91 url('../images/200/error.png') 2x); |
| 92 background-position: 25px center; | 92 background-position: 25px center; |
| 93 background-repeat: no-repeat; | 93 background-repeat: no-repeat; |
| 94 color: white; | 94 color: white; |
| 95 display: -webkit-box; | 95 display: -webkit-box; |
| 96 height: 54px; | 96 height: 54px; |
| 97 padding-left: 70px; | 97 padding-left: 70px; |
| 98 padding-right: 35px; | 98 padding-right: 35px; |
| 99 } | 99 } |
| 100 | 100 |
| 101 #error:not([visible]) { | 101 #error:not([visible]) { |
| 102 display: none; | 102 display: none; |
| 103 } | 103 } |
| OLD | NEW |