Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
207 espaco 1
.overview-box-1 {
2
    height: 100%;
3
    .card-header {
4
        padding-bottom: 17px;
5
 
6
        .header-buttons{
7
            > a {
8
                width: 20px;
9
                height: 20px;
10
                @include border-radius(50%);
11
                @include flex();
12
                @include flex-align-center();
13
                @include flex-justify-center();
14
                background-color: rgba(148, 154, 166, 0.1);
15
                border: 1px solid transparent;
16
 
17
                i {
18
                    color: #949aa6;
19
                    font-size: 12px;
20
                    width: 12px;
21
                    @include rotate(45deg);
22
                }
23
 
24
                &:hover {
25
                    border-color: #949aa6;
26
                }
27
            }
28
        }
29
    }
30
 
31
    .overview-content {
32
        @include flex();
33
        @include flex-align-center();
34
        @include flex-justify-between();
35
        padding: 11px 4px 6px 0px;
36
 
37
        .overview-graph {
38
            @include flex();
39
            @include flex-align-end();
40
            > span {
41
                width: 8px;
42
                height: 12px;
43
                display: block;
44
                background-color: #2f8ee5;
45
                margin-left: 4px;
46
                border-radius: 1px;
47
                opacity: 0.4;
48
                cursor: pointer;
49
                position: relative;
50
                @include transition(all $transitionDuration);
51
                z-index: 1;
52
 
53
                &:last-child {
54
                    opacity: 1;
55
                }
56
 
57
                > span {
58
                    font-size: 12px;
59
                    min-width: 6px;
60
                    position: absolute;
61
                    padding: 1px;
62
                    border-radius: 2px;
63
                    background-color: $contentAltBgColor;
64
                    top: -22px;
65
                    left: -4px;
66
                    display: none;
67
                    z-index: 2;
68
                }
69
 
70
                &:hover {
71
                     transform: scale3d(1.1, 1.1, 1);
72
                     opacity: 1;
73
 
74
                     .graph-tooltip {
75
                        display: block;
76
                    }
77
                }
78
            }
79
        }
80
    }
81
 
82
    .overview-footer {
83
        > span {
84
            font-size: 13px;
85
 
86
            i {
87
                color:#00acac;
88
            }
89
            > span {
90
                color:#00acac;
91
                font-weight: 600;
92
            }
93
        }
94
 
95
        &.down {
96
            > span {
97
                i {
98
                    color:#f16383;
99
                }
100
                > span {
101
                    color:#f16383;
102
                }
103
            }
104
        }
105
    }
106
 
107
    &.teal {
108
        .overview-content {
109
            .overview-graph {
110
                > span {
111
                    background-color: #00acac;
112
                }
113
            }
114
        }
115
    }
116
 
117
    &.orange {
118
        .overview-content {
119
            .overview-graph {
120
                > span {
121
                    background-color: #f1b263;
122
                }
123
            }
124
        }
125
    }
126
}
127
 
128
.overview-box-2 {
129
    @include flex();
130
    @include flex-align-center();
131
    @include flex-justify-between();
132
    padding: 32px 12px;
133
 
134
    &.teal {
135
        background-color: #02acac;
136
        i {
137
            color: #02acac;
138
        }
139
    }
140
    &.orange {
141
        background-color: #f1b263;
142
        i {
143
            color: #f1b263;
144
        }
145
    }
146
    &.blue {
147
        background-color: #2f8ee5;
148
        i {
149
            color: #2f8ee5;
150
        }
151
    }
152
    &.pink {
153
        background-color: #f16383;
154
        i {
155
            color: #f16383;
156
        }
157
    }
158
    h6 {
159
        opacity: 0.8;
160
        color: #ffffff;
161
        font-weight: normal;
162
        margin: 0;
163
    }
164
 
165
    h3 {
166
        margin: 2px 0 0 ;
167
        font-weight: normal;
168
        color: #ffffff;
169
    }
170
 
171
    i {
172
        font-size: 42px;
173
        width: 64px;
174
        height: 64px;
175
        @include border-radius(50%);
176
        background-color: $contentBgColor;
177
        @include flex-center();
178
    }
179
}
180
 
181
 
182
 
