-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathTimeline.css
More file actions
80 lines (70 loc) · 1.34 KB
/
Copy pathTimeline.css
File metadata and controls
80 lines (70 loc) · 1.34 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
.BMapLib-timeline {
position: absolute;
bottom: 10px;
left: 10px;
z-index: 66;
display: flex;
align-items: center;
height: 70px;
border-radius: 5px;
background-color: rgba(0, 0, 0, .5);
padding: 0 12px;
box-shadow: 1px 1px 3px 1px #cbcbcb;
}
.BMapLib-timeline-play {
color: #fff;
font-size: 16px;
margin-right: 8px;
cursor: pointer;
}
.BMapLib-timeline-main {
/* width: 500px; */
position: relative;
overflow: hidden;
}
.BMapLib-timeline-main ul {
display: flex;
list-style: none;
padding: 0;
margin: 0;
/* height: 40px; */
}
.BMapLib-timeline-main ul li {
position: relative;
font-size: 14px;
color: #fff;
text-align: center;
}
.BMapLib-timeline-main ul li span {
user-select: none;
}
.BMapLib-timeline-progress {
height: 10px;
width: 10px;
background-color: #fff;
border-radius: 5px;
cursor: pointer;
position: absolute;
left: 0;
top: 10px;
}
.BMapLib-time-item {
height: 10px;
margin-top: 10px;
background-color: #C1C3C6;
box-sizing: content-box;
}
.BMapLib-time-start {
border-radius: 5px 0 0 5px;
}
.BMapLib-time-end {
border-radius: 0 5px 5px 0;
}
.BMapLib-time-divider {
position: absolute;
top: 1px;
left: 50%;
width: 1px;
height: 19px;
background-color: #fff;
}