moonwalkair 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. data/.document +5 -0
  2. data/.gitignore +21 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +17 -0
  5. data/Rakefile +43 -0
  6. data/VERSION.yml +5 -0
  7. data/bin/moonwalk +5 -0
  8. data/lib/initializer.rb +40 -0
  9. data/lib/moonwalkair/generator/application.rb +36 -0
  10. data/lib/moonwalkair/generator/options.rb +47 -0
  11. data/lib/moonwalkair/generator.rb +125 -0
  12. data/lib/moonwalkair/templates/LICENSE +20 -0
  13. data/lib/moonwalkair/templates/README +7 -0
  14. data/lib/moonwalkair/templates/app/assets/css/jqtouch.css +373 -0
  15. data/lib/moonwalkair/templates/app/assets/css/theme.css +677 -0
  16. data/lib/moonwalkair/templates/app/assets/images/apple/backButton.png +0 -0
  17. data/lib/moonwalkair/templates/app/assets/images/apple/blueButton.png +0 -0
  18. data/lib/moonwalkair/templates/app/assets/images/apple/cancel.png +0 -0
  19. data/lib/moonwalkair/templates/app/assets/images/apple/chevron.png +0 -0
  20. data/lib/moonwalkair/templates/app/assets/images/apple/grayButton.png +0 -0
  21. data/lib/moonwalkair/templates/app/assets/images/apple/listArrowSel.png +0 -0
  22. data/lib/moonwalkair/templates/app/assets/images/apple/listGroup.png +0 -0
  23. data/lib/moonwalkair/templates/app/assets/images/apple/loading.gif +0 -0
  24. data/lib/moonwalkair/templates/app/assets/images/apple/on_off.png +0 -0
  25. data/lib/moonwalkair/templates/app/assets/images/apple/pinstripes.png +0 -0
  26. data/lib/moonwalkair/templates/app/assets/images/apple/selection.png +0 -0
  27. data/lib/moonwalkair/templates/app/assets/images/apple/thumb.png +0 -0
  28. data/lib/moonwalkair/templates/app/assets/images/apple/toggle.png +0 -0
  29. data/lib/moonwalkair/templates/app/assets/images/apple/toggleOn.png +0 -0
  30. data/lib/moonwalkair/templates/app/assets/images/apple/toolButton.png +0 -0
  31. data/lib/moonwalkair/templates/app/assets/images/apple/toolbar.png +0 -0
  32. data/lib/moonwalkair/templates/app/assets/images/apple/whiteButton.png +0 -0
  33. data/lib/moonwalkair/templates/app/assets/images/icons/128.png +0 -0
  34. data/lib/moonwalkair/templates/app/assets/images/icons/16.png +0 -0
  35. data/lib/moonwalkair/templates/app/assets/images/icons/32.png +0 -0
  36. data/lib/moonwalkair/templates/app/assets/images/icons/48.png +0 -0
  37. data/lib/moonwalkair/templates/app/lib/air/AIRAliases.js +233 -0
  38. data/lib/moonwalkair/templates/app/lib/air/AIRIntrospector.js +1949 -0
  39. data/lib/moonwalkair/templates/app/lib/air/AIRLocalizer.js +1325 -0
  40. data/lib/moonwalkair/templates/app/lib/air/AIRMenuBuilder.js +1322 -0
  41. data/lib/moonwalkair/templates/app/lib/air/AIRSourceViewer.js +2933 -0
  42. data/lib/moonwalkair/templates/app/lib/air/airglobal.abc +0 -0
  43. data/lib/moonwalkair/templates/app/lib/air/applicationupdater.swf +0 -0
  44. data/lib/moonwalkair/templates/app/lib/air/applicationupdater_ui.swf +0 -0
  45. data/lib/moonwalkair/templates/app/lib/air/servicemonitor.swf +0 -0
  46. data/lib/moonwalkair/templates/app/lib/jquery.js +4376 -0
  47. data/lib/moonwalkair/templates/app/lib/plugins/jqtouch/jqtouch.js +634 -0
  48. data/lib/moonwalkair/templates/app/lib/plugins/jqtouch/jqtouch.transitions.js +60 -0
  49. data/lib/moonwalkair/templates/app/views/index.html +19 -0
  50. data/lib/moonwalkair/templates/config/boot.rb +15 -0
  51. data/lib/moonwalkair/templates/config/build.yml +9 -0
  52. data/lib/moonwalkair/templates/config/config.yml +2 -0
  53. data/lib/moonwalkair/templates/config/update_config.xml +5 -0
  54. data/lib/moonwalkair/templates/descriptor.xml +122 -0
  55. data/lib/moonwalkair/templates/script/build +51 -0
  56. data/lib/moonwalkair/templates/script/certificate +26 -0
  57. data/lib/moonwalkair/templates/script/run +38 -0
  58. data/lib/moonwalkair.rb +15 -0
  59. data/moonwalkair.gemspec +108 -0
  60. data/spec/moonwalkair_spec.rb +7 -0
  61. data/spec/spec.opts +1 -0
  62. data/spec/spec_helper.rb +9 -0
  63. metadata +127 -0
