-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
64 lines (55 loc) · 890 Bytes
/
index.css
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
body{
padding: 0;
margin: 0;
background: whitesmoke;
}
#pointsCanvas{
z-index: 1;
position: absolute;
top:0;
left:0;
}
#controls{
position: absolute;
top: 20px;
right: 20px;
z-index: 2;
width: 250px;
}
#controls div{
margin-top: 10px;
width:100%;
}
#controls div input[type="range"]{
width: calc(100% - 70px);
}
#controls div span{
width: 50px;
top: -7px;
position: relative;
}
.progressInfo{
position: absolute;
bottom: 10px;
background-color:rgba(0, 0, 0, 0.5);
z-index: 3;
width:100%;
height: 40px;
padding:10px;
display: none;
}
.progressInfo .title{
width:100%;
text-align: center;
color: white;
font-size: 16px;
}
.progressInfo .meter{
height: 2px;
background-color: white;
width: 50%;
margin-top:10px;
}
#curvesProgress{
left: 10px;
}