OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 */ | 6 */ |
7 | 7 |
8 html, | 8 html, |
9 body { | 9 body { |
10 height: 100%; | 10 height: 100%; |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 | 62 |
63 hr.bottom { | 63 hr.bottom { |
64 background: -webkit-linear-gradient(bottom, top, | 64 background: -webkit-linear-gradient(bottom, top, |
65 rgba(0,0,0,0.2)), rgba(0,0,0,0.0)); | 65 rgba(0,0,0,0.2)), rgba(0,0,0,0.0)); |
66 border-bottom: 1px solid rgba(0,0,0,0.5); | 66 border-bottom: 1px solid rgba(0,0,0,0.5); |
67 height: 2px; | 67 height: 2px; |
68 z-index: 0; | 68 z-index: 0; |
69 } | 69 } |
70 | 70 |
71 #header { | 71 #header { |
72 background: url('chrome://theme/IDR_PRODUCT_LOGO_64') left center no-repeat; | 72 background: url('chrome://theme/IDR_PRODUCT_LOGO_32') left center no-repeat; |
73 background-size: 48px; | 73 background-size: 32px; |
74 color: #737373; | 74 color: #666; |
75 display: -webkit-box; | 75 display: -webkit-box; |
76 font-size: 20px; | 76 font-size: 23px; |
77 height: 48px; | 77 height: 47px; |
78 line-height: 48px; | 78 line-height: 45px; |
79 padding-left: 54px; | 79 padding-left: 34px; |
| 80 padding-top: 1px; |
| 81 } |
| 82 |
| 83 #header span { |
| 84 text-transform: lowercase; |
80 } | 85 } |
81 | 86 |
82 #header span, | 87 #header span, |
83 #logging span, | 88 #logging span, |
84 #user-image-screen-curtain p, | 89 #user-image-screen-curtain p, |
85 .label { | 90 .label { |
86 cursor: default; | 91 cursor: default; |
87 } | 92 } |
88 | 93 |
89 #header-sections { | 94 #header-sections { |
90 position: relative; | 95 display: inline-block; |
| 96 height: 30px; |
91 } | 97 } |
92 | 98 |
93 .header-section:before { | 99 .header-section:before { |
94 /* Divider in header between product name and title, | 100 /* Divider in header between product name and title, |
95 like "[Product name] > [step header]" */ | 101 like "[Product name] > [step header]" */ |
96 content: "\00A0\203A\00A0\00A0"; | 102 content: "\00A0\203A\00A0\00A0"; |
97 } | 103 } |
98 | 104 |
99 .header-section { | 105 .header-section { |
100 -webkit-transition: left .2s, opacity .2s ease-in-out; | 106 -webkit-transition: left .2s, opacity .2s ease-in-out; |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
767 } | 773 } |
768 | 774 |
769 .dropdown-overlay { | 775 .dropdown-overlay { |
770 bottom: 0; | 776 bottom: 0; |
771 left: 0; | 777 left: 0; |
772 position: fixed; | 778 position: fixed; |
773 right: 0; | 779 right: 0; |
774 top: 0; | 780 top: 0; |
775 z-index: 5; | 781 z-index: 5; |
776 } | 782 } |
OLD | NEW |