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 /* The main (outer) container. */ | 5 /* The main (outer) container. */ |
6 #metro-setup-outer-container { | 6 #metro-setup-outer-container { |
7 -webkit-box-align: center; | 7 -webkit-box-align: center; |
8 -webkit-box-orient: vertical; | 8 -webkit-box-orient: vertical; |
9 -webkit-box-pack: start; | 9 -webkit-box-pack: start; |
10 -webkit-transition: 200ms opacity; | 10 -webkit-transition: 200ms opacity; |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 border-radius: 2px; | 88 border-radius: 2px; |
89 display: inline-block; | 89 display: inline-block; |
90 font-size: 13px; | 90 font-size: 13px; |
91 height: 32px; | 91 height: 32px; |
92 line-height: 27px; | 92 line-height: 27px; |
93 margin-top: 0; | 93 margin-top: 0; |
94 min-width: 80px; | 94 min-width: 80px; |
95 } | 95 } |
96 | 96 |
97 #metro-action-box button:hover { | 97 #metro-action-box button:hover { |
98 -webkit-transition: all 0; | 98 -webkit-transition: all 0ms; |
99 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); | 99 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); |
100 } | 100 } |
101 | 101 |
102 #metro-action-box button:focus { | 102 #metro-action-box button:focus { |
103 box-shadow: inset 0 0 0 1px white; | 103 box-shadow: inset 0 0 0 1px white; |
104 outline: none; | 104 outline: none; |
105 z-index: 4 !important; | 105 z-index: 4 !important; |
106 } | 106 } |
107 | 107 |
108 #metro-action-box button:active, | 108 #metro-action-box button:active, |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 margin: 1px; | 150 margin: 1px; |
151 text-align: center; | 151 text-align: center; |
152 } | 152 } |
153 | 153 |
154 #chrome-logo-box { | 154 #chrome-logo-box { |
155 bottom: 30px; | 155 bottom: 30px; |
156 position: absolute; | 156 position: absolute; |
157 text-align: center; | 157 text-align: center; |
158 width: 100%; | 158 width: 100%; |
159 } | 159 } |
OLD | NEW |