-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathstyle.css
59 lines (54 loc) · 936 Bytes
/
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
body {
max-width: 800px;
margin: 50px auto;
font-family: sans-serif;
}
.item-circle-wrap text {
font-size: 30px;
z-index: 100;
opacity: 0; pointer-events: none}
.item-circle-wrap:hover text {opacity: 1}
.value-group {cursor: pointer}
.value-group text{
font-size: 20px;
text-shadow: 0 0 5px white;
font-weight: bold;
opacity: 0; pointer-events: none}
.value-group:hover text {opacity: 1}
.value-group:hover path {
stroke-width: 5;
stroke: #77f;
}
.value-group circle.recv {
fill: #f55;
pointer-events: none;
opacity: 0;
}
.value-group:hover circle.recv {
opacity: 1;
}
.group-name{opacity: 0}
.group-line {
stroke: #ddf;
stroke-width: 2px;
}
.connection {
stroke: #aaa;
stroke-width: 3px;
}
.connection-async {
stroke: #faa;
stroke-dasharray: 10 3;
}
.value {
fill: #aaa;
}
.value-end {
fill: #303F9F;
}
.value-start {
fill: #4DD0E1;
}
.value-start.value-end {
fill: #999;
}