183
.news {
184
    padding: 0;
185
    @include flex();
186
 
187
    .news-content{
188
        width: 100%;
189
        padding: 12px 16px;
190
        @include flex();
191
        @include flex-justify-between();
192
        flex-direction: column;
193
 
194
        h5 {
195
            font-weight: bold;
196
            line-height: 1.5;
197
            color: $textColor;
198
            margin: 0 0 12px;
199
        }
200
 
201
        > span {
202
            flex-grow: 1;
203
            font-size: 13px;
204
            line-height: 1.54;
205
            color: $textColor;
206
        }
207
 
208
        .news-content-footer {
209
            margin-top: 20px;
210
            > span {
211
                display: block;
212
                margin: 0 0 2px;
213
                font-size: 13px;
214
                line-height: 1.54;
215
                font-weight: normal;
216
                color: $textColor;
217
 
218
                > span {
219
                    font-weight: 600;
220
                    &.category {
221
                        color: $primaryColor;
222
                    }
223
                }
224
            }
225
        }
226
    }
227
 
228
    .news-image{
229
        width: 100%;
230
        background-image: url("\#{resource['poseidon-layout:images/pages/asset-news.png']}");
231
        background-position: center;
232
        background-repeat: no-repeat;
233
        background-size: cover;
234
        border-top-right-radius: 5px;
235
        border-bottom-right-radius: 5px;
236
        min-height: 320px;
237
    }
238
}
239
 
240
.likes {
241
    overflow: auto;
242
    height: 100%;
243
 
244
    .likes-chart {
245
        padding: 12px 8px;
246
        height: calc(100% - 25px);
247
        @include flex();
248
        @include flex-align-center();
249
    }
250
}
251
 
252
.news-feed {
253
    padding: 0 16px;
254
 
255
    .news-feed-card {
256
        padding:16px;
257
        height: 100%;
258
        @include flex();
259
        @include flex-justify-between();
260
        flex-direction: column;
261
 
262
        > i {
263
            font-size: 20px;
264
            color: #ffffff;
265
            width: 32px;
266
            height: 32px;
267
            border-radius: 4px;
268
            background-color: $primaryColor;
269
            @include flex-center();
270
        }
271
 
272
        .title {
273
            display: block;
274
            font-size: 13px;
275
            font-weight: 600;
276
            color: $textColor;
277
            margin: 8px 0 4px;
278
        }
279
 
280
        .news-feed-desc {
281
            display: block;
282
            font-size: 13px;
283
            line-height: 1.54;
284
            color: $textColor;
285
            flex-grow: 1;
286
        }
287
 
288
        a {
289
            margin-top: 8px;
290
            display: block;
291
            font-size: 12px;
292
            font-weight: 600;
293
            color: $textColor;
294
 
295
            > i {
296
                font-size: 13px;
297
                margin-left: 2px;
298
                vertical-align: middle;
299
            }
300
 
301
            &:hover {
302
                text-decoration: underline;
303
            }
304
        }
305
    }
306
}
307
 
308
.timeline {
309
    height: 100%;
310
    > ul {
311
        padding: 0;
312
        margin: 10px 0 20px;
313
        list-style: none;
314
        > li {
315
            @include flex();
316
            @include flex-align-center();
317
            margin-bottom: 32px;
318
 
319
            .time {
320
                min-width: 70px;
321
                opacity: 0.6;
322
                font-size: 13px;
323
                line-height: 1.54;
324
                color: $textColor;
325
                display: block;
326
            }
327
 
328
            .event-icon {
329
                position: relative;
330
                z-index: 1;
331
                @include flex-center();
332
 
333
                &::before {
334
                    content: '';
335
                    width: 2px;
336
                    height: 100px;
337
                    background-color: $dividerColor;
338
                    position: absolute;
339
                    top: 0;
340
                    display: block;
341
                }
342
 
343
                i {
344
                    z-index: 2;
345
                    width: 48px;
346
                    height: 48px;
347
                    @include flex-center();
348
                    @include border-radius(50%);
349
                    margin: 0 12px;
350
                    font-size: 24px;
351
                    color: $contentBgColor;
352
                }
353
            }
354
 
355
 
356
            .event-content {
357
                span {
358
                    display: block;
359
                    font-size: 13px;
360
                    line-height: 1.54;
361
                    color: $textColor;
362
 
363
                    &.event-title {
364
                        font-weight: 600;
365
                        line-height: normal;
366
                    }
367
                }
368
 
369
            }
370
 
371
            &:nth-child(1) {
372
                i {
373
                    background-color: #02acac;
374
                }
375
            }
376
            &:nth-child(2) {
377
                i  {
378
                    background-color: #f1b263;
379
                }
380
                }
381
                &:nth-child(3) {
382
                i  {
383
                    background-color: #f1b263;
384
                }
385
                }
386
 
387
            &:last-child {
388
                margin-bottom: 0;
389
 
390
                .event-icon {
391
                    &::before {
392
                        display: none;
393
                    }
394
                    i  {
395
                        background-color: #2f8ee5;
396
                    }
397
                }
398
            }
399
        }
400
    }
401
}
402
 
