Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: remoting/webapp/main.css

Issue 9582038: CSS clean-up. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 5
6 html,body,div,span,applet,object,iframe, 6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
7 h1,h2,h3,h4,h5,h6,p,blockquote,pre, 7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
8 a,abbr,acronym,address,big,cite,code, 8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl,
9 del,dfn,em,font,img,ins,kbd,q,s,samp, 9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
10 small,strike,strong,sub,sup,tt,var, 10 tfoot, thead, tr, th, td {
11 dl,dt,dd,ol,ul,li, 11 margin: 0;
12 fieldset,form,label,legend, 12 padding: 0;
13 table,caption,tbody,tfoot,thead,tr,th,td { 13 border: 0;
14 margin: 0; 14 outline: 0;
15 padding: 0; 15 font-weight: inherit;
16 border: 0; 16 font-style: inherit;
17 outline: 0; 17 font-size: 100%;
18 font-weight: inherit; 18 font-family: inherit;
19 font-style: inherit; 19 vertical-align: baseline;
20 font-size: 100%;
21 font-family: inherit;
22 vertical-align: baseline;
23 }
24 body {
25 line-height: 1.3;
26 color: black;
27 background: white;
28 }
29 table {
30 border-collapse: separate;
31 border-spacing: 0;
32 } 20 }
33 21
34 /*------------------------------------------------------------------ 22 body {
35 @global Type 23 font-family: "Arial", "Helvetica", sans-serif;
36 ------------------------------------------------------------------*/ 24 color: #222;
37 body,body input,body button,body td { 25 font-size: 13px;
38 font-family: "Arial", "Helvetica", sans-serif; 26 margin: 0;
39 color: #222; 27 padding: 20px;
40 font-size: 13px; 28 direction: __MSG_@@bidi_dir__;
41 -webkit-tap-highlight-color: rgba(0,0,0,0);
42 } 29 }
43 h1,h2,h3,h4,h5 { 30
44 font-size: 16px; 31 a {
45 line-height:24px; 32 text-decoration: none;
46 font-weight: normal; 33 color: #15c;
47 color: #222; 34 cursor: pointer;
48 } 35 }
49 p { 36
50 margin: 0 0 1em; 37 a:visited {
51 font-size: 13px; 38 color: #61c;
52 line-height: 18px;
53 } 39 }
54 a { 40
55 text-decoration: none; 41 a:active {
56 color: #15c; 42 color: #d14836;
57 cursor: pointer;
58 } 43 }
59 a:visited { 44
60 color: #61c;
61 }
62 a:active {
63 color: #d14836;
64 }
65 strong, b { 45 strong, b {
66 color: #000; 46 color: #000;
67 font-weight:bold;
68 }
69 em {
70 font-style: italic;
71 } 47 }
72 48
73 49
74 /*------------------------------------------------------------------ 50 /*------------------------------------------------------------------
75 Component: Buttons 51 Component: Buttons
76 ------------------------------------------------------------------*/ 52 ------------------------------------------------------------------*/
77 .kd-button { 53 button {
Jamie 2012/03/03 01:38:08 A dedicated button class? My buttons are classy en
78 display: inline-block; 54 min-width: 72px;
79 min-width: 72px;*min-width:70px;/*hello,IE7!*/ 55 border:1px solid #DCDCDC;
80 border:1px solid #DCDCDC; 56 color: #444;
81 border: 1px solid rgba(0,0,0,0.1); 57 font-size: 11px;
82 text-align: center; 58 font-weight: bold;
83 color: #444; 59 height: 27px;
84 font-size: 11px; 60 padding: 0 8px;
85 font-weight: bold; 61 line-height: 27px;
86 height: 27px; 62 -webkit-border-radius:2px;
87 padding: 0 8px; 63 -webkit-transition: all 0.218s;
88 line-height: 27px; 64 background-image: -webkit-gradient(linear, left top, left bottom,
89 -webkit-border-radius:2px; 65 from(#f5f5f5), to(#f1f1f1));
90 -webkit-transition: all 0.218s; 66 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
91 background-color: #f5f5f5;
92 background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5) ,to(#f1f1f1));
93 -webkit-user-select:none;
94 cursor:default;
95 }
96 .kd-button:hover, .kd-button.hover {
97 border: 1px solid #C6C6C6;
98 color: #222;
99 -webkit-transition: all 0.0s;
100 transition: all 0.0s;
101 background-color: #f8f8f8;
102 background-image: -webkit-gradient(linear,left top,left bottom,from(#f8f8f8) ,to(#f1f1f1));
103 -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.1);
104 } 67 }
105 68
106 /* Disabled buttons */ 69 button:hover:not([disabled]) {
Jamie 2012/03/03 01:38:08 I think this is clearer than an explicit rule for
107 .kd-button.disabled, .kd-button.disabled:hover, .kd-button.disabled:active { 70 border: 1px solid #C6C6C6;
108 background: none; 71 color: #222;
109 color: #b8b8b8; 72 -webkit-transition: all 0.0s;
110 border: 1px solid #f3f3f3; 73 transition: all 0.0s;
111 border: 1px solid rgba(0,0,0,0.05); 74 background-color: #f8f8f8;
112 cursor: default; 75 background-image: -webkit-gradient(linear, left top, left bottom,
113 pointer-events: none; 76 from(#f8f8f8), to(#f1f1f1));
114 } 77 -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.1);
115 .kd-button-share.disabled, .kd-button-share.disabled:hover, .kd-button-share.dis abled:active {
116 border: 1px solid #505050;
117 background-color: #666;
118 color: #FFF;
119 opacity: 0.5;
120 filter: alpha(opacity=50);
121 } 78 }
122 79
123 /* Colored Buttons */ 80 /* Colored Buttons */
124 .kd-button-share:focus, .kd-button-share.focus { 81 .kd-button-share {
125 -webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,0.5); 82 border: 1px solid #29691d;
126 } 83 color: #FFF;
127 .kd-button-share:focus, .kd-button-share.focus { 84 text-shadow: 0px 1px rgba(0,0,0,0.1);
128 border-color:#404040; 85 background-image: -webkit-gradient(linear, left top, left bottom,
86 from(#3d9400), to(#398a00));
129 } 87 }
130 88
131 .kd-button-share:focus:hover, .kd-button-share.focus:hover { 89 .kd-button-share:hover:not([disabled]) {
132 -webkit-box-shadow:inset 0 0 0 1px #fff, 0px 1px 1px rgba(0,0,0,0.1); 90 border: 1px solid #404040;
91 color: #FFF;
92 text-shadow: 0px 1px rgba(0,0,0,0.3);
93 border-color: #2D6200;
94 background-image: -webkit-gradient(linear, left top, left bottom,
95 from(#3d9400), to(#368200));
133 } 96 }
134 97
135 .kd-button-share { 98 .kd-button-share:focus {
136 border: 1px solid #505050; 99 border-color:#404040;
137 color: #FFF; 100 -webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,0.5);
138 background-color: #666;
139 background-image: -webkit-gradient(linear,left top,left bottom,from(#777),to (#555));
140 }
141 .kd-button-share:hover {
142 border: 1px solid #404040;
143 color: #FFF;
144 background-color: #555;
145 background-image: -webkit-gradient(linear,left top,left bottom,from(#666),to (#444));
146 }
147 .kd-button-share:active, .kd-button-share:focus:active, .kd-button-share.focus:a ctive {
148 -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
149 } 101 }
150 102
151 .kd-button-share { 103 .kd-button-share:focus:hover {
152 text-shadow: 0px 1px rgba(0,0,0,0.1); 104 -webkit-box-shadow:inset 0 0 0 1px #fff, 0px 1px 1px rgba(0,0,0,0.1);
153 } 105 }
154 .kd-button-share:hover { 106
155 text-shadow: 0px 1px rgba(0,0,0,0.3); 107 .kd-button-share:active, .kd-button-share:focus:active {
108 -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
156 } 109 }
157 110
158 /*------------------------------------------------------------------ 111 /*------------------------------------------------------------------
159 Component: Text Field, Autocomplete 112 Component: Text Field
160 ------------------------------------------------------------------*/ 113 ------------------------------------------------------------------*/
161 input[type=text] { 114 input[type=text] {
162 height: 29px; 115 height: 29px;
163 background-color: #FFF;
164 line-height: 27px; 116 line-height: 27px;
165 padding-left: 8px; 117 padding-left: 8px;
166 color: #333; 118 color: #333;
167 border: 1px solid #d9d9d9; 119 border: 1px solid #d9d9d9;
168 border-top: 1px solid #c0c0c0; 120 border-top: 1px solid #c0c0c0;
169 display: inline-block;
170 vertical-align: top; 121 vertical-align: top;
171 -webkit-box-sizing: border-box;
172 -webkit-border-radius: 1px; 122 -webkit-border-radius: 1px;
173 } 123 }
174 input[type=text]:hover { 124 input[type=text]:hover {
175 border: 1px solid #b9b9b9; 125 border: 1px solid #b9b9b9;
176 border-top: 1px solid #a0a0a0; 126 border-top: 1px solid #a0a0a0;
177 -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); 127 -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
178 } 128 }
179 input[type=text]:focus { 129 input[type=text]:focus {
180 -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3); 130 -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
181 outline: none; 131 outline: none;
182 border: 1px solid #4d90fe; 132 border: 1px solid #4d90fe;
183 } 133 }
184 134
185 /*------------------------------------------------------------------ 135 /*------------------------------------------------------------------
186 Component: Modal Dialog 136 Component: Modal Dialog
187 ------------------------------------------------------------------*/ 137 ------------------------------------------------------------------*/
188 .kd-modaldialog.visible { 138 .kd-modaldialog:not([hidden]) {
Jamie 2012/03/03 01:38:08 modaldialog has the odd dual definition because it
189 opacity: 1.0; 139 opacity: 1.0;
190 -webkit-transform: scale(1.0); 140 -webkit-transform: scale(1.0);
191 }
192 .kd-modaldialog {
193 -webkit-box-shadow: 0 4px 16px rgba(0,0,0,0.2);
194 background: white;
195 outline:1px solid rgba(0,0,0,0.2);/* border:1px solid #CCC;/*THIS IS FOR NON -WEBKIT BROWSERS ONLY - OTHER BROWSERS DO NOT INTERPRET THE OUTLINE STYLE CORREC TLY*/
196 padding:30px 42px;
197 width: 500px;
198 height: auto;
199 overflow: hidden;
200 z-index: 100;
201 opacity: 0.0;
202 -webkit-transform: scale(1.05);
203 -webkit-transition: all 0.218s;
204 } 141 }
205 142
143 .kd-modaldialog {
144 -webkit-box-shadow: 0 4px 16px rgba(0,0,0,0.2);
145 background: white;
146 outline:1px solid rgba(0,0,0,0.2);
147 padding:30px 42px;
148 width: 500px;
149 height: auto;
150 overflow: hidden;
151 z-index: 100;
152 opacity: 0.0;
153 -webkit-transform: scale(1.05);
154 -webkit-transition: all 0.218s;
155 }
156
157 /*------------------------------------------------------------------
158 Component: Scrollbar
159 ------------------------------------------------------------------*/
160
206 ::-webkit-scrollbar { 161 ::-webkit-scrollbar {
207 width: 16px; 162 width: 10px;
208 height: 16px; 163 height: 16px;
209 } 164 }
210 165
211 ::-webkit-scrollbar-button { 166 ::-webkit-scrollbar-button {
212 height: 0px; 167 height: 0px;
213 width: 0px; 168 width: 0px;
214 } 169 }
215 170
216 ::-webkit-scrollbar-thumb { 171 ::-webkit-scrollbar-thumb {
217 min-height: 28px; 172 min-height: 28px;
218 padding-top:100px; 173 padding-top:100px;
219 background-clip:padding-box; 174 background-clip:padding-box;
220 background-color: rgba(0,0,0,0.2); 175 background-color: rgba(0,0,0,0.2);
221 -webkit-box-shadow: inset 1px 1px 0px rgba(0,0,0,0.10), 176 -webkit-box-shadow: inset 1px 1px 0px rgba(0,0,0,0.10),
222 inset 0px -1px 0px rgba(0,0,0,0.07); 177 inset 0px -1px 0px rgba(0,0,0,0.07);
223 } 178 }
224 179
225 ::-webkit-scrollbar-thumb:hover { 180 ::-webkit-scrollbar-thumb:hover {
226 background-color: rgba(0,0,0,0.4); 181 background-color: rgba(0,0,0,0.4);
227 -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.25); 182 -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.25);
228 } 183 }
229 184
230 ::-webkit-scrollbar-thumb:active { 185 ::-webkit-scrollbar-thumb:active {
231 -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35); 186 -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35);
232 background-color: rgba(0,0,0,0.5); 187 background-color: rgba(0,0,0,0.5);
233 } 188 }
234 189
235 ::-webkit-scrollbar-track:hover { 190 ::-webkit-scrollbar-track:hover {
236 background-color:rgba(0,0,0,0.05); 191 background-color:rgba(0,0,0,0.05);
237 -webkit-box-shadow: inset 1px 0px 0px rgba(0,0,0,0.10); 192 -webkit-box-shadow: inset 1px 0px 0px rgba(0,0,0,0.10);
238 } 193 }
239 194
240 ::-webkit-scrollbar-track:active { 195 ::-webkit-scrollbar-track:active {
241 background-color:rgba(0,0,0,0.05); 196 background-color:rgba(0,0,0,0.05);
242 -webkit-box-shadow: inset 1px 0px 0px rgba(0,0,0,0.14), 197 -webkit-box-shadow: inset 1px 0px 0px rgba(0,0,0,0.14),
243 inset -1px -1px 0px rgba(0,0,0,0.07); 198 inset -1px -1px 0px rgba(0,0,0,0.07);
244 } 199 }
245 .kd-button-share.disabled, .kd-button-share.disabled:hover, .kd-button-share.dis abled:active {
246 border-color:#29691d;
247 background-color: #3d9400;
248 }
249 .kd-button-share:focus, .kd-button-share.focus{
250 border-color:#29691d;
251 }
252 .kd-button-share {
253 border-color: #29691d;
254 background-color: #3d9400;
255 background-image: -webkit-gradient(linear,left top,left bottom,from(#3d9400) ,to(#398a00));
256 }
257 .kd-button-share:hover {
258 border-color: #2D6200;
259 background-color: #368200;
260 background-image: -webkit-gradient(linear,left top,left bottom,from(#3d9400) ,to(#368200));
261 }
262 200
263 a { 201 button:active {
264 color: rgb(0, 102, 204);
265 text-decoration: none;
266 }
267
268 body {
269 margin: 0;
270 padding: 20px;
271 direction: __MSG_@@bidi_dir__;
272 }
273
274 button, input {
275 font-family: inherit;
276 font-size: inherit;
277 }
278
279 button {
280 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
281 border: 1px solid #aaa;
282 -webkit-border-radius: 2px;
283 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
284 -webkit-user-select: none;
285 }
286
287 button:hover {
288 background: #ebebeb -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9);
289 border-color: #999;
290 color: #222;
291 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
292 }
293
294 button:active, .toggle-button-active, .toggle-button-active:hover {
295 background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc); 202 background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc);
296 color: #333; 203 color: #333;
297 -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2); 204 -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
298 } 205 }
299 206
300 /* TODO(jamiewalch): Remove the !important tags when the CSS is rationalized */ 207 button[disabled], button[disabled]:hover, button[disabled]:active {
301 button[disabled], .button[disabled]:hover, .button[disabled]:active { 208 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
Jamie 2012/03/03 01:38:08 These dots were a bug.
302 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5) !important; 209 border-color: #aaa;
303 border-color: #aaa !important; 210 color: #888;
304 color: #888 !important; 211 -webkit-box-shadow: none;
305 -webkit-box-shadow: none !important;
306 }
307
308 form {
309 display: inline;
310 } 212 }
311 213
312 h1.icon-label { 214 h1.icon-label {
313 vertical-align: 14px; 215 vertical-align: 14px;
314 margin-bottom: 60px; 216 margin-bottom: 60px;
315 font-size: 28px; 217 font-size: 28px;
316 font-weight: 300; 218 font-weight: 300;
317 color: #aaa; 219 color: #aaa;
318 font-family: "Open sans", "Ariel", sans-serif 220 font-family: "Open sans", "Ariel", sans-serif;
221 line-height: 24px;
222 }
223
224 h2 {
225 font-size: 16px;
226 line-height:24px;
227 font-weight: normal;
228 color: #222;
319 } 229 }
320 230
321 section > h2 { 231 section > h2 {
322 color: #666; 232 color: #666;
323 } 233 }
324 234
325 header { 235 header {
326 display: -webkit-box; 236 display: -webkit-box;
327 width: 100%; 237 width: 100%;
328 } 238 }
(...skipping 12 matching lines...) Expand all
341 width: 690px; 251 width: 690px;
342 margin: 30px auto; 252 margin: 30px auto;
343 border: 1px solid #e5e5e5; 253 border: 1px solid #e5e5e5;
344 background: #f9f9f9; 254 background: #f9f9f9;
345 padding: 20px 30px 20px 30px; 255 padding: 20px 30px 20px 30px;
346 border-radius: 3px; 256 border-radius: 3px;
347 box-shadow: 0 2px 5px rgba(0,0,0,0.07); 257 box-shadow: 0 2px 5px rgba(0,0,0,0.07);
348 } 258 }
349 259
350 260
351 /* Classes */
352
353 .access-code-digit-group { 261 .access-code-digit-group {
354 /* 262 /*
355 Used for each of the four-digit components of the access code as 263 Used for each of the four-digit components of the access code as
356 displayed by the host. 264 displayed by the host.
357 */ 265 */
358 padding: 0px 6px; 266 padding: 0px 6px;
359 } 267 }
360 268
361 .box-spacer { 269 .box-spacer {
362 -webkit-box-flex: 1; 270 -webkit-box-flex: 1;
363 } 271 }
364 272
365 .centered-button { 273 .centered-button {
366 /* 274 /*
367 Used to force buttons to center correctly on Chrome due to a quirk 275 Used to force buttons to center correctly on Chrome due to a quirk
368 with laying out buttons. http://crbug.com/84654 276 with laying out buttons. http://crbug.com/84654
369 277
370 TODO(ajwong): Either fix Chrome layout behavior, or if Chrome is actually 278 TODO(ajwong): Either fix Chrome layout behavior, or if Chrome is actually
371 conforming correctly to the standard, remove this comment. 279 conforming correctly to the standard, remove this comment.
372 */ 280 */
373 text-align: center; 281 text-align: center;
374 } 282 }
375 283
376 .collapsed {
377 opacity: 0;
378 height: 0 !important;
379 }
380
381 .clickable { 284 .clickable {
382 cursor: pointer; 285 cursor: pointer;
383 } 286 }
384 287
385 .selectable { 288 .selectable {
386 -webkit-user-select: text; 289 -webkit-user-select: text;
387 cursor: text; 290 cursor: text;
388 } 291 }
389 292
390 .section-row { 293 .section-row {
391 display: -webkit-box; 294 display: -webkit-box;
392 -webkit-box-align: center; 295 -webkit-box-align: center;
393 padding: 10px 0; 296 padding: 10px 0;
394 border-top: 1px solid #EBEBEB; 297 border-top: 1px solid #EBEBEB;
395 } 298 }
396 299
397 .section-row:first-child { 300 .section-row:first-child {
398 border-top: none; 301 border-top: none;
399 } 302 }
400 303
401 .error-state { 304 .error-state {
402 background-image: url('icon_warning.png'); 305 background-image: url('icon_warning.png');
403 background-repeat: no-repeat; 306 background-repeat: no-repeat;
404 background-position: top __MSG_@@bidi_start_edge__; 307 background-position: top __MSG_@@bidi_start_edge__;
405 padding-__MSG_@@bidi_start_edge__: 30px; 308 padding-__MSG_@@bidi_start_edge__: 30px;
406 padding-top: 5px; 309 padding-top: 5px;
407 color: #900; 310 color: #900;
408 display: inline-block;
409 } 311 }
410 312
411 .expiring { 313 .expiring {
412 color: #900 !important; 314 color: #900 !important;
413 } 315 }
414 316
415 [hidden] {
416 display: none !important;
417 }
418
419
420 .icon-label { 317 .icon-label {
421 display: inline-block; 318 display: inline-block;
422 vertical-align: top; 319 vertical-align: top;
423 margin-__MSG_@@bidi_start_edge__: 10px; 320 margin-__MSG_@@bidi_start_edge__: 10px;
424 } 321 }
425 322
426 .information-box { 323 .information-box {
427 background-color: #f9edbe; 324 background-color: #f9edbe;
428 border: 1px solid #f0c36d; 325 border: 1px solid #f0c36d;
429 -webkit-border-radius: 2px; 326 -webkit-border-radius: 2px;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 .host-list-main-icon { 384 .host-list-main-icon {
488 margin-right: 10px; 385 margin-right: 10px;
489 vertical-align: middle; 386 vertical-align: middle;
490 } 387 }
491 388
492 .host-offline .host-list-label, 389 .host-offline .host-list-label,
493 .host-offline .host-list-main-icon { 390 .host-offline .host-list-main-icon {
494 opacity: 0.5; 391 opacity: 0.5;
495 } 392 }
496 393
497 .kd-button { 394 button {
498 white-space:nowrap; 395 white-space:nowrap;
499 } 396 }
500 397
501 .small-print { 398 .small-print {
502 font-size: 13px; 399 font-size: 13px;
503 color: #AAA; 400 color: #AAA;
504 } 401 }
505 402
506 .waiting:before { 403 .waiting:before {
507 content: url('spinner.gif'); 404 content: url('spinner.gif');
508 position: absolute; 405 position: absolute;
509 left: 0px; 406 left: 0px;
510 top: -3px; 407 top: -3px;
511 } 408 }
512 409
513 .waiting { 410 .waiting {
514 color: rgb(180, 180, 180); 411 color: rgb(180, 180, 180);
515 margin-left: 30px; 412 margin-left: 30px;
516 } 413 }
517 414
518 .waiting-container { 415 .waiting-container {
519 position: relative; 416 position: relative;
520 } 417 }
521 418
522 .space-before { 419 .space-before {
523 margin-top: 30px; 420 margin-top: 30px;
524 } 421 }
525 422
526 /* Ids */ 423
527 #access-code-countdown-container { 424 #access-code-countdown-container {
528 height: 50px; 425 height: 50px;
529 text-align: center; 426 text-align: center;
530 } 427 }
531 428
532 #access-code-display { 429 #access-code-display {
533 margin-top: 50px; 430 margin-top: 50px;
534 color: rgb(0, 0, 0); 431 color: rgb(0, 0, 0);
535 font-weight: bold; 432 font-weight: bold;
536 font-size: 26px; 433 font-size: 26px;
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 line-height: 0; 514 line-height: 0;
618 } 515 }
619 516
620 #top-secondary { 517 #top-secondary {
621 margin-top: 10px 518 margin-top: 10px
622 } 519 }
623 520
624 * { 521 * {
625 box-sizing: border-box; 522 box-sizing: border-box;
626 } 523 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698