boconnect_theme 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. data/.gitignore +1 -0
  2. data/README.md +22 -0
  3. data/app/assets/images/banner.png +0 -0
  4. data/app/assets/images/bg-button.png +0 -0
  5. data/app/assets/images/bobags.png +0 -0
  6. data/app/assets/images/body-back.png +0 -0
  7. data/app/assets/images/bottom_shine.png +0 -0
  8. data/app/assets/images/buttons/bg-button-hover.png +0 -0
  9. data/app/assets/images/buttons/bg-button-pressed.png +0 -0
  10. data/app/assets/images/buttons/bg-button.gif +0 -0
  11. data/app/assets/images/buttons/bg-button.png +0 -0
  12. data/app/assets/images/buttons/left_01.png +0 -0
  13. data/app/assets/images/buttons/left_01_small.png +0 -0
  14. data/app/assets/images/buttons/right_01.png +0 -0
  15. data/app/assets/images/buttons/right_01_small.png +0 -0
  16. data/app/assets/images/cart-empty.png +0 -0
  17. data/app/assets/images/cart-empty_x32.png +0 -0
  18. data/app/assets/images/cart-full.png +0 -0
  19. data/app/assets/images/cart-full_x32.png +0 -0
  20. data/app/assets/images/cart_empty.png +0 -0
  21. data/app/assets/images/cart_empty_hover.png +0 -0
  22. data/app/assets/images/facebook.png +0 -0
  23. data/app/assets/images/fundo_bb.png +0 -0
  24. data/app/assets/images/fundo_header_bb.png +0 -0
  25. data/app/assets/images/logo_boconnect.png +0 -0
  26. data/app/assets/images/menu-current.png +0 -0
  27. data/app/assets/images/menu-hover.png +0 -0
  28. data/app/assets/images/promo.png +0 -0
  29. data/app/assets/images/shadow_top.png +0 -0
  30. data/app/assets/images/step-progress/completed-completed.gif +0 -0
  31. data/app/assets/images/step-progress/completed-current.gif +0 -0
  32. data/app/assets/images/step-progress/completed-first.gif +0 -0
  33. data/app/assets/images/step-progress/current-first.gif +0 -0
  34. data/app/assets/images/step-progress/current-incomplete.gif +0 -0
  35. data/app/assets/images/step-progress/current-right.gif +0 -0
  36. data/app/assets/images/step-progress/incomplete-incomplete.gif +0 -0
  37. data/app/assets/images/step-progress/incomplete-right.gif +0 -0
  38. data/app/assets/images/steps/1.png +0 -0
  39. data/app/assets/images/steps/1_small.png +0 -0
  40. data/app/assets/images/steps/2.png +0 -0
  41. data/app/assets/images/steps/2_small.png +0 -0
  42. data/app/assets/images/steps/3.png +0 -0
  43. data/app/assets/images/steps/3_small.png +0 -0
  44. data/app/assets/images/steps/4.png +0 -0
  45. data/app/assets/images/steps/4_small.png +0 -0
  46. data/app/assets/images/steps/5.png +0 -0
  47. data/app/assets/images/steps/5_small.png +0 -0
  48. data/app/assets/images/steps/6.png +0 -0
  49. data/app/assets/images/steps/6_small.png +0 -0
  50. data/app/assets/images/twitter.png +0 -0
  51. data/app/assets/images/wrapper-back-2.png +0 -0
  52. data/app/assets/images/wrapper-back.png +0 -0
  53. data/app/assets/stylesheets/store/basic.css.scss +23 -0
  54. data/app/assets/stylesheets/store/checkout.css.scss +166 -0
  55. data/app/assets/stylesheets/store/colors.css.scss +7 -0
  56. data/app/assets/stylesheets/store/flash_notices.css.scss +36 -0
  57. data/app/assets/stylesheets/store/forms.css.scss +100 -0
  58. data/app/assets/stylesheets/store/headers_and_footers.css.scss +21 -0
  59. data/app/assets/stylesheets/store/links.css.scss +10 -0
  60. data/app/assets/stylesheets/store/lists.css.scss +33 -0
  61. data/app/assets/stylesheets/store/navigation.css.scss +93 -0
  62. data/app/assets/stylesheets/store/paragraphs.css.scss +3 -0
  63. data/app/assets/stylesheets/store/products.css.scss +149 -0
  64. data/app/assets/stylesheets/store/reset.css.scss +214 -0
  65. data/app/assets/stylesheets/store/screen.css.scss +773 -0
  66. data/app/assets/stylesheets/store/tables.css.scss +36 -0
  67. data/app/overrides/add_class_to_footer.rb +4 -0
  68. data/app/overrides/add_class_to_header.rb +4 -0
  69. data/app/overrides/add_class_to_link_to_cart.rb +4 -0
  70. data/app/overrides/add_class_to_wrapper.rb +4 -0
  71. data/app/overrides/add_dimensions_to_bag_exibition.rb +7 -0
  72. data/app/overrides/insert_banner.rb +4 -0
  73. data/app/overrides/insert_footer.rb +16 -0
  74. data/app/overrides/insert_menu.rb +13 -0
  75. data/app/overrides/insert_pagination_bar.rb +4 -0
  76. data/app/overrides/insert_promocao.rb +4 -0
  77. data/app/overrides/insert_search.rb +5 -0
  78. data/app/overrides/insert_title_sidebar.rb +5 -0
  79. data/app/overrides/remove_class_breadcrumbs.rb +4 -0
  80. data/app/overrides/remove_class_footer-left.rb +3 -0
  81. data/app/overrides/remove_class_footer-right.rb +3 -0
  82. data/app/overrides/remove_search_from_header.rb +4 -0
  83. data/app/overrides/replace_class_to_logo.rb +4 -0
  84. data/app/overrides/tweak_product_list_item.rb +11 -0
  85. data/boconnect_theme.gemspec +16 -0
  86. data/lib/boconnect_theme.rb +16 -0
  87. metadata +131 -0