403
.chat {
404
    height: 100%;
405
    padding: 0;
406
    @include flex();
407
    @include flex-justify-between();
408
    flex-direction: column;
409
 
410
    .card-header {
411
        padding: 8px 12px 6px;
412
    }
413
 
414
    .chat-messages {
415
        padding: 0 12px;
416
        flex-grow: 1;
417
    }
418
 
419
    .chat-message-row {
420
        padding: 10px 0;
421
 
422
        .chat-message {
423
            @include flex();
424
            @include flex-align-center();
425
            img {
426
                width: 48px;
427
                height: 48px;
428
                border-radius: 6px;
429
            }
430
 
431
            .chat-message-content{
432
                padding: 13px 8px;
433
                box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
434
                border-radius: 6px;
435
                background-color: $contentAltBgColor;
436
                width: 100%;
437
                margin-left: 8px;
438
 
439
                span {
440
                    display: block;
441
                    font-size: 13px;
442
                    color: $textColor;
443
                }
444
            }
445
        }
446
 
447
        .chat-message-footer {
448
            @include flex();
449
            @include flex-align-center();
450
            @include flex-justify-between();
451
            padding: 4px 0 0;
452
 
453
            h6 {
454
                font-size: 14px;
455
                font-weight: 600;
456
                color: $textColor;
457
                margin: 0;
458
            }
459
 
460
            span {
461
                font-size: 13px;
462
                color: $textColor;
463
                opacity: 0.6;
464
            }
465
        }
466
 
467
        &.send {
468
            .chat-message {
469
                flex-direction: row-reverse;
470
                .chat-message-content{
471
                    margin-right: 8px;
472
                    margin-left: 0;
473
                    background-color: rgba($primaryColor, 0.6);
474
                    span {
475
                        display: block;
476
                        font-size: 13px;
477
                        color: #ffffff;
478
                    }
479
                }
480
            }
481
            .chat-message-footer {
482
                flex-direction: row-reverse;
483
            }
484
        }
485
    }
486
 
487
    .chat-input {
488
        border-top: 1px solid $dividerColor;
489
        > input {
490
            width: 100%;
491
            border-radius: 5px;
492
            background-color: $contentBgColor;
493
            border: none;
494
            padding: 12px;
495
        }
496
    }
497
 
498
}
499
 
500
.map {
501
    padding: 0;
502
    @include flex();
503
 
504
    .map-image{
505
        width: 70%;
506
        background-image: url("\#{resource['poseidon-layout:images/pages/asset-maps.png']}");
507
        background-position: center;
508
        background-repeat: no-repeat;
509
        background-size: cover;
510
        border-top-left-radius: 5px;
511
        border-bottom-left-radius: 5px;
512
        min-height: 320px;
513
    }
514
 
515
    .map-content{
516
        width: 30%;
517
        @include flex();
518
 
519
        .map-adjust {
520
            @include flex-center();
521
            padding: 6px;
522
            cursor: pointer;
523
            @include transition(background-color $transitionDuration);
524
 
525
            i {
526
                color: $textSecondaryColor;
527
            }
528
 
529
            &:hover {
530
                background-color: $contentAltBgColor;
531
            }
532
        }
533
 
534
        > ul {
535
            padding: 10px 0 0;
536
            margin: 0;
537
            border-left: 1px solid $dividerColor;
538
            width: 100%;
539
            max-height: 330px;
540
            overflow: auto;
541
 
542
            > li {
543
                @include flex();
544
                width: 100%;
545
                padding: 8px 6px;
546
                border-bottom: 1px solid $dividerColor;
547
 
548
                > i {
549
                    font-size: 14px;
550
                    color: $primaryColor;
551
                    margin-right: 6px;
552
                    margin-top: 4px;
553
                }
554
 
555
                .map-info {
556
                    span {
557
                        font-size: 13px;
558
                        font-weight: 600;
559
                        color: $textColor;
560
 
561
                        > span {
562
                            font-weight: normal;
563
                        }
564
                    }
565
 
566
                    .time {
567
                        display: block;
568
                        font-size: 11px;
569
                        font-weight: 600;
570
                        color: $textColor;
571
                        opacity: 0.6;
572
                    }
573
                }
574
 
575
 
576
 
577
                &:last-child {
578
                    border: none;
579
                }
580
            }
581
        }
582
    }
583
}
584
 
