Description.module.scss
2.29 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
@import '../../../../styles/app';
.productDescription {
background-color: $white;
box-shadow: var(--widget-shadow);
border-radius: $border-radius;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr;
@include media-breakpoint-down(sm) {
display: none;
}
h3 {
font-size: 1.4rem;
font-weight: $font-weight-normal;
margin-bottom: 15px;
color: theme-color('dark');
}
:global .dot-before {
margin: 3px 0;
&::before {
content: '•';
margin-right: 7.5px;
}
}
a {
color: $link-color;
}
.productDescriptionInfo {
grid-row: 1 / 3;
grid-column: 1;
}
.socialList {
display: flex;
margin-top: $spacer;
div {
transition: $transition-base;
height: 25px;
width: 25px;
border-radius: 50%;
margin-right: 10px;
display: flex;
align-items: center;
justify-content: center;
color: $white;
&:hover {
cursor: pointer;
}
&:nth-child(1) {
background-color: #3b5998;
&:hover {
background-color: lighten(#3b5998, 10%);
}
}
&:nth-child(2) {
background-color: #8a3ab9;
&:hover {
background-color: lighten(#8a3ab9, 10%);
}
}
&:nth-child(3) {
background-color: #1dcaff;
&:hover {
background-color: lighten(#1dcaff, 10%);
}
}
}
}
.reviews {
display: flex;
flex-direction: column;
a {
margin-top: 5px;
}
}
& :global .panel-header {
background-color: $white;
border-top: 1px solid $gray-500;
button {
color: $gray-500;
width: 100%;
}
}
& :global .card-header {
padding-left: 0;
padding-right: 0;
}
& :global .card-body {
padding-top: 0;
padding-left: 0;
}
& :global .panel-first {
border-top: none;
}
}
.productDescriptionBlock {
padding: 30px $content-padding / 2;
font-weight: $font-weight-normal;
display: flex;
flex-direction: column;
&:nth-child(n + 4) {
padding-top: 0;
}
}
.productDescriptionMobile {
display: none !important;
margin: 0 !important;
font-weight: $font-weight-normal;
padding: 5px 5px 10px;
@include media-breakpoint-down(sm) {
display: block !important;
}
}