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 | 5 |
6 #error-message { | 6 #error-message { |
7 width: 650px; | 7 width: 650px; |
8 } | 8 } |
9 | 9 |
10 .show-with-ui-state-update, | 10 .show-with-ui-state-update, |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 /* A hack used to prevent aliasing on High-DPI displays. */ | 51 /* A hack used to prevent aliasing on High-DPI displays. */ |
52 -webkit-transform: scale3d(1,1,1); | 52 -webkit-transform: scale3d(1,1,1); |
53 background-clip: padding-box; | 53 background-clip: padding-box; |
54 background-color: white; | 54 background-color: white; |
55 border-bottom: 1px solid rgb(238,238,238); | 55 border-bottom: 1px solid rgb(238,238,238); |
56 padding: 71px 20px 50px; | 56 padding: 71px 20px 50px; |
57 text-align: center; | 57 text-align: center; |
58 } | 58 } |
59 | 59 |
60 .error-icon { | 60 .error-icon { |
61 -webkit-margin-after: 40px; | |
62 height: 64px; | 61 height: 64px; |
| 62 margin-bottom: 40px; |
63 } | 63 } |
64 | 64 |
65 .error-title { | 65 .error-title { |
66 color: #606060; | 66 color: #606060; |
67 font-size: 15px; | 67 font-size: 15px; |
68 } | 68 } |
69 | 69 |
70 .error-body { | 70 .error-body { |
71 background-color: rgb(249,249,249); | 71 background-color: rgb(249,249,249); |
72 padding: 20px 20px 20px; | 72 padding: 20px 20px 20px; |
73 } | 73 } |
74 | 74 |
75 .error-controls { | 75 .error-controls { |
76 background-color: rgb(249,249,249); | 76 background-color: rgb(249,249,249); |
77 padding: 20px 20px 20px; | 77 padding: 20px 20px 20px; |
78 } | 78 } |
79 | 79 |
80 .error-message-paragraph { | 80 .error-message-paragraph { |
81 font-size: 12px; | 81 font-size: 12px; |
82 line-height: 18px; | 82 line-height: 18px; |
83 } | 83 } |
84 | 84 |
85 .error-message-paragraph { | 85 .error-message-paragraph { |
86 -webkit-margin-before: 20px; | 86 margin-top: 20px; |
87 } | 87 } |
88 | 88 |
89 .error-message-paragraph a { | 89 .error-message-paragraph a { |
90 color: rgb(17,85,204); | 90 color: rgb(17,85,204); |
91 text-decoration: none; | 91 text-decoration: none; |
92 } | 92 } |
93 | 93 |
94 #offline-network-control { | 94 #offline-network-control { |
95 -webkit-align-items: center; | 95 -webkit-align-items: center; |
96 display: -webkit-flex; | 96 display: -webkit-flex; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 -webkit-animation: connecting-indicator-ellipsis 3s 0 infinite; | 132 -webkit-animation: connecting-indicator-ellipsis 3s 0 infinite; |
133 } | 133 } |
134 | 134 |
135 #connecting-indicator-ellipsis-2 { | 135 #connecting-indicator-ellipsis-2 { |
136 -webkit-animation: connecting-indicator-ellipsis 3s 500ms infinite; | 136 -webkit-animation: connecting-indicator-ellipsis 3s 500ms infinite; |
137 } | 137 } |
138 | 138 |
139 #connecting-indicator-ellipsis-3 { | 139 #connecting-indicator-ellipsis-3 { |
140 -webkit-animation: connecting-indicator-ellipsis 3s 1s infinite; | 140 -webkit-animation: connecting-indicator-ellipsis 3s 1s infinite; |
141 } | 141 } |
OLD | NEW |