product.scss
975 Bytes
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
.product_company {
display: flex;
line-height: 30px;
margin: 10px 0px;
}
.product_wrap {
background-color: #ffffff;
padding: 20px;
border-radius: 5px;
margin-bottom: 10px;
font-size: 14px;
.btn_wrap {
display: flex;
justify-content: center;
align-items: center;
}
.product_name{
font-size: 20px;
font-weight: bold;
line-height: 30px;
margin-bottom: 10px;
color: #323232;
}
.limit_dsc {
font-size: 14px;
margin-bottom: 10px;
color: #969696;
}
.limit_num {
font-size: 32px;
line-height: 40px;
}
.product_dsc {
padding-left: 15px;
position: relative;
span {
font-size: 18px;
padding: 0 5px;
}
.font_red {
color: #F84133;
}
}
.product_dsc:before {
content: "";
position: absolute;
width: 6px;
height: 6px;
background-color: #ffffff;
border-radius: 3px;
left: 0px;
top: 50%;
transform: translate(0%, -50%)
}
}