-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchoose.css
48 lines (48 loc) · 835 Bytes
/
choose.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
body {
background-color: #1f1f1f;
}
#backbar {
position:absolute;
width: 300px;
height: 10px;
background-color: black;
color:transparent;
user-select: none;
outline-style: solid;
border-radius: 15px;
outline-color: black;
}
#frontbar {
position:absolute;
width: 300px;
height: 10px;
background-color: red;
color:transparent;
user-select: none;
border-radius: 15px;
}
.dot {
position:absolute;
border-radius: 50%;
background-color: red;
outline-style: solid;
outline-color: black;
width: 20px;
transform: translateY(-25%);
}
#first {
left: 100px;
}
#second {
left: 200px;
}
#bar * {
color:transparent;
user-select: none;
}
#bar {
position:absolute;
width: 400px;
top:25%;
/* transform: translateY(-50%); */
}