-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvis.css
More file actions
64 lines (52 loc) · 666 Bytes
/
Copy pathvis.css
File metadata and controls
64 lines (52 loc) · 666 Bytes
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
text {
font-family: sans-serif;
font-size: 10px;
fill: #222
}
text.label {
filter: url(#keylineEffect);
font-weight: bold
}
/* dot, red, green, blue, tie*/
.d {
opacity: 60%;
}
.d:hover {
opacity: 100%;
}
.r {
fill: #d04
}
.g {
fill: #0a2
}
.b {
fill: #08e
}
.t {
fill: #888
}
/* point of interest */
.poi {
fill: #222;
}
.line {
stroke: #222;
stroke-width: 0.5%;
opacity: 50%;
fill: none;
stroke-linecap: round;
}
#triangle {
fill: #222;
}
.bg {
fill: #fff
}
.arrow {
fill: none;
stroke: #222;
stroke-width: 2;
stroke-dasharray: 4 2;
stroke-dashoffset: 0;
}