|
|
@@ -1,28 +1,57 @@
|
|
|
1
|
+.productoverviewmain{
|
|
|
2
|
+ background-image: url("../../assets/imgs/productoverview/productbg.png");
|
|
|
3
|
+ background-color: #cccccc;
|
|
|
4
|
+ background-size: cover; /* <------ */
|
|
|
5
|
+ background-repeat: no-repeat;
|
|
|
6
|
+ background-position: center center;
|
|
|
7
|
+}
|
|
|
8
|
+
|
|
1
|
9
|
.photo_dual {
|
|
2
|
|
- width: 40rem; }
|
|
|
10
|
+ width: 40rem;
|
|
|
11
|
+}
|
|
3
|
12
|
|
|
4
|
13
|
.price_footer {
|
|
5
|
|
- background-color: #52cba5; }
|
|
|
14
|
+ background-color: #52cba5;
|
|
|
15
|
+ border: 2px solid;
|
|
|
16
|
+}
|
|
6
|
17
|
|
|
7
|
18
|
.boxImgContainer {
|
|
8
|
|
- width: 4rem; }
|
|
|
19
|
+ width: 4rem;
|
|
|
20
|
+}
|
|
9
|
21
|
|
|
10
|
22
|
.priceCut_multi {
|
|
11
|
|
- font-size: .7rem; }
|
|
|
23
|
+ font-size: 0.7rem;
|
|
|
24
|
+}
|
|
12
|
25
|
|
|
13
|
26
|
.productOverview .overviewProductHeading {
|
|
14
|
|
- font-size: 2.1rem; }
|
|
|
27
|
+ font-size: 2.1rem;
|
|
|
28
|
+}
|
|
15
|
29
|
|
|
16
|
30
|
.productOverview .overviewProductFullTitle {
|
|
17
|
31
|
padding: 2rem 13rem;
|
|
18
|
|
- font-size: 3rem; }
|
|
|
32
|
+ font-size: 3rem;
|
|
|
33
|
+}
|
|
19
|
34
|
|
|
20
|
35
|
.productOverview .overviewProductDes {
|
|
21
|
36
|
padding: 0 2rem;
|
|
22
|
|
- font-size: 1.5rem; }
|
|
|
37
|
+ font-size: 1.5rem;
|
|
|
38
|
+}
|
|
23
|
39
|
|
|
24
|
40
|
.PO_galleryContainer .PO_gallery_display {
|
|
25
|
41
|
min-height: 500px;
|
|
26
|
42
|
width: 100%;
|
|
27
|
43
|
background: white;
|
|
28
|
|
- background: linear-gradient(180deg, white 7%, #ff8e9e4d 52%, #eb869478 100%); }
|
|
|
44
|
+ background: linear-gradient(180deg, white 7%, #ff8e9e4d 52%, #eb869478 100%);
|
|
|
45
|
+ position: relative;
|
|
|
46
|
+}
|
|
|
47
|
+.PO_galleryContainer .PO_gallery_display .PO_gallery_display_img {
|
|
|
48
|
+ position: absolute;
|
|
|
49
|
+ top: 50%;
|
|
|
50
|
+ left: 50%;
|
|
|
51
|
+ transform: translate(-50%, -50%);
|
|
|
52
|
+}
|
|
|
53
|
+
|
|
|
54
|
+.PO_galleryContainer .PO_gallery_box_inner {
|
|
|
55
|
+ padding: 2rem;
|
|
|
56
|
+ background-color: #eeeeee;
|
|
|
57
|
+}
|