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 * This is the stylesheet used by the Out of the box experience (OOBE) flow, | 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow, |
6 * sign in and lock screens. | 6 * sign in and lock screens. |
7 */ | 7 */ |
8 | 8 |
9 html, | 9 html, |
10 body { | 10 body { |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 .menu-control { | 193 .menu-control { |
194 cursor: default; | 194 cursor: default; |
195 } | 195 } |
196 | 196 |
197 #header-sections { | 197 #header-sections { |
198 display: inline-block; | 198 display: inline-block; |
199 height: 30px; | 199 height: 30px; |
200 position: relative; | 200 position: relative; |
201 } | 201 } |
202 | 202 |
203 .header-section:before { | 203 .header-section::before { |
204 /* Divider in header between product name and title, | 204 /* Divider in header between product name and title, |
205 like "[Product name] > [step header]" */ | 205 * like "[Product name] > [step header]". */ |
206 content: '\00A0\203A\00A0\00A0'; | 206 content: '\00A0\203A\00A0\00A0'; |
207 } | 207 } |
208 | 208 |
209 .header-section { | 209 .header-section { |
210 -webkit-transition: left 200ms, opacity 200ms ease-in-out; | 210 -webkit-transition: left 200ms, opacity 200ms ease-in-out; |
211 position: absolute; | 211 position: absolute; |
212 text-transform: lowercase; | 212 text-transform: lowercase; |
213 width: 20em; | 213 width: 20em; |
214 } | 214 } |
215 | 215 |
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1398 width: 100%; | 1398 width: 100%; |
1399 } | 1399 } |
1400 | 1400 |
1401 .background-initial { | 1401 .background-initial { |
1402 opacity: 0; | 1402 opacity: 0; |
1403 } | 1403 } |
1404 | 1404 |
1405 .background-final { | 1405 .background-final { |
1406 opacity: 1; | 1406 opacity: 1; |
1407 } | 1407 } |
OLD | NEW |