pick-up.css
998 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
.pick-up {
margin-top: 121px;
}
.pick-up-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.pick-up-wrapper:nth-child(3n) {
margin-right: 0;
}
.pick-up-block {
margin-top: 20px;
}
.pick-up-block__four {
position: relative;
}
.pick-up-block__button {
position: absolute;
background: #F5851A;
border-radius: 9.375px;
font-weight: 600;
font-style: normal;
font-size: 14px;
line-height: 16px;
letter-spacing: -0.01em;
color: #FFFFFF;
border: 1px solid #F5851A;
cursor: pointer;
text-align: center;
padding: 16px 40px;
bottom: 25px;
left: 26px;
}
.pick-up-block__button:hover {
border: 1px solid #F2994A;
background-color: #FFFFFF;
color: #F2994A;
border-radius: 9.375px;
font-weight: 600;
font-style: normal;
font-size: 14px;
line-height: 16px;
letter-spacing: -0.01em;
}