long-press-segment.css
993 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
.long-press-segment {
width: 16vw;
height: 3vw;
display: flex;
position: relative;
background: #e0e0e0;
border-radius: 0.6vw;
margin: 0;
overflow: hidden;
border: 0.12vw solid #3f3e3e;
box-shadow: 0.2vw 0.2vw 0.2vw #333, 0.3vw 0.3vw 1vw rgba(0, 0, 0, 0.3);
}
.long-press-segment__item {
flex: 1;
padding: 0.5vw 0;
cursor: pointer;
font-size: 0.9vw;
color: #333;
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
user-select: none;
}
.long-press-segment__item.active {
color: black;
}
.long-press-segment__slider {
width: 6.6vw;
height: 2.2vw;
position: absolute;
top: 0.3vw;
border-radius: 0.4vw;
z-index: 1;
box-shadow: 0 0.1vw 0.3vw rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.long-press-segment__slider-position-1 {
left: 0.4vw;
width: 7.1vw;
background: #ffd700 !important;
}
.long-press-segment__slider-position-2 {
left: 8.1vw;
width: 7.4vw;
background: #32b92b !important;
}