Banner.module.scss
1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
@import '../../../../styles/app';
.productDetailsBanner {
display: flex;
margin: $content-padding 0 75px;
border-radius: $border-radius;
box-shadow: var(--widget-shadow);
@include media-breakpoint-down(sm) {
flex-direction: column;
width: calc(100% + 30px);
box-shadow: none;
margin: auto -15px 0;
}
}
.productPhoto {
background-size: cover;
background-position: center;
width: 66.6%;
border-bottom-left-radius: $border-radius;
border-top-left-radius: $border-radius;
@include media-breakpoint-down(md) {
width: 55%;
}
@include media-breakpoint-down(sm) {
height: 300px;
width: 100%;
border-radius: 0;
}
}
.productInfo {
background: $white;
width: 33.3%;
padding: 15px $content-padding / 2;
border-bottom-right-radius: $border-radius;
border-top-right-radius: $border-radius;
@include media-breakpoint-down(md) {
width: 45%;
}
@include media-breakpoint-down(sm) {
width: 100%;
}
}
.productGuide {
color: $gray-500;
text-decoration: underline;
&:hover {
color: $gray-500;
text-decoration: none;
}
}
.payments {
display: flex;
height: 25px;
margin: 25px 0 $content-padding / 2;
div {
width: 40px;
margin-right: 15px;
border-radius: 2px;
background-size: cover;
background-position: center;
}
}
.delivery {
font-weight: $font-weight-normal;
color: $gray-500;
}