@@ -0,0 +1,773 @@
1
+ @import 'basic';
2
+ @import 'checkout';
3
+ @import 'colors';
4
+ @import 'flash_notices';
5
+ @import 'forms';
6
+ @import 'headers_and_footers';
7
+ @import 'links';
8
+ @import 'lists';
9
+ @import 'navigation';
10
+ @import 'paragraphs';
11
+ @import 'products';
12
+ @import 'reset';
13
+ @import 'tables';
14
+
15
+ a {
16
+ text-decoration: underline;
17
+ color: #2e6ab1;
18
+ }
19
+ div#checkout #checkout_form_address #billing label.error {
20
+ color: red;
21
+ float: left;
22
+ text-align: left;
23
+ display: inline-block;
24
+ top: 0px;
25
+ font-size: 11px;
26
+ border: none;
27
+ padding: 0px;
28
+ width: auto;
29
+ }
30
+ div#checkout #checkout_form_address #shipping label.error {
31
+ color: red;
32
+ float: left;
33
+ text-align: left;
34
+ display: inline-block;
35
+ top: 0px;
36
+ font-size: 11px;
37
+ border: none;
38
+ padding: 0px;
39
+ width: auto;
40
+ }
41
+ fieldset { margin-bottom: 1em; }
42
+ legend {
43
+ font-size: 150%;
44
+ font-weight: bold;
45
+ margin-bottom: 0.5em;
46
+ }
47
+ .no_margin_or_padding {
48
+ margin: 0;
49
+ padding: 0;
50
+ }
51
+ .leftie {
52
+ float: left;
53
+ width: 49%;
54
+ }
55
+ .rightie {
56
+ float: right;
57
+ width: 49%;
58
+ }
59
+ .clearfix {
60
+ overflow: hidden;
61
+ display: inline-block;
62
+ }
63
+ .clearfix { display: block; }
64
+ .nowrap { white-space: nowrap; }
65
+ .no-bullets { list-style: none; }
66
+ .inline-list {
67
+ list-style-type: none;
68
+ margin: 0px;
69
+ padding: 0px;
70
+ display: inline;
71
+ }
72
+ .inline-list li {
73
+ margin: 0px;
74
+ padding: 0px;
75
+ display: inline;
76
+ }
77
+ .colborder {
78
+ padding-right: 24px;
79
+ margin-right: 25px;
80
+ border-right: 1px solid #eeeeee;
81
+ }
82
+ body {
83
+ background-color: #eee
84
+ }
85
+ .body_old {
86
+ margin-top: 10px;
87
+ background: #ffffff url(/assets/body-back.png) top left repeat-x;
88
+ }
89
+ div.left {
90
+ float: left;
91
+ width: 49%;
92
+ }
93
+ div.right {
94
+ float: right;
95
+ width: 49%;
96
+ }
97
+ a { outline: none; }
98
+
99
+ #wrapper {
100
+ padding: 25px 20px 20px;
101
+ min-height: 420px;
102
+ position: relative;
103
+ }
104
+
105
+ #wrapper_old {
106
+ background: transparent url(/assets/wrapper-back.png) top center no-repeat;
107
+ padding: 25px 20px 20px;
108
+ min-height: 420px;
109
+ position: relative;
110
+ }
111
+ body.two-col #wrapper_old { background-image: url(/assets/wrapper-back-2.png); }
112
+
113
+ .container {
114
+ width: 960px;
115
+ margin: 0 auto;
116
+ overflow: hidden;
117
+ display: block;
118
+ }
119
+
120
+ #sidebar {
121
+ position:relative;
122
+ -moz-border-radius: 10px;
123
+ -webkit-border-radius: 10px;
124
+ -o-border-radius: 10px;
125
+ border-radius: 10px;
126
+ background-image:url(/assets/fundo_bb.png); ;
127
+ background-color: #fbf7f4;
128
+ display: inline;
129
+ float: left;
130
+ width: 150px;
131
+ min-height: 100px;
132
+ margin-right: 10px;
133
+ padding: 10px;
134
+ margin-right: 25px;
135
+ }
136
+
137
+
138
+ #banner {
139
+ position:absolute;
140
+ bottom: -280px;
141
+ left: 0px;
142
+ height: 246px;
143
+ }
144
+ #sidebar h3 { margin-bottom: 0.5em; }
145
+ body.one-col #content {
146
+ display: inline;
147
+ float: left;
148
+ width: 960px;
149
+ }
150
+ body.two-col #content {
151
+ display: inline;
152
+ float: left;
153
+ width: 714px;
154
+ background-color: #fbf7f4;
155
+ padding: 10px 0 10px 10px;
156
+ -moz-border-radius: 10px;
157
+ -webkit-border-radius: 10px;
158
+ -o-border-radius: 10px;
159
+ border-radius: 10px;
160
+
161
+ }
162
+ #header {
163
+ position: relative;
164
+ color: #2e6ab1;
165
+ clear: both;
166
+ height: 145px;
167
+ }
168
+ #header a { color: #2e6ab1; }
169
+ #header a:hover { color: #eeeeee; }
170
+ #footer {
171
+ padding-top: 2em;
172
+ clear: both;
173
+ }
174
+ h1 { font-size: 2.5em; }
175
+ .form-buttons, .clear { clear: both; }
176
+ input.title { width: auto; }
177
+ p.follow-all {
178
+ font-size: 1.3em;
179
+ text-align: center;
180
+ display: block;
181
+ }
182
+ p img {
183
+ float: left;
184
+ margin-right: 5px;
185
+ vertical-align: middle;
186
+ }
187
+ .taxons-list {
188
+ list-style: none;
189
+ margin: 0 0 1.5em -15px;
190
+ }
191
+ .taxons-list li { margin: 0; }
192
+ .taxons-list li a {
193
+ cursor: pointer !important;
194
+ text-decoration: none;
195
+ color: #333333;
196
+ display: block;
197
+ line-height: 1.5em;
198
+ padding-left: 20px;
199
+ width: 170px;
200
+ white-space: nowrap;
201
+ overflow: hidden;
202
+ }
203
+ .taxons-list li a:hover { text-decoration:underline;}
204
+ .taxons-list li.current a {
205
+ color: #ec008c;
206
+ }
207
+ .taxons-list li.current a.root { width: 183px; }
208
+ .taxons-list a.root {
209
+ color: #222222;
210
+ font-size: 1.5em;
211
+ text-indent: -5px;
212
+ line-height: 2.2em;
213
+ }
214
+ #breadcrumbs { margin-bottom: 1em; }
215
+ #breadcrumbs ul {
216
+ list-style-type: none;
217
+ margin: 0px;
218
+ padding: 0px;
219
+ display: inline;
220
+ margin: 0;
221
+ padding: 0;
222
+ overflow: auto;
223
+ }
224
+ #breadcrumbs ul li {
225
+ margin: 0px;
226
+ padding: 0px;
227
+ display: inline;
228
+ }
229
+ #breadcrumbs ul li {
230
+ line-height: 20px;
231
+ color: #666666;
232
+ }
233
+ #breadcrumbs ul li a {
234
+ text-decoration: none;
235
+ padding: 5px 7px;
236
+ color: #666666;
237
+ }
238
+ #breadcrumbs ul li span {
239
+ text-decoration: none;
240
+ padding: 5px 7px;
241
+ color: #666666;
242
+ }
243
+ #breadcrumbs ul li span { color: #333333; }
244
+ div#login-bar { display: inline; }
245
+ ul#language-bar {
246
+ list-style-type: none;
247
+ margin: 0px;
248
+ padding: 0px;
249
+ display: inline;
250
+ }
251
+ ul#language-bar li {
252
+ margin: 0px;
253
+ padding: 0px;
254
+ display: inline;
255
+ }
256
+ ul#language-bar strong { font-weight: normal; }
257
+ ul#nav-bar {
258
+ line-height: 50px;
259
+ float: right;
260
+ clear: both;
261
+ font-size: 1.2em;
262
+ list-style: none;
263
+ margin: 0;
264
+ padding: 0;
265
+ }
266
+ ul#nav-bar li {
267
+ float: left;
268
+ margin-left: 1em;
269
+ }
270
+ ul#nav-bar li.cart-indicator a {
271
+ padding-right: 40px;
272
+
273
+ background: transparent url(/assets/cart_empty.png) center right no-repeat;
274
+ display: block;
275
+ }
276
+
277
+ ul#nav-bar li.cart-indicator a:hover {
278
+ background: transparent url(/assets/cart_empty_hover.png) center right no-repeat;
279
+ display: block;
280
+
281
+ }
282
+ ul#nav-bar li.cart-indicator a.full { background-image: url(/assets/cart-full_x32.png); }
283
+ .pagination {
284
+ padding-top: 10px;
285
+ text-align: right;
286
+ }
287
+ .pagination a.page {
288
+ padding: 0px 5px;
289
+ margin: 0px 3px;
290
+ }
291
+ .pagination span.page {
292
+ padding: 0px 5px;
293
+ margin: 0px 3px;
294
+ }
295
+ .pagination a.page {
296
+ text-decoration: none;
297
+ border: 1px solid #9aafe5;
298
+ color: #2e6ab1;
299
+ }
300
+ .pagination a.page:hover {
301
+ border: 1px solid #2b66a5;
302
+ color: #000000;
303
+ }
304
+ .pagination a.page:active {
305
+ border: 1px solid #2b66a5;
306
+ color: #000000;
307
+ }
308
+ .pagination a.next_page { font-weight: bold; }
309
+ .pagination span.disabled_page {
310
+ border: 1px solid #929292;
311
+ color: #929292;
312
+ }
313
+ .pagination span.current_page {
314
+ font-weight: bold;
315
+ border: 1px solid;
316
+ border-color: #162f54;
317
+ background-color: #2e6ab1;
318
+ color: #ffffff;
319
+ }
320
+ .flash {
321
+ -moz-border-radius: 5px;
322
+ -webkit-border-radius: 5px;
323
+ border-radius: 5px;
324
+ font-size: 1.3em;
325
+ margin-bottom: 1em;
326
+ padding: 0.8em;
327
+ }
328
+ .flash.notice {
329
+ background: #ccddff url(/assets/shadow_top.png) 0px -50px repeat-x;
330
+ color: #556699;
331
+ border: 1px solid #99aacc;
332
+ }
333
+ .flash.errors {
334
+ background: #f4b4b4 url(/assets/shadow_top.png) 0px -50px repeat-x;
335
+ color: #000000;
336
+ border: 1px solid #000000;
337
+ }
338
+ .formError {
339
+ font-size: 1.3em;
340
+ margin-bottom: 1em;
341
+ padding: 0.8em;
342
+ -moz-border-radius: 5px;
343
+ -webkit-border-radius: 5px;
344
+ border-radius: 5px;
345
+ background: #f4b4b4 url(/assets/shadow_top.png) 0px -50px repeat-x;
346
+ color: #000000;
347
+ border: 1px solid #000000;
348
+ }
349
+ .formError p { margin: 0px; }
350
+ .formError ul { margin-bottom: 0px; }
351
+ .formError h2 {
352
+ font-weight: bold;
353
+ font-size: 1em;
354
+ margin: 0px;
355
+ }
356
+ .errorExplanation {
357
+ font-size: 1.3em;
358
+ margin-bottom: 1em;
359
+ padding: 0.8em;
360
+ -moz-border-radius: 5px;
361
+ -webkit-border-radius: 5px;
362
+ border-radius: 5px;
363
+ background: #f4b4b4 url(/assets/shadow_top.png) 0px -50px repeat-x;
364
+ color: #000000;
365
+ border: 1px solid #000000;
366
+ }
367
+ .errorExplanation p { margin: 0px; }
368
+ .errorExplanation ul { margin-bottom: 0px; }
369
+ .errorExplanation h2 {
370
+ font-weight: bold;
371
+ font-size: 1em;
372
+ margin: 0px;
373
+ }
374
+ .fieldWithErrors { clear: none; }
375
+ button, a.button, input.button {
376
+ -moz-border-radius: 0.3em;
377
+ -webkit-border-radius: 0.3em;
378
+ border-radius: 0.3em;
379
+ background: #efefef url(/assets/buttons/bg-button.png) center left repeat-x !important;
380
+ border-style: solid;
381
+ border-width: 1px !important;
382
+ border-color: #dddddd #999999 #999999 #dddddd !important;
383
+ -moz-outline-radius: 0.3em;
384
+ color: #111111;
385
+ display: inline-block;
386
+ font-family: Helvetica Neue, Helvetica, Arial, Sans-serif;
387
+ font-size: 1.1em !important;
388
+ font-size-adjust: none;
389
+ font-stretch: normal;
390
+ font-style: normal;
391
+ font-variant: normal;
392
+ font-weight: normal;
393
+ line-height: 1.2em;
394
+ margin: 0px;
395
+ overflow: visible;
396
+ padding: 10px 17px;
397
+ text-decoration: none;
398
+ text-transform: lowercase;
399
+ width: auto;
400
+ height: auto;
401
+ cursor: pointer;
402
+ }
403
+ button.primary, a.button.primary, input.button.primary {
404
+ font-weight: bold;
405
+ color: #000000;
406
+ }
407
+ button:hover { background-image: url(/assets/buttons/bg-button-hover.png) !important; }
408
+ a.button:hover { background-image: url(/assets/buttons/bg-button-hover.png) !important; }
409
+ input.button:hover { background-image: url(/assets/buttons/bg-button-hover.png) !important; }
410
+ button.large, a.button.large, input.button.large {
411
+ -moz-border-radius: 0.3em;
412
+ -webkit-border-radius: 0.3em;
413
+ border-radius: 0.3em;
414
+ font-size: 1.4em !important;
415
+ line-height: 1.4em;
416
+ }
417
+ button.small, a.button.small, input.button.small {
418
+ -moz-border-radius: 4px;
419
+ -webkit-border-radius: 4px;
420
+ border-radius: 4px;
421
+ font-size: 0.9em;
422
+ line-height: 1.4em;
423
+ padding: 5px 10px;
424
+ }
425
+ button.small img { margin: 0 3px 0 0 !important; }
426
+ a.button.small img { margin: 0 3px 0 0 !important; }
427
+ input.button.small img { margin: 0 3px 0 0 !important; }
428
+ button.update img { margin-right: 7px; }
429
+ button.checkout img { margin-right: 7px; }
430
+ a.button.update img { margin-right: 7px; }
431
+ a.button.checkout img { margin-right: 7px; }
432
+ input.button.update img { margin-right: 7px; }
433
+ input.button.checkout img { margin-right: 7px; }
434
+ button img { vertical-align: middle; }
435
+ a.button img { vertical-align: middle; }
436
+ input.button img { vertical-align: middle; }
437
+ button:focus { outline: none; }
438
+ a.button:focus { outline: none; }
439
+ input.button:focus { outline: none; }
440
+ button::-moz-focus-inner {
441
+ padding: 0px;
442
+ border: none;
443
+ }
444
+ p a.button img { margin: 0 5px 0 0; }
445
+ p button img { margin: 0 5px 0 0; }
446
+ .prices { font-weight: bold; }
447
+ .prices #product-details .prices { font-size: 16px; }
448
+ .price.selling { color: #8a5740; }
449
+ #product-details .price.selling { font-size: 16px; }
450
+ dl#product-price dd{
451
+ margin-left: 0;
452
+ }
453
+
454
+ dl#product-price dd span.price{
455
+ font-weight: bold;
456
+ }
457
+ .price.diff {
458
+ font-style: italic;
459
+ font-weight: normal;
460
+ color: #666666;
461
+ }
462
+ .product-listing {
463
+ list-style: none;
464
+ margin: 0px 0px 0px 0px;
465
+ padding: 0px;
466
+ }
467
+ .product-listing li {
468
+ -moz-border-radius: 10px;
469
+ -webkit-border-radius: 10px;
470
+ -o-border-radius: 10px;
471
+ border-radius: 10px;
472
+ background-color: #fff;
473
+ height: 180px;
474
+ width: 140px;
475
+ text-align: center;
476
+ float: left;
477
+ margin: 8px;
478
+ padding: 10px;
479
+ position: relative;
480
+ }
481
+ .product-listing li a {
482
+ display: block;
483
+ text-decoration: none;
484
+ color: #111111;
485
+ }
486
+ .product-listing li a.info {
487
+ position: absolute;
488
+ bottom: 0px;
489
+ right: 0px;
490
+ padding: 5px;
491
+ width: 150px;
492
+ min-height: 60px;
493
+ font-size: 14px;
494
+
495
+ }
496
+ .product-listing li a.info span { display: block; }
497
+ .product-listing li:hover a.info {
498
+ color: #000;
499
+ }
500
+ ul.thumbnails {
501
+ margin: 0;
502
+ padding: 0;
503
+ list-style: none;
504
+ }
505
+ ul.thumbnails li {
506
+ float: left;
507
+ margin-right: 5px;
508
+ padding: 3px;
509
+ border: 1px solid #ffffff;
510
+ min-height: 50px;
511
+ width: 50px;
512
+ position: relative;
513
+ }
514
+ ul.thumbnails li img {
515
+ position: absolute;
516
+ top: 0;
517
+ bottom: 0;
518
+ left: 0;
519
+ right: 0;
520
+ margin: auto;
521
+ }
522
+ ul.thumbnails li:hover { border-color: #cccccc; }
523
+ ul.thumbnails li.selected { border-color: #999999; }
524
+ #product-variants { margin-bottom: 1em; }
525
+ #product-variants ul {
526
+ list-style: none;
527
+ margin: 0;
528
+ padding: 0;
529
+ }
530
+ #product-images {
531
+ display: inline;
532
+ float: left;
533
+ width: 270px;
534
+ margin-right: 10px;
535
+ }
536
+ #product-images h4 {
537
+ padding: 6px 0px;
538
+ margin: 0px;
539
+ font-weight: bold;
540
+ clear: both;
541
+ }
542
+ #product-images #main-image {
543
+ min-height: 250px;
544
+ position: relative;
545
+ }
546
+ #product-images #main-image img {
547
+ position: absolute;
548
+ top: 0;
549
+ bottom: 0;
550
+ left: 0;
551
+ right: 0;
552
+ margin: auto;
553
+ }
554
+ #product-description {
555
+ display: inline;
556
+ float: left;
557
+ width: 310px;
558
+ margin-right: 10px;
559
+ padding-right: 24px;
560
+ margin-right: 25px;
561
+ border-right: 1px solid #eeeeee;
562
+ }
563
+ #cart-form {
564
+ display: inline;
565
+ float: left;
566
+ width: 270px;
567
+ }
568
+ #taxon-crumbs {
569
+ display: inline;
570
+ float: left;
571
+ width: 960px;
572
+ margin-right: 10px;
573
+ display: block;
574
+ float: right;
575
+ margin-top: 20px;
576
+ width: 300px;
577
+ }
578
+ dl.table-display {
579
+ margin: 0;
580
+ padding: 0;
581
+ }
582
+ dl.table-display dt {
583
+ float: left;
584
+ margin: 0;
585
+ padding: 5px;
586
+ border-top: 1px solid #dddddd;
587
+ }
588
+ dl.table-display dd {
589
+ float: left;
590
+ margin: 0;
591
+ padding: 5px;
592
+ border-top: 1px solid #dddddd;
593
+ }
594
+ dl.table-display dt { width: 100px; }
595
+ dl.table-display dd { width: 180px; }
596
+ div#subtotal {
597
+ float: right;
598
+ width: 49%;
599
+ width: auto;
600
+ text-align: left;
601
+ }
602
+ table { border-collapse: collapse; }
603
+ table th {
604
+ background: transparent;
605
+ border-bottom: 1px solid #dddddd;
606
+ }
607
+ table#cart tr td {
608
+ border-bottom: 1px solid #dddddd;
609
+ padding: 1em 0;
610
+ }
611
+ table#cart tr#none td { border-bottom: none; }
612
+ table#cart h4 { margin-bottom: 0em; }
613
+ #signup #new-customer {
614
+ display: inline;
615
+ float: left;
616
+ width: 470px;
617
+ margin-right: 10px;
618
+ }
619
+ #signup #new-customer h2 { margin-bottom: 0.25em; }
620
+ #signup #new-customer p { margin-bottom: 10px; }
621
+ #signup #new-customer p input.title {
622
+ padding: 3px;
623
+ margin: 0px;
624
+ }
625
+ #signup #new-customer input[type=checkbox] { top: 0em; }
626
+ #login #existing-customer {
627
+ display: inline;
628
+ float: left;
629
+ width: 470px;
630
+ margin-right: 10px;
631
+ }
632
+ #login #existing-customer h2 { margin-bottom: 0.25em; }
633
+ #login #existing-customer p { margin-bottom: 10px; }
634
+ #login #existing-customer p input.title {
635
+ padding: 3px;
636
+ margin: 0px;
637
+ }
638
+ #login #existing-customer input[type=checkbox] { top: 0em; }
639
+ input.openid_url {
640
+ background: #ffffff url(../images/openid-inputicon.gif) no-repeat scroll 0pt 50%;
641
+ padding-left: 18px;
642
+ border: 1px solid #bbbbbb;
643
+ font-size: 1.5em;
644
+ }
645
+ ol.progress-steps {
646
+ list-style: none;
647
+ margin: 0;
648
+ padding: 0;
649
+ line-height: 1em;
650
+ font-size: 12px;
651
+ }
652
+ ol.progress-steps li {
653
+ margin: 0;
654
+ padding: 0;
655
+ list-style: none;
656
+ display: block;
657
+ float: left;
658
+ color: #999999;
659
+ background-position: top left;
660
+ background-repeat: no-repeat;
661
+ background-image: url(/assets/step-progress/incomplete-incomplete.gif);
662
+ }
663
+ ol.progress-steps li span {
664
+ padding: 6px 14px 7px 24px;
665
+ display: block;
666
+ float: left;
667
+ background-position: top right;
668
+ background-repeat: no-repeat;
669
+ }
670
+ ol.progress-steps li a {
671
+ text-decoration: none;
672
+ color: #333333;
673
+ }
674
+ ol.progress-steps li.current-first span { padding-left: 14px; }
675
+ ol.progress-steps li.completed-first span { padding-left: 14px; }
676
+ ol.progress-steps li.current-first { background-image: url(/assets/step-progress/current-first.gif); }
677
+ ol.progress-steps li.completed-first { background-image: url(/assets/step-progress/completed-first.gif) !important; }
678
+ ol.progress-steps li.current { color: #ffffff; }
679
+ ol.progress-steps li.current-first { color: #ffffff; }
680
+ ol.progress-steps li.current-last { color: #ffffff; }
681
+ ol.progress-steps li.completed { background-image: url(/assets/step-progress/completed-completed.gif); }
682
+ ol.progress-steps li.current { background-image: url(/assets/step-progress/completed-current.gif); }
683
+ ol.progress-steps li.current-last { background-image: url(/assets/step-progress/completed-current.gif); }
684
+ ol.progress-steps li.next { background-image: url(/assets/step-progress/current-incomplete.gif); }
685
+ ol.progress-steps li.next-last { background-image: url(/assets/step-progress/current-incomplete.gif); }
686
+ ol.progress-steps li.last span { background-image: url(/assets/step-progress/incomplete-right.gif); }
687
+ ol.progress-steps li.next-last span { background-image: url(/assets/step-progress/incomplete-right.gif); }
688
+ ol.progress-steps li.current-last span { background-image: url(/assets/step-progress/current-right.gif); }
689
+ div#checkout { position: relative; }
690
+ div#checkout .progress-steps {
691
+ position: absolute;
692
+ top: 0.5em;
693
+ right: 0;
694
+ }
695
+ div#checkout form {
696
+ background-position: top right;
697
+ background-repeat: no-repeat;
698
+ }
699
+ div#checkout #checkout_form_address { background-image: url("../images/steps/2.png"); }
700
+ div#checkout #checkout_form_delivery { background-image: url("../images/steps/3.png"); }
701
+ div#checkout #checkout_form_address #billing label {
702
+ float: left;
703
+ text-align: right;
704
+ }
705
+ div#checkout #checkout_form_address #shipping label {
706
+ float: left;
707
+ text-align: right;
708
+ }
709
+ div#checkout #checkout_form_address #billing input { width: 304px; }
710
+ div#checkout #checkout_form_address #shipping input { width: 304px; }
711
+ div#checkout #checkout_form_address #billing select { width: 304px; }
712
+ div#checkout #checkout_form_address #shipping select { width: 304px; }
713
+ div#checkout #checkout_form_address #billing p.checkbox { padding-left: 200px; }
714
+ div#checkout #checkout_form_address #shipping p.checkbox { padding-left: 0px; }
715
+ div#checkout #checkout_form_address .form-buttons { padding-left: 0px; }
716
+ div#checkout #checkout_form_address #billing p.checkbox label {
717
+ width: auto !important;
718
+ float: none !important;
719
+ }
720
+ div#checkout #checkout_form_address #shipping p.checkbox label {
721
+ width: auto !important;
722
+ float: none !important;
723
+ }
724
+ div#checkout #checkout_form_address #billing p.checkbox input { width: auto !important; }
725
+ div#checkout #checkout_form_address #shipping p.checkbox input { width: auto !important; }
726
+ div#checkout #checkout_form_payment { background-image: url("../images/steps/5.png"); }
727
+ div#checkout #checkout_form_payment select { width: 75px; }
728
+ div#checkout #checkout_form_payment #payment {
729
+ display: inline;
730
+ float: left;
731
+ width: 310px;
732
+ margin-right: 10px;
733
+ }
734
+ div#checkout #checkout_form_payment #order_details {
735
+ display: inline;
736
+ float: left;
737
+ width: 470px;
738
+ margin-right: 10px;
739
+ }
740
+ div#checkout #payment-methods {
741
+ list-style: none;
742
+ display: block;
743
+ padding: 0;
744
+ margin: 0;
745
+ width: 720px;
746
+ }
747
+ div#checkout #payment-methods li {
748
+ display: block;
749
+ display: inline;
750
+ float: left;
751
+ width: 190px;
752
+ margin-right: 10px;
753
+ }
754
+ div#checkout #payment-methods li.last {
755
+ display: inline;
756
+ float: left;
757
+ width: 190px;
758
+ }
759
+ div#checkout #checkout-summary {
760
+ background-color: #c3c9df;
761
+ float: right;
762
+ margin-top: 10px;
763
+ padding: 20px;
764
+ width: 180px;
765
+ }
766
+ div#checkout #checkout-summary {
767
+ background-color: #c3c9df;
768
+ float: right;
769
+ margin-top: 10px;
770
+ padding: 20px;
771
+ width: 180px;
772
+ }
773
+