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 { |
11 height: 100%; | 11 height: 100%; |
12 width: 100%; | 12 width: 100%; |
13 } | 13 } |
14 | 14 |
15 body { | 15 body { |
16 background: #fefefe; | 16 background-color: #fefefe; |
17 font-size: 14px; | 17 font-size: 14px; |
18 margin: 0; | 18 margin: 0; |
19 overflow: hidden; | 19 overflow: hidden; |
20 padding: 0; | 20 padding: 0; |
21 } | 21 } |
22 | 22 |
| 23 html[oobe=new]:not([screen=lock]) body { |
| 24 background-color: transparent; |
| 25 } |
| 26 |
23 progress { | 27 progress { |
24 border: solid 1px #bbb; | 28 border: solid 1px #bbb; |
25 padding: 1px; | 29 padding: 1px; |
26 } | 30 } |
27 | 31 |
28 progress::-webkit-progress-bar { | 32 progress::-webkit-progress-bar { |
29 background: white; | 33 background: white; |
30 } | 34 } |
31 | 35 |
32 progress::-webkit-progress-value { | 36 progress::-webkit-progress-value { |
(...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
840 } | 844 } |
841 | 845 |
842 #notification-area a { | 846 #notification-area a { |
843 color: rgb(37, 79, 155); | 847 color: rgb(37, 79, 155); |
844 } | 848 } |
845 | 849 |
846 #notification-area .butter-bar { | 850 #notification-area .butter-bar { |
847 margin: 0 auto; | 851 margin: 0 auto; |
848 max-width: 850px; | 852 max-width: 850px; |
849 } | 853 } |
OLD | NEW |