-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgraph.css
68 lines (57 loc) · 896 Bytes
/
graph.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
body, svg {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
margin: 0;
}
body {
background-color: #d0d0d0;
}
header {
/* font-size: 0.8rem; */
}
g.node circle {
stroke: #fff;
stroke-width: 1.5px;
}
g.node text {
/* font-size: 0.8rem; */
}
g.node text.desc, .desc {
fill: purple;
color: purple;
/* font-size: 0.8rem; */
}
g.node text.offline, .offline {
fill: #e54040;
color: #e54040;
/* font-size: 0.7rem; */
font-weight: bold;
}
g.node text.clients, .clients {
fill: #e56500;
color: #e56500;
font-weight: bold;
}
line.link {
stroke-opacity: .6;
}
line.link.fastd, .fastd {
stroke: green;
color: green;
}
line.link.wireless, .wireless {
stroke: blue;
color: blue;
}
/* links added between our gateways */
line.link.gws, .gws {
stroke: black;
color: black;
}
.ontop {
z-index: 255;
position: relative;
}