OLD | NEW |
---|---|
1 body { | 1 body { |
2 cursor: default; | 2 background: -webkit-gradient(radial, center center, 0, center center, 400, |
3 from(rgb(254, 254, 254)), to(rgb(239, 239, 239))); | |
4 padding: 10px; | |
5 font-size: 14px; | |
6 } | |
7 | |
8 #oobe { | |
9 width: 640px; | |
10 position: absolute; | |
11 top: 50%; | |
12 margin-top: -270px; | |
13 left: 50%; | |
14 margin-left: -320px; | |
15 } | |
16 | |
17 #inner-container { | |
18 padding: 20px 20px; | |
19 position: relative; | |
20 width: 640px; | |
21 height: 294px; | |
22 -webkit-transition: height .2s ease-in-out; | |
23 } | |
24 | |
25 table { | |
26 font-size: 14px; | |
27 } | |
28 | |
29 a { | |
30 color: rgb(0, 102, 204); | |
31 text-decoration: none; | |
32 } | |
33 | |
34 #header { | |
35 color: rgb(115, 115, 115); | |
36 } | |
37 | |
38 hr.topshadow { | |
39 border: none; | |
40 border-top: 1px solid rgba(0,0,0,0.5); | |
41 height: 4px; | |
42 background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0. 3)), to(rgba(0,0,0,0.0))); | |
43 -webkit-mask: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0) ), color-stop(0.5, black), to(rgba(0,0,0,0))); | |
44 -webkit-mask-clip: padding-box; | |
45 opacity: 0.3; | |
46 } | |
47 | |
48 hr.bottomshadow { | |
49 border: none; | |
50 border-bottom: 1px solid rgba(0,0,0,0.5); | |
51 height: 2px; | |
52 background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0. 2)), to(rgba(0,0,0,0.0))); | |
53 -webkit-mask:-webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0)) , color-stop(0.5, black), to(rgba(0,0,0,0))); | |
54 opacity: 0.3; | |
55 -webkit-mask-clip: padding-box; | |
56 } | |
57 | |
58 #header { | |
59 background: url('chrome://theme/IDR_PRODUCT_LOGO_64') left center no-repeat; | |
60 background-size: 48px; | |
61 height: 48px; | |
62 line-height: 48px; | |
63 padding-left: 54px; | |
64 font-size: 20px; | |
65 } | |
66 | |
67 #header-sections { | |
68 position: relative; | |
69 display: inline-block; | |
70 height: 1.5em; | |
71 } | |
72 | |
73 .header-section:before { | |
74 content: "\00A0\203A\00A0\00A0"; | |
75 } | |
76 | |
77 .header-section { | |
78 position: absolute; | |
79 width: 20em; | |
80 -webkit-transition: all .2s ease-in-out; | |
81 } | |
82 | |
83 .header-section.right { | |
84 left: 50px; | |
85 opacity: 0; | |
86 } | |
87 | |
88 .header-section.left { | |
89 left: -20px; | |
90 opacity: 0; | |
91 } | |
92 | |
93 .step { | |
94 position: absolute; | |
95 width: 640px; | |
96 min-height: 294px; | |
97 -webkit-transition: all .2s ease-in-out; | |
98 left: 0; | |
99 opacity: 1; | |
100 } | |
101 | |
102 .step.right { | |
103 left: 100px; | |
104 opacity: 0; | |
105 } | |
106 | |
107 .step.left { | |
108 left: -50px; | |
109 opacity: 0; | |
110 } | |
111 | |
112 .step.hidden { | |
113 visibility: hidden; | |
114 } | |
115 | |
116 #progress { | |
117 padding: 10px; | |
118 float: left; | |
119 } | |
120 | |
121 .progdot { | |
122 width: 8px; | |
123 height: 8px; | |
124 background: black; | |
125 float: left; | |
126 margin-right: 12px; | |
127 border-radius: 2px; | |
128 opacity: 0.1; | |
129 } | |
130 | |
131 .progdot-active { | |
132 opacity: 0.5; | |
133 } | |
134 | |
135 select { | |
136 width: 150px; | |
137 } | |
138 | |
139 #logging { | |
140 margin-top: 20px; | |
141 clear: both; | |
142 } | |
143 | |
144 #footer button { | |
145 display: none; | |
146 } | |
147 | |
148 #oobe.connect #continue-button, | |
149 #oobe.eula #back-button, | |
150 #oobe.eula #accept-button { | |
151 display: inline-block; | |
152 } | |
153 | |
154 #oobe.connect #connect-dot, | |
155 #oobe.eula #eula-dot, | |
156 #oobe.signin #signin-dot, | |
157 #oobe.photo #photo-dot { | |
158 opacity: 0.4; | |
159 } | |
160 | |
161 #connect table { | |
162 margin: 7em auto; | |
163 } | |
164 | |
165 #tpm { | |
Evan Stade
2011/06/07 03:25:46
don't abbreviate variable names
Nikita (slow)
2011/06/07 17:03:36
Done.
| |
166 position: absolute; | |
167 width: 98%; | |
168 bottom: 10px; | |
169 text-align: center; | |
170 visibility: hidden; | |
171 } | |
172 | |
173 #tpm a { | |
174 color: rgb(140, 140, 140); | |
3 font-size: 13px; | 175 font-size: 13px; |
4 background: #f1f1f1; | 176 } |
5 } | 177 |
178 #oobe.eula + #tpm { | |
179 visibility: visible; | |
180 } | |
181 | |
182 #update div { | |
183 width: 32em; | |
184 margin: 6em auto; | |
185 } | |
186 | |
187 #update progress { | |
188 margin: 13px 0; | |
189 width: 380px; | |
190 } | |
191 | |
192 button { | |
193 min-width: 80px; | |
194 } | |
195 | |
196 .eula-columns { | |
197 display: -webkit-box; | |
198 width: 630px; | |
199 } | |
200 | |
201 .eula-frame { | |
202 border: none; | |
203 height: 200px; | |
204 margin-right: 20px; | |
205 padding: 0 0 0 10px; | |
206 width: 270px; | |
207 } | |
208 | |
209 #eulas.one-column #cros-eula { | |
210 width: 100%; | |
211 } | |
212 | |
213 #eulas.one-column #cros-eula-frame { | |
214 width: 100%; | |
215 } | |
216 | |
217 #eulas.one-column #oem-eula { | |
218 display: none; | |
219 } | |
220 | |
221 .button-strip { | |
222 float: right; | |
223 } | |
OLD | NEW |