@@ -0,0 +1,677 @@
1
+ body {
2
+ background: rgb(0,0,0);
3
+ }
4
+
5
+ body > * {
6
+ background: rgb(197,204,211) url(../images/apple/pinstripes.png);
7
+ }
8
+
9
+ h1, h2 {
10
+ font: bold 18px Helvetica;
11
+ text-shadow: rgba(255,255,255,.2) 0 1px 1px;
12
+ color: rgb(76, 86, 108);
13
+ margin: 10px 20px 6px;
14
+ }
15
+
16
+ /* @group Toolbar */
17
+
18
+ .toolbar {
19
+ -webkit-box-sizing: border-box;
20
+ border-bottom: 1px solid #2d3642;
21
+ padding: 10px;
22
+ height: 45px;
23
+ background: url(../images/apple/toolbar.png) #6d84a2 repeat-x;
24
+ position: relative;
25
+ }
26
+
27
+ .black-translucent .toolbar {
28
+ margin-top: 20px;
29
+ }
30
+
31
+ .toolbar > h1 {
32
+ position: absolute;
33
+ overflow: hidden;
34
+ left: 50%;
35
+ top: 10px;
36
+ line-height: 1em;
37
+ margin: 1px 0 0 -75px;
38
+ height: 40px;
39
+ font-size: 20px;
40
+ width: 150px;
41
+ font-weight: bold;
42
+ text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0;
43
+ text-align: center;
44
+ text-overflow: ellipsis;
45
+ white-space: nowrap;
46
+ color: #fff;
47
+ }
48
+
49
+ body.landscape .toolbar > h1 {
50
+ margin-left: -125px;
51
+ width: 250px;
52
+ }
53
+
54
+ .button, .back, .cancel, .add {
55
+ position: absolute;
56
+ overflow: hidden;
57
+ top: 8px;
58
+ right: 6px;
59
+ margin: 0;
60
+ border-width: 0 5px;
61
+ padding: 0 3px;
62
+ width: auto;
63
+ height: 30px;
64
+ line-height: 30px;
65
+ font-family: inherit;
66
+ font-size: 12px;
67
+ font-weight: bold;
68
+ color: #fff;
69
+ text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0;
70
+ text-overflow: ellipsis;
71
+ text-decoration: none;
72
+ white-space: nowrap;
73
+ background: none;
74
+ -webkit-border-image: url(../images/apple/toolButton.png) 0 5 0 5;
75
+ }
76
+
77
+ .button.active, .back.active, .cancel.active, .add.active {
78
+ -webkit-border-image: url(../images/apple/toolButton.png) 0 5 0 5;
79
+ }
80
+
81
+ .blueButton {
82
+ -webkit-border-image: url(../images/apple/blueButton.png) 0 5 0 5;
83
+ border-width: 0 5px;
84
+ }
85
+
86
+ .back {
87
+ left: 6px;
88
+ right: auto;
89
+ padding: 0;
90
+ max-width: 55px;
91
+ border-width: 0 8px 0 14px;
92
+ -webkit-border-image: url(../images/apple/backButton.png) 0 8 0 14;
93
+ }
94
+
95
+ .leftButton, .cancel {
96
+ left: 6px;
97
+ right: auto;
98
+ }
99
+
100
+ .add {
101
+ font-size: 24px;
102
+ line-height: 24px;
103
+ font-weight: bold;
104
+ }
105
+
106
+ .whiteButton,
107
+ .grayButton {
108
+ display: block;
109
+ border-width: 0 12px;
110
+ padding: 10px;
111
+ text-align: center;
112
+ font-size: 20px;
113
+ font-weight: bold;
114
+ text-decoration: inherit;
115
+ color: inherit;
116
+ }
117
+
118
+ .whiteButton {
119
+ -webkit-border-image: url(../images/apple/whiteButton.png) 0 12 0 12;
120
+ text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
121
+ }
122
+
123
+ .grayButton {
124
+ -webkit-border-image: url(../images/apple/grayButton.png) 0 12 0 12;
125
+ color: #FFFFFF;
126
+ }
127
+
128
+ /* @end */
129
+
130
+ /* @group Lists */
131
+
132
+ h1 + ul, h2 + ul, h3 + ul, h4 + ul, h5 + ul, h6 + ul {
133
+ margin-top: 0;
134
+ }
135
+
136
+ ul {
137
+ color: black;
138
+ background: #fff;
139
+ border: 1px solid #B4B4B4;
140
+ font: bold 17px Helvetica;
141
+ padding: 0;
142
+ margin: 15px 10px 17px 10px;
143
+ -webkit-border-radius: 8px;
144
+ }
145
+
146
+ ul li {
147
+ color: #666;
148
+ border-top: 1px solid #B4B4B4;
149
+ list-style-type: none;
150
+ padding: 10px 10px 10px 10px;
151
+ }
152
+
153
+ /* when you have a first LI item on any list */
154
+
155
+ li:first-child, li:first-child a {
156
+ border-top: 0;
157
+ -webkit-border-top-left-radius: 8px;
158
+ -webkit-border-top-right-radius: 8px;
159
+ }
160
+
161
+ li:last-child, li:last-child a {
162
+ -webkit-border-bottom-left-radius: 8px;
163
+ -webkit-border-bottom-right-radius: 8px;
164
+ }
165
+
166
+ /* universal arrows */
167
+
168
+ ul li.arrow {
169
+ background-image: url(../images/apple/chevron.png);
170
+ background-position: right center;
171
+ background-repeat: no-repeat;
172
+ }
173
+
174
+ #plastic ul li.arrow, #metal ul li.arrow {
175
+ background-image: url(../images/chevron_dg.png);
176
+ background-position: right center;
177
+ background-repeat: no-repeat;
178
+ }
179
+
180
+ /* universal links on list */
181
+
182
+ ul li a, li.img a + a {
183
+ color: #000;
184
+ text-decoration: none;
185
+ text-overflow: ellipsis;
186
+ white-space: nowrap;
187
+ overflow: hidden;
188
+ display: block;
189
+ padding: 12px 10px 12px 10px;
190
+ margin: -10px;
191
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
192
+ }
193
+
194
+ ul li a.active {
195
+ background: #194fdb url(../images/apple/selection.png) 0 0 repeat-x;
196
+ color: #fff;
197
+ }
198
+
199
+ ul li a.button {
200
+ background-color: #194fdb;
201
+ color: #fff;
202
+ }
203
+
204
+ ul li.img a + a {
205
+ margin: -10px 10px -20px -5px;
206
+ font-size: 17px;
207
+ font-weight: bold;
208
+ }
209
+
210
+ ul li.img a + a + a {
211
+ font-size: 14px;
212
+ font-weight: normal;
213
+ margin-left: -10px;
214
+ margin-bottom: -10px;
215
+ margin-top: 0;
216
+ }
217
+
218
+ ul li.img a + small + a {
219
+ margin-left: -5px;
220
+ }
221
+
222
+ ul li.img a + small + a + a {
223
+ margin-left: -10px;
224
+ margin-top: -20px;
225
+ margin-bottom: -10px;
226
+ font-size: 14px;
227
+ font-weight: normal;
228
+ }
229
+
230
+ ul li.img a + small + a + a + a {
231
+ margin-left: 0px !important;
232
+ margin-bottom: 0;
233
+ }
234
+
235
+ ul li a + a {
236
+ color: #000;
237
+ font: 14px Helvetica;
238
+ text-overflow: ellipsis;
239
+ white-space: nowrap;
240
+ overflow: hidden;
241
+ display: block;
242
+ margin: 0;
243
+ padding: 0;
244
+ }
245
+
246
+ ul li a + a + a, ul li.img a + a + a + a, ul li.img a + small + a + a + a {
247
+ color: #666;
248
+ font: 13px Helvetica;
249
+ margin: 0;
250
+ text-overflow: ellipsis;
251
+ white-space: nowrap;
252
+ overflow: hidden;
253
+ display: block;
254
+ padding: 0;
255
+ }
256
+
257
+ /*
258
+ @end */
259
+
260
+ /* @group Forms */
261
+
262
+ ul.form li {
263
+ padding: 7px 10px;
264
+ }
265
+
266
+ ul.form li.error {
267
+ border: 2px solid red;
268
+ }
269
+
270
+ ul.form li.error + li.error {
271
+ border-top: 0;
272
+ }
273
+
274
+ ul.form li:hover {
275
+ background: #fff;
276
+ }
277
+
278
+ ul li input[type="text"], ul li input[type="password"], ul li textarea, ul li select {
279
+ color: #777;
280
+ background: #fff url(../.png);
281
+ border: 0;
282
+ font: normal 17px Helvetica;
283
+ padding: 0;
284
+ display: inline-block;
285
+ margin-left: 0px;
286
+ width: 100%;
287
+ -webkit-appearance: textarea;
288
+ }
289
+
290
+ ul li textarea {
291
+ height: 120px;
292
+ padding: 0;
293
+ text-indent: -2px;
294
+ }
295
+
296
+ ul li select {
297
+ text-indent: 0px;
298
+ background: transparent url(../images/apple/chevron.png) no-repeat 103% 3px;
299
+ -webkit-appearance: textfield;
300
+ margin-left: -6px;
301
+ width: 104%;
302
+ }
303
+
304
+ ul li input[type="checkbox"], ul li input[type="radio"] {
305
+ margin: 0;
306
+ color: rgb(50,79,133);
307
+ padding: 10px 10px;
308
+ }
309
+
310
+ ul li input[type="checkbox"]:after, ul li input[type="radio"]:after {
311
+ content: attr(title);
312
+ font: 17px Helvetica;
313
+ display: block;
314
+ width: 246px;
315
+ margin: -12px 0 0 17px;
316
+ }
317
+
318
+ /* @end */
319
+
320
+ /* @group Edge to edge */
321
+
322
+ .edgetoedge h4 {
323
+ color: #fff;
324
+ background: rgb(154,159,170) url(../images/apple/listGroup.png) top left repeat-x;
325
+ border-top: 1px solid rgb(165,177,186);
326
+ text-shadow: #666 0 1px 0;
327
+ margin: 0;
328
+ padding: 2px 10px;
329
+ }
330
+
331
+ .edgetoedge, .metal {
332
+ margin: 0;
333
+ padding: 0;
334
+ background-color: rgb(255,255,255);
335
+ }
336
+
337
+ .edgetoedge ul, .metal ul, .plastic ul {
338
+ -webkit-border-radius: 0;
339
+ margin: 0;
340
+ border-left: 0;
341
+ border-right: 0;
342
+ border-top: 0;
343
+ }
344
+
345
+ .metal ul {
346
+ border-top: 0;
347
+ border-bottom: 0;
348
+ background: rgb(180,180,180);
349
+ }
350
+
351
+ .edgetoedge ul li:first-child, .edgetoedge ul li:first-child a, .edgetoedge ul li:last-child, .edgetoedge ul li:last-child a, .metal ul li:first-child a, .metal ul li:last-child a {
352
+ -webkit-border-radius: 0;
353
+ }
354
+
355
+ .edgetoedge ul li small {
356
+ font-size: 16px;
357
+ line-height: 28px;
358
+ }
359
+
360
+ .edgetoedge li, .metal li {
361
+ -webkit-border-radius: 0;
362
+ }
363
+
364
+ .edgetoedge li em {
365
+ font-weight: normal;
366
+ font-style: normal;
367
+ }
368
+
369
+ .edgetoedge h4 + ul {
370
+ border-top: 1px solid rgb(152,158,164);
371
+ border-bottom: 1px solid rgb(113,125,133);
372
+ }
373
+
374
+ /* @end */
375
+
376
+ /* @group Mini Label */
377
+
378
+ ul li small {
379
+ color: #369;
380
+ font: 17px Helvetica;
381
+ text-align: right;
382
+ text-overflow: ellipsis;
383
+ white-space: nowrap;
384
+ overflow: hidden;
385
+ display: block;
386
+ width: 23%;
387
+ float: right;
388
+ padding: 3px 0px;
389
+ }
390
+
391
+ ul li.arrow small {
392
+ padding: 0 15px;
393
+ }
394
+
395
+ ul li small.counter {
396
+ font-size: 17px !important;
397
+ line-height: 13px !important;
398
+ font-weight: bold;
399
+ background: rgb(154,159,170);
400
+ color: #fff;
401
+ -webkit-border-radius: 11px;
402
+ padding: 4px 10px 5px 10px;
403
+ display: inline !important;
404
+ width: auto;
405
+ margin-top: -22px;
406
+ }
407
+
408
+ ul li.arrow small.counter {
409
+ margin-right: 15px;
410
+ }
411
+
412
+ /* @end */
413
+
414
+ /* @group Plastic */
415
+
416
+ #plastic ul li.arrow, #metal ul li.arrow {
417
+ background-image: url(../images/apple/listArrow.png);
418
+ background-position: right center;
419
+ background-repeat: no-repeat;
420
+ }
421
+
422
+ .edgetoedge ul, .metal ul, .plastic ul {
423
+ -webkit-border-radius: 0;
424
+ margin: 0;
425
+ border-left: 0;
426
+ border-right: 0;
427
+ border-top: 0;
428
+ }
429
+
430
+ .metal ul li {
431
+ border-top: 1px solid rgb(238,238,238);
432
+ border-bottom: 1px solid rgb(156,158,165);
433
+ background: url(../images/bgMetal.png) top left repeat-x;
434
+ font-size: 26px;
435
+ text-shadow: #fff 0 1px 0;
436
+ }
437
+
438
+ .metal ul li a {
439
+ line-height: 26px;
440
+ margin: 0;
441
+ padding: 13px 0;
442
+ }
443
+
444
+ .metal ul li a:hover {
445
+ color: rgb(0,0,0);
446
+ }
447
+
448
+ .metal ul li:hover small {
449
+ color: inherit;
450
+ }
451
+
452
+ .metal ul li a em {
453
+ display: block;
454
+ font-size: 14px;
455
+ font-style: normal;
456
+ color: #444;
457
+ width: 50%;
458
+ line-height: 14px;
459
+ }
460
+
461
+ .metal ul li small {
462
+ float: right;
463
+ position: relative;
464
+ margin-top: 10px;
465
+ font-weight: bold;
466
+ }
467
+
468
+ .metal ul li.arrow a small {
469
+ padding-right: 0;
470
+ line-height: 17px;
471
+ }
472
+
473
+ .metal ul li.arrow {
474
+ background: url(../images/bgMetal.png) top left repeat-x,
475
+ url(../images/chevron_dg.png) right center no-repeat;
476
+ }
477
+
478
+ .plastic {
479
+ margin: 0;
480
+ padding: 0;
481
+ background: rgb(173,173,173);
482
+ }
483
+
484
+ .plastic ul {
485
+ -webkit-border-radius: 0;
486
+ margin: 0;
487
+ border-left: 0;
488
+ border-right: 0;
489
+ border-top: 0;
490
+ background-color: rgb(173,173,173);
491
+ }
492
+
493
+ .plastic ul li {
494
+ -webkit-border-radius: 0;
495
+ border-top: 1px solid rgb(191,191,191);
496
+ border-bottom: 1px solid rgb(157,157,157);
497
+ }
498
+
499
+ .plastic ul li:nth-child(odd) {
500
+ background-color: rgb(152,152,152);
501
+ border-top: 1px solid rgb(181,181,181);
502
+ border-bottom: 1px solid rgb(138,138,138);
503
+ }
504
+
505
+ .plastic ul + p {
506
+ font-size: 11px;
507
+ color: #2f3237;
508
+ text-shadow: none;
509
+ padding: 10px 10px;
510
+ }
511
+
512
+ .plastic ul + p strong {
513
+ font-size: 14px;
514
+ line-height: 18px;
515
+ text-shadow: #fff 0 1px 0;
516
+ }
517
+
518
+ .plastic ul li a {
519
+ text-shadow: rgb(211,211,211) 0 1px 0;
520
+ }
521
+
522
+ .plastic ul li:nth-child(odd) a {
523
+ text-shadow: rgb(191,191,191) 0 1px 0;
524
+ }
525
+
526
+ .plastic ul li small {
527
+ color: #3C3C3C;
528
+ text-shadow: rgb(211,211,211) 0 1px 0;
529
+ font-size: 13px;
530
+ font-weight: bold;
531
+ text-transform: uppercase;
532
+ line-height: 24px;
533
+ }
534
+
535
+ #plastic ul.minibanner, #plastic ul.bigbanner {
536
+ margin: 10px;
537
+ border: 0;
538
+ height: 81px;
539
+ clear: both;
540
+ }
541
+
542
+ #plastic ul.bigbanner {
543
+ height: 140px !important;
544
+ }
545
+
546
+ #plastic ul.minibanner li {
547
+ border: 1px solid rgb(138,138,138);
548
+ background-color: rgb(152,152,152);
549
+ width: 145px;
550
+ height: 81px;
551
+ float: left;
552
+ -webkit-border-radius: 5px;
553
+ padding: 0;
554
+ }
555
+
556
+ #plastic ul.bigbanner li {
557
+ border: 1px solid rgb(138,138,138);
558
+ background-color: rgb(152,152,152);
559
+ width: 296px;
560
+ height: 140px;
561
+ float: left;
562
+ -webkit-border-radius: 5px;
563
+ padding: 0;
564
+ margin-bottom: 4px;
565
+ }
566
+
567
+ #plastic ul.minibanner li:first-child {
568
+ margin-right: 6px;
569
+ }
570
+
571
+ #plastic ul.minibanner li a {
572
+ color: transparent;
573
+ text-shadow: none;
574
+ display: block;
575
+ width: 145px;
576
+ height: 81px;
577
+ }
578
+
579
+ #plastic ul.bigbanner li a {
580
+ color: transparent;
581
+ text-shadow: none;
582
+ display: block;
583
+ width: 296px;
584
+ height: 145px;
585
+ }
586
+
587
+ /* @end */
588
+
589
+ /* @group Individual */
590
+
591
+ ul.individual {
592
+ border: 0;
593
+ background: none;
594
+ clear: both;
595
+ overflow: hidden;
596
+ }
597
+
598
+ ul.individual li {
599
+ color: rgb(183,190,205);
600
+ background: white;
601
+ border: 1px solid rgb(180,180,180);
602
+ font-size: 14px;
603
+ text-align: center;
604
+ -webkit-border-radius: 8px;
605
+ -webkit-box-sizing: border-box;
606
+ width: 48%;
607
+ float: left;
608
+ display: block;
609
+ padding: 11px 10px 14px 10px;
610
+ }
611
+
612
+ ul.individual li + li {
613
+ float: right;
614
+ }
615
+
616
+ ul.individual li a {
617
+ color: rgb(50,79,133);
618
+ line-height: 16px;
619
+ margin: -11px -10px -14px -10px;
620
+ padding: 11px 10px 14px 10px;
621
+ -webkit-border-radius: 8px;
622
+ }
623
+
624
+ ul.individual li a:hover {
625
+ color: #fff;
626
+ background: #36c;
627
+ }
628
+
629
+ /* @end */
630
+
631
+ /* @group Toggle */
632
+
633
+
634
+ .toggle {
635
+ width: 94px;
636
+ position: relative;
637
+ height: 27px;
638
+ display: block;
639
+ overflow: hidden;
640
+ float: right;
641
+ }
642
+
643
+ .toggle input[type="checkbox"]:checked {
644
+ left: 0px;
645
+ }
646
+
647
+ .toggle input[type="checkbox"] {
648
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
649
+ margin: 0;
650
+ -webkit-border-radius: 5px;
651
+ background: #fff url(../images/apple/on_off.png) 0 0 no-repeat;
652
+ height: 27px;
653
+ overflow: hidden;
654
+ width: 149px;
655
+ border: 0;
656
+ -webkit-appearance: textarea;
657
+ background-color: transparent;
658
+ -webkit-transition: left .15s;
659
+ position: absolute;
660
+ top: 0;
661
+ left: -55px;
662
+ }
663
+ /* @end */
664
+
665
+
666
+
667
+ .info {
668
+ background: #dce1eb;
669
+ font-size: 12px;
670
+ line-height: 16px;
671
+ text-align: center;
672
+ text-shadow: rgba(255,255,255,.8) 0 1px 0;
673
+ color: rgb(76, 86, 108);
674
+ padding: 15px;
675
+ border-top: 1px solid rgba(76, 86, 108, .3);
676
+ font-weight: bold;
677
+ }