omniboard_jqtouch 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. data/MIT-LICENSE +19 -0
  2. data/README.rdoc +21 -0
  3. data/lib/omniboard_jqtouch.rb +11 -0
  4. data/lib/public/iphone/404.html +26 -0
  5. data/lib/public/iphone/422.html +26 -0
  6. data/lib/public/iphone/500.html +26 -0
  7. data/lib/public/iphone/favicon.ico +0 -0
  8. data/lib/public/iphone/images/rails.png +0 -0
  9. data/lib/public/iphone/javascripts/application.js +51 -0
  10. data/lib/public/iphone/javascripts/jqtouch.js +634 -0
  11. data/lib/public/iphone/javascripts/jqtouch.min.js +1 -0
  12. data/lib/public/iphone/javascripts/jquery-1.4.3.js +6883 -0
  13. data/lib/public/iphone/robots.txt +5 -0
  14. data/lib/public/iphone/stylesheets/jqtouch.css +373 -0
  15. data/lib/public/iphone/stylesheets/themes/apple/img/backButton.png +0 -0
  16. data/lib/public/iphone/stylesheets/themes/apple/img/blueButton.png +0 -0
  17. data/lib/public/iphone/stylesheets/themes/apple/img/cancel.png +0 -0
  18. data/lib/public/iphone/stylesheets/themes/apple/img/chevron.png +0 -0
  19. data/lib/public/iphone/stylesheets/themes/apple/img/grayButton.png +0 -0
  20. data/lib/public/iphone/stylesheets/themes/apple/img/listArrowSel.png +0 -0
  21. data/lib/public/iphone/stylesheets/themes/apple/img/listGroup.png +0 -0
  22. data/lib/public/iphone/stylesheets/themes/apple/img/loading.gif +0 -0
  23. data/lib/public/iphone/stylesheets/themes/apple/img/on_off.png +0 -0
  24. data/lib/public/iphone/stylesheets/themes/apple/img/pinstripes.png +0 -0
  25. data/lib/public/iphone/stylesheets/themes/apple/img/selection.png +0 -0
  26. data/lib/public/iphone/stylesheets/themes/apple/img/thumb.png +0 -0
  27. data/lib/public/iphone/stylesheets/themes/apple/img/toggle.png +0 -0
  28. data/lib/public/iphone/stylesheets/themes/apple/img/toggleOn.png +0 -0
  29. data/lib/public/iphone/stylesheets/themes/apple/img/toolButton.png +0 -0
  30. data/lib/public/iphone/stylesheets/themes/apple/img/toolbar.png +0 -0
  31. data/lib/public/iphone/stylesheets/themes/apple/img/whiteButton.png +0 -0
  32. data/lib/public/iphone/stylesheets/themes/apple/theme.css +677 -0
  33. data/lib/public/iphone/stylesheets/themes/apple/theme.min.css +1 -0
  34. data/lib/public/iphone/stylesheets/themes/jqt/img/back_button.png +0 -0
  35. data/lib/public/iphone/stylesheets/themes/jqt/img/back_button_clicked.png +0 -0
  36. data/lib/public/iphone/stylesheets/themes/jqt/img/button.png +0 -0
  37. data/lib/public/iphone/stylesheets/themes/jqt/img/button_clicked.png +0 -0
  38. data/lib/public/iphone/stylesheets/themes/jqt/img/chevron.png +0 -0
  39. data/lib/public/iphone/stylesheets/themes/jqt/img/chevron_circle.png +0 -0
  40. data/lib/public/iphone/stylesheets/themes/jqt/img/grayButton.png +0 -0
  41. data/lib/public/iphone/stylesheets/themes/jqt/img/loading.gif +0 -0
  42. data/lib/public/iphone/stylesheets/themes/jqt/img/on_off.png +0 -0
  43. data/lib/public/iphone/stylesheets/themes/jqt/img/rowhead.png +0 -0
  44. data/lib/public/iphone/stylesheets/themes/jqt/img/toggle.png +0 -0
  45. data/lib/public/iphone/stylesheets/themes/jqt/img/toggleOn.png +0 -0
  46. data/lib/public/iphone/stylesheets/themes/jqt/img/toolbar.png +0 -0
  47. data/lib/public/iphone/stylesheets/themes/jqt/img/whiteButton.png +0 -0
  48. data/lib/public/iphone/stylesheets/themes/jqt/theme.css +527 -0
  49. data/lib/public/iphone/stylesheets/themes/jqt/theme.min.css +1 -0
  50. data/lib/views/application.erb +49 -0
  51. metadata +127 -0
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -0,0 +1,373 @@
1
+ * {
2
+ margin: 0;
3
+ padding: 0;
4
+ }
5
+ a {
6
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
7
+ }
8
+
9
+ body {
10
+ overflow-x: hidden;
11
+ -webkit-user-select: none;
12
+ -webkit-text-size-adjust: none;
13
+ font-family: Helvetica;
14
+ -webkit-perspective: 800;
15
+ -webkit-transform-style: preserve-3d;
16
+ }
17
+ .selectable, input, textarea {
18
+ -webkit-user-select: auto;
19
+ }
20
+ body > * {
21
+ -webkit-backface-visibility: hidden;
22
+ -webkit-box-sizing: border-box;
23
+ display: none;
24
+ position: absolute;
25
+ left: 0;
26
+ width: 100%;
27
+ -webkit-transform: translate3d(0,0,0) rotate(0) scale(1);
28
+ min-height: 420px !important;
29
+ }
30
+ body.fullscreen > * {
31
+ min-height: 460px !important;
32
+ }
33
+ body.fullscreen.black-translucent > * {
34
+ min-height: 480px !important;
35
+ }
36
+ body.landscape > * {
37
+ min-height: 320px;
38
+ }
39
+ body > .current {
40
+ display: block !important;
41
+ }
42
+
43
+ .in, .out {
44
+ -webkit-animation-timing-function: ease-in-out;
45
+ -webkit-animation-duration: 350ms;
46
+ }
47
+
48
+ .slide.in {
49
+ -webkit-animation-name: slideinfromright;
50
+ }
51
+
52
+ .slide.out {
53
+ -webkit-animation-name: slideouttoleft;
54
+ }
55
+
56
+ .slide.in.reverse {
57
+ -webkit-animation-name: slideinfromleft;
58
+ }
59
+
60
+ .slide.out.reverse {
61
+ -webkit-animation-name: slideouttoright;
62
+ }
63
+
64
+ @-webkit-keyframes slideinfromright {
65
+ from { -webkit-transform: translateX(100%); }
66
+ to { -webkit-transform: translateX(0); }
67
+ }
68
+
69
+ @-webkit-keyframes slideinfromleft {
70
+ from { -webkit-transform: translateX(-100%); }
71
+ to { -webkit-transform: translateX(0); }
72
+ }
73
+
74
+ @-webkit-keyframes slideouttoleft {
75
+ from { -webkit-transform: translateX(0); }
76
+ to { -webkit-transform: translateX(-100%); }
77
+ }
78
+
79
+ @-webkit-keyframes slideouttoright {
80
+ from { -webkit-transform: translateX(0); }
81
+ to { -webkit-transform: translateX(100%); }
82
+ }
83
+
84
+ @-webkit-keyframes fadein {
85
+ from { opacity: 0; }
86
+ to { opacity: 1; }
87
+ }
88
+
89
+ @-webkit-keyframes fadeout {
90
+ from { opacity: 1; }
91
+ to { opacity: 0; }
92
+ }
93
+
94
+ .fade.in {
95
+ z-index: 10;
96
+ -webkit-animation-name: fadein;
97
+ }
98
+ .fade.out {
99
+ z-index: 0;
100
+ }
101
+
102
+ .dissolve.in {
103
+ -webkit-animation-name: fadein;
104
+ }
105
+
106
+ .dissolve.out {
107
+ -webkit-animation-name: fadeout;
108
+ }
109
+
110
+
111
+
112
+ .flip {
113
+ -webkit-animation-duration: .65s;
114
+ }
115
+
116
+ .flip.in {
117
+ -webkit-animation-name: flipinfromleft;
118
+ }
119
+
120
+ .flip.out {
121
+ -webkit-animation-name: flipouttoleft;
122
+ }
123
+
124
+ /* Shake it all about */
125
+
126
+ .flip.in.reverse {
127
+ -webkit-animation-name: flipinfromright;
128
+ }
129
+
130
+ .flip.out.reverse {
131
+ -webkit-animation-name: flipouttoright;
132
+ }
133
+
134
+ @-webkit-keyframes flipinfromright {
135
+ from { -webkit-transform: rotateY(-180deg) scale(.8); }
136
+ to { -webkit-transform: rotateY(0) scale(1); }
137
+ }
138
+
139
+ @-webkit-keyframes flipinfromleft {
140
+ from { -webkit-transform: rotateY(180deg) scale(.8); }
141
+ to { -webkit-transform: rotateY(0) scale(1); }
142
+ }
143
+
144
+ @-webkit-keyframes flipouttoleft {
145
+ from { -webkit-transform: rotateY(0) scale(1); }
146
+ to { -webkit-transform: rotateY(-180deg) scale(.8); }
147
+ }
148
+
149
+ @-webkit-keyframes flipouttoright {
150
+ from { -webkit-transform: rotateY(0) scale(1); }
151
+ to { -webkit-transform: rotateY(180deg) scale(.8); }
152
+ }
153
+
154
+ .slideup.in {
155
+ -webkit-animation-name: slideup;
156
+ z-index: 10;
157
+ }
158
+
159
+ .slideup.out {
160
+ -webkit-animation-name: dontmove;
161
+ z-index: 0;
162
+ }
163
+
164
+ .slideup.out.reverse {
165
+ z-index: 10;
166
+ -webkit-animation-name: slidedown;
167
+ }
168
+
169
+ .slideup.in.reverse {
170
+ z-index: 0;
171
+ -webkit-animation-name: dontmove;
172
+ }
173
+
174
+
175
+ @-webkit-keyframes slideup {
176
+ from { -webkit-transform: translateY(100%); }
177
+ to { -webkit-transform: translateY(0); }
178
+ }
179
+
180
+ @-webkit-keyframes slidedown {
181
+ from { -webkit-transform: translateY(0); }
182
+ to { -webkit-transform: translateY(100%); }
183
+ }
184
+
185
+
186
+
187
+ /* Hackish, but reliable. */
188
+
189
+ @-webkit-keyframes dontmove {
190
+ from { opacity: 1; }
191
+ to { opacity: 1; }
192
+ }
193
+
194
+ .swap {
195
+ -webkit-transform: perspective(800);
196
+ -webkit-animation-duration: .7s;
197
+ }
198
+ .swap.out {
199
+ -webkit-animation-name: swapouttoleft;
200
+ }
201
+ .swap.in {
202
+ -webkit-animation-name: swapinfromright;
203
+ }
204
+ .swap.out.reverse {
205
+ -webkit-animation-name: swapouttoright;
206
+ }
207
+ .swap.in.reverse {
208
+ -webkit-animation-name: swapinfromleft;
209
+ }
210
+
211
+
212
+ @-webkit-keyframes swapouttoright {
213
+ 0% {
214
+ -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
215
+ -webkit-animation-timing-function: ease-in-out;
216
+ }
217
+ 50% {
218
+ -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
219
+ -webkit-animation-timing-function: ease-in;
220
+ }
221
+ 100% {
222
+ -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
223
+ }
224
+ }
225
+
226
+ @-webkit-keyframes swapouttoleft {
227
+ 0% {
228
+ -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
229
+ -webkit-animation-timing-function: ease-in-out;
230
+ }
231
+ 50% {
232
+ -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
233
+ -webkit-animation-timing-function: ease-in;
234
+ }
235
+ 100% {
236
+ -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
237
+ }
238
+ }
239
+
240
+ @-webkit-keyframes swapinfromright {
241
+ 0% {
242
+ -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
243
+ -webkit-animation-timing-function: ease-out;
244
+ }
245
+ 50% {
246
+ -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
247
+ -webkit-animation-timing-function: ease-in-out;
248
+ }
249
+ 100% {
250
+ -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
251
+ }
252
+ }
253
+
254
+ @-webkit-keyframes swapinfromleft {
255
+ 0% {
256
+ -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
257
+ -webkit-animation-timing-function: ease-out;
258
+ }
259
+ 50% {
260
+ -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
261
+ -webkit-animation-timing-function: ease-in-out;
262
+ }
263
+ 100% {
264
+ -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
265
+ }
266
+ }
267
+
268
+ .cube {
269
+ -webkit-animation-duration: .55s;
270
+ }
271
+
272
+ .cube.in {
273
+ -webkit-animation-name: cubeinfromright;
274
+ -webkit-transform-origin: 0% 50%;
275
+ }
276
+ .cube.out {
277
+ -webkit-animation-name: cubeouttoleft;
278
+ -webkit-transform-origin: 100% 50%;
279
+ }
280
+ .cube.in.reverse {
281
+ -webkit-animation-name: cubeinfromleft;
282
+ -webkit-transform-origin: 100% 50%;
283
+ }
284
+ .cube.out.reverse {
285
+ -webkit-animation-name: cubeouttoright;
286
+ -webkit-transform-origin: 0% 50%;
287
+
288
+ }
289
+
290
+ @-webkit-keyframes cubeinfromleft {
291
+ from {
292
+ -webkit-transform: rotateY(-90deg) translateZ(320px);
293
+ opacity: .5;
294
+ }
295
+ to {
296
+ -webkit-transform: rotateY(0deg) translateZ(0);
297
+ opacity: 1;
298
+ }
299
+ }
300
+ @-webkit-keyframes cubeouttoright {
301
+ from {
302
+ -webkit-transform: rotateY(0deg) translateX(0);
303
+ opacity: 1;
304
+ }
305
+ to {
306
+ -webkit-transform: rotateY(90deg) translateZ(320px);
307
+ opacity: .5;
308
+ }
309
+ }
310
+ @-webkit-keyframes cubeinfromright {
311
+ from {
312
+ -webkit-transform: rotateY(90deg) translateZ(320px);
313
+ opacity: .5;
314
+ }
315
+ to {
316
+ -webkit-transform: rotateY(0deg) translateZ(0);
317
+ opacity: 1;
318
+ }
319
+ }
320
+ @-webkit-keyframes cubeouttoleft {
321
+ from {
322
+ -webkit-transform: rotateY(0deg) translateZ(0);
323
+ opacity: 1;
324
+ }
325
+ to {
326
+ -webkit-transform: rotateY(-90deg) translateZ(320px);
327
+ opacity: .5;
328
+ }
329
+ }
330
+
331
+
332
+
333
+
334
+ .pop {
335
+ -webkit-transform-origin: 50% 50%;
336
+ }
337
+
338
+ .pop.in {
339
+ -webkit-animation-name: popin;
340
+ z-index: 10;
341
+ }
342
+
343
+ .pop.out.reverse {
344
+ -webkit-animation-name: popout;
345
+ z-index: 10;
346
+ }
347
+
348
+ .pop.in.reverse {
349
+ z-index: 0;
350
+ -webkit-animation-name: dontmove;
351
+ }
352
+
353
+ @-webkit-keyframes popin {
354
+ from {
355
+ -webkit-transform: scale(.2);
356
+ opacity: 0;
357
+ }
358
+ to {
359
+ -webkit-transform: scale(1);
360
+ opacity: 1;
361
+ }
362
+ }
363
+
364
+ @-webkit-keyframes popout {
365
+ from {
366
+ -webkit-transform: scale(1);
367
+ opacity: 1;
368
+ }
369
+ to {
370
+ -webkit-transform: scale(.2);
371
+ opacity: 0;
372
+ }
373
+ }
@@ -0,0 +1,677 @@
1
+ body {
2
+ background: rgb(0,0,0);
3
+ }
4
+
5
+ body > * {
6
+ background: rgb(197,204,211) url(img/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(img/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(img/toolButton.png) 0 5 0 5;
75
+ }
76
+
77
+ .button.active, .back.active, .cancel.active, .add.active {
78
+ -webkit-border-image: url(img/toolButton.png) 0 5 0 5;
79
+ }
80
+
81
+ .blueButton {
82
+ -webkit-border-image: url(img/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(img/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(img/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(img/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(img/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(img/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/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(img/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(img/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(img/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
+ }