-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (67 loc) · 1.13 KB
/
style.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
65
66
67
68
69
70
71
72
73
.list{
position: absolute;
left:0;
}
.list-item{
cursor:pointer;
text-align: center;
line-height: 26px;
font-size: 12px;
margin: 8px;
width: 140px;
height: 26px;
border: solid 1px #289DE9;
border-radius: 13px;
}
.drag-item{
position: absolute;
z-index: 2147483647;
cursor: move;
}
#chart{
display: flex;
flex-direction: row;
}
.svg-item{
cursor:pointer;
position: absolute;
text-align: center;
line-height: 26px;
font-size: 12px;
width: 140px;
height: 26px;
border: solid 1px #289DE9;
border-radius: 13px;
}
.line-in{
width: 140px;
height: 20px;
position: absolute;
top: -4px;
}
.line-out{
width: 140px;
height: 20px;
position: absolute;
bottom: -4px;
}
.dot-up{
width: 6px;
height: 6px;
background: #289DE9;
border: 1px solid #289DE9;
border-radius: 4px;
left: 66px;
position: absolute;
top: -4px;
}
.dot-down{
width: 6px;
height: 6px;
background: #289DE9;
border: 1px solid #289DE9;
border-radius: 4px;
left: 66px;
position: absolute;
bottom: -4px;
}