585
.profile {
586
    height: 100%;
587
    padding: 0;
588
 
589
    .profile-header {
590
        background-image: url("\#{resource['poseidon-layout:images/pages/asset-cover.png']}");
591
        background-position: center;
592
        background-repeat: no-repeat;
593
        background-size: cover;
594
        border-top-right-radius: 5px;
595
        border-bottom-right-radius: 5px;
596
        min-height: 120px;
597
        position: relative;
598
 
599
        img {
600
            position: absolute;
601
            bottom: -50%;
602
            left: 50%;
603
            margin-left: -60px;
604
            width: 120px;
605
            height: 120px;
606
        }
607
    }
608
 
609
    .profile-content {
610
        padding: 66px 12px 24px;
611
        text-align: center;
612
 
613
        > h6 {
614
            margin: 0;
615
            font-weight: 600;
616
            color: $textColor;
617
        }
618
 
619
        > span {
620
            display: block;
621
            font-size: 13px;
622
            color: $textColor;
623
            margin: 4px 0 30px;
624
        }
625
    }
626
}
627
 
628
.pricing-card {
629
    padding: 0 0px 24px;
630
    text-align: center;
631
    @include border-radius(5px);
632
    background: $contentBgColor;
633
 
634
    .pricing-header {
635
        padding: 18px 12px;
636
        border-bottom: 4px solid #2c84d8 ;
637
        border-bottom: 4px solid var(--primary-dark-color, #2c84d8);
638
 
639
        .price {
640
            font-size: 24px;
641
            color: #2c84d8;
642
            color: var(--primary-dark-color, #2c84d8);
643
            margin: 0;
644
            margin-bottom: 6px;
645
        }
646
 
647
        > h5 {
648
            letter-spacing: 0.58px;
649
            color: $textColor;
650
            margin: 0;
651
            margin-bottom: 12px;
652
        }
653
 
654
        > span {
655
            display: block;
656
            font-size: 13px;
657
            color: $textColor;
658
        }
659
    }
660
 
661
    ul {
662
        list-style-type: none;
663
        padding: 0;
664
        padding-bottom: 12px;
665
 
666
        > li {
667
            color: $textColor;
668
            margin-bottom: 12px;
669
            width: 100%;
670
 
671
            > i {
672
                color: $textColor;
673
                margin-right: 8px;
674
            }
675
 
676
            &.not-included {
677
                opacity: .6;
678
            }
679
        }
680
    }
681
 
682
    &.landing-pricing-card {
683
        background: linear-gradient(360deg, #66768D 0%, #7A899F 100%);
684
 
685
        .pricing-header {
686
            border-bottom: 4px solid #ffffff ;
687
 
688
            .price {
689
                color: #ffffff;
690
            }
691
 
692
            > h5 {
693
                color: #ffffff;
694
            }
695
 
696
            > span {
697
                color: #ffffff;
698
            }
699
        }
700
 
701
        ul {
702
            > li {
703
                color: #ffffff;
704
 
705
                > i {
706
                    color: #ffffff;
707
                }
708
            }
709
        }
710
 
711
        &.teal {
712
            .pricing-header {
713
                border-bottom: 4px solid #7EEBEB ;
714
                .price {
715
                    color:#7EEBEB;
716
                }
717
            }
718
        }
719
 
720
        &.orange {
721
            .pricing-header {
722
                border-bottom: 4px solid #FFDA9E ;
723
                .price {
724
                    color: #FFDA9E;
725
                }
726
            }
727
        }
728
    }
729
 
730
 
731
 
732
}
733
 
734
.sale-graph {
735
    overflow: auto;
736
    .card-header {
737
        margin-bottom: 13px;
738
    }
739
    .order-tabs {
740
        @include flex();
741
        @include flex-justify-start();
742
 
743
        .order-tab {
744
            cursor: pointer;
745
            background-color: rgba($contentAltBgColor,.3);
746
            padding: 6px 18px;
747
            @include border-radius(4px);
748
 
749
            &:first-child {
750
                margin-right: 18px;
751
            }
752
 
753
            &:hover {
754
                background-color: rgba($contentAltBgColor,.5);
755
                h3 {
756
                    color: rgba(#02acac, .6);
757
                }
758
            }
759
 
760
            &.order-tab-active {
761
                background-color:rgba($contentAltBgColor,.7);
762
 
763
                h3 {
764
                    color: #02acac;
765
                }
766
            }
767
 
768
            h6 {
769
                color:$textColor;
770
                font-weight: 600;
771
                margin: 0;
772
                margin-bottom: 2px;
773
                @include transition(color $transitionDuration);
774
 
775
            }
776
 
777
            h3 {
778
                color: #949aa6;
779
                margin: 0;
780
            }
781
        }
782
    }
783
}
784
 
785
.product-list {
786
    height: 100%;
787
 
788
    .card-header {
789
        margin-bottom: 12px;
790
    }
791
 
792
    > ul {
793
        padding: 0;
794
        margin: 0;
795
        list-style-type: none;
796
        > li {
797
            @include flex();
798
            @include flex-align-center();
799
            @include flex-justify-between();
800
            margin-bottom: 12px;
801
            padding: 6px;
802
            @include border-radius(4px);
803
            cursor: pointer;
804
 
805
            &:hover {
806
                background-color: rgba($contentAltBgColor,.7);
807
            }
808
 
809
            .product {
810
                @include flex();
811
                @include flex-align-center();
812
 
813
                > img {
814
                    width: 72px;
815
                    height: 42px;
816
                    margin-right: 12px;
817
                }
818
 
819
                .product-info {
820
                    > p {
821
                        margin: 0;
822
                        color: $textColor;
823
                    }
824
 
825
                    > span {
826
                        display: block;
827
                        color: $textSecondaryColor;
828
                        font-size: 12px;
829
                        font-weight: normal;
830
                        > span {
831
                            font-weight: 600;
832
                        }
833
                    }
834
                }
835
 
836
            }
837
 
838
            > i {
839
                color: #00acac;
840
                &.down {
841
                    color: #f16383;
842
                }
843
            }
844
        }
845
    }
846
}
847
 
848
.sellers {
849
    height: 100%;
850
 
851
    > ul {
852
        padding: 0;
853
        margin: 0;
854
        list-style-type: none;
855
 
856
        > li {
857
            @include flex();
858
            @include flex-align-center();
859
            @include flex-justify-between();
860
            padding: 5px 0;
861
            margin-top: 6px;
862
 
863
            .seller {
864
                @include flex();
865
                @include flex-align-center();
866
 
867
                > img {
868
                    width: 32px;
869
                    height: 32px;
870
                    margin: 0px;
871
                    margin-right: 12px;
872
                }
873
 
874
                > p {
875
                    color: $textColor;
876
                    margin: 0;
877
                    min-width: 105px;
878
                }
879
            }
880
 
881
            > span {
882
                color: $textSecondaryColor;
883
                font-size: 12px;
884
                font-weight: 600;
885
            }
886
 
887
            .ui-rating{
888
                .ui-rating-star {
889
                    margin: 0;
890
 
891
                    > a {
892
                        font-size: 14px;
893
                        @include flex();
894
                        @include flex-align-center();
895
                        @include flex-justify-center();
896
                    }
897
                }
898
                .ui-rating-cancel {
899
                    display: none;
900
                }
901
            }
902
 
903
            .ui-button {
904
                background-color: transparent;
905
                border-color: rgba($textSecondaryColor, .5);
906
                color: $textSecondaryColor;
907
 
908
                &:hover {
909
                    background-color: darken($contentBgColor, 2%);
910
                }
911
            }
912
        }
913
    }
914
}
915
 
916
.tasks {
917
    height: 100%;
918
 
919
    .card-header {
920
        margin-bottom: 6px;
921
    }
922
 
923
    .task {
924
        padding: 12px 0 0;
925
        margin-bottom: 7px;
926
 
927
        .task-info {
928
            @include flex();
929
            @include flex-align-center();
930
            @include flex-justify-between();
931
            margin-bottom: 8px;
932
 
933
            .task-name {
934
                color: $textColor;
935
 
936
                span {
937
                    font-weight: 600;
938
                }
939
            }
940
 
941
            i {
942
                background-color: rgba(#02acac,.2);
943
                color: #02acac;
944
                padding: 4px;
945
                display: block;
946
                @include border-radius(50%);
947
            }
948
        }
949
 
950
 
951
 
952
        .task-progress {
953
            border-radius: 2px;
954
            height: 4px;
955
            background: $dividerColor;
956
 
957
            > div {
958
                border-radius: 2px;
959
                height: 100%;
960
            }
961
        }
962
 
963
        &.task-1 {
964
            .task-info {
965
                i {
966
                    background-color: rgba(#02acac,.2);
967
                    color: #02acac;
968
                }
969
            }
970
            .task-progress > div {
971
                background: #02acac;
972
                width: 45%;
973
            }
974
        }
975
 
976
        &.task-2 {
977
            .task-info {
978
                i {
979
                    background-color: rgba(#02acac,.2);
980
                    color: #02acac;
981
                }
982
            }
983
            .task-progress > div {
984
                background: #02acac;
985
                width: 80%;
986
            }
987
        }
988
 
989
        &.task-3 {
990
            .task-info {
991
                i {
992
                    background-color: rgba(#f1b263,.2);
993
                    color: #f1b263;
994
                }
995
            }
996
            .task-progress > div {
997
                background: #f1b263;
998
                width: 30%;
999
            }
1000
        }
1001
 
1002
        &.task-4 {
1003
            .task-info {
1004
                i {
1005
                    background-color: rgba(#f1b263,.2);
1006
                    color: #f1b263;
1007
                }
1008
            }
1009
            .task-progress > div {
1010
                background: #f1b263;
1011
                width: 60%;
1012
            }
1013
        }
1014
 
1015
        &.task-5 {
1016
            .task-info {
1017
                i {
1018
                    background-color: rgba(#f16383,.2);
1019
                    color: #f16383;
1020
                }
1021
            }
1022
            .task-progress > div {
1023
                background: #f16383;
1024
                width: 20%;
1025
            }
1026
        }
1027
    }
1028
}
1029
 
1030
 
1031
@media (max-width: 992px) {
1032
 
1033
.news {
1034
    flex-direction: column;
1035
 
1036
    .news-content {
1037
        order: 2;
1038
    }
1039
 
1040
    .news-image {
1041
        order: 1;
1042
        border-top-left-radius: 5px;
1043
        border-bottom-right-radius: 0;
1044
    }
1045
}
1046
.map {
1047
    flex-direction: column;
1048
 
1049
    .map-content {
1050
        order: 2;
1051
        width: 100%;
1052
        flex-direction: column;
1053
 
1054
        .map-adjust {
1055
            i {
1056
                @include rotate(90deg);
1057
            }
1058
        }
1059
    }
1060
 
1061
    .map-image {
1062
        width: 100%;
1063
        order: 1;
1064
        border-top-left-radius: 5px;
1065
        border-top-right-radius: 5px;
1066
        border-bottom-left-radius: 0;
1067
    }
1068
}
1069
 
1070
}
1071
 
1072
.layout-rtl {
1073
    .chat {
1074
        .chat-message-row {
1075
            .chat-message-content{
1076
                margin-right: 8px;
1077
                margin-left: 0px;
1078
            }
1079
            &.send {
1080
                .chat-message-content{
1081
                    margin-right: 0px;
1082
                    margin-left: 8px;
1083
                }
1084
            }
1085
        }
1086
    }
1087
 
1088
    .map {
1089
        .map-content{
1090
            > ul {
1091
                > li {
1092
                    > i {
1093
                        margin-right: 0px;
1094
                        margin-left: 6px;
1095
                    }
1096
                }
1097
            }
1098
        }
1099
    }
1100
 
1101
    .product-list {
1102
        > ul {
1103
             li {
1104
                .product {
1105
                    > img {
1106
                        margin-right: 0px;
1107
                        margin-left: 12px;
1108
                    }
1109
                }
1110
 
1111
                &:hover {
1112
                    background-color: $contentAltBgColor;
1113
                }
1114
            }
1115
        }
1116
    }
1117
}
1118