66 lines
756 B
CSS
66 lines
756 B
CSS
#chart {
|
|
background: #000;
|
|
}
|
|
|
|
.node ellipse {
|
|
stroke-width: 2.5px;
|
|
}
|
|
|
|
.node text, .label text {
|
|
font-size: 10px;
|
|
fill: #000;
|
|
}
|
|
|
|
.link line {
|
|
stroke: #ddd;
|
|
stroke-width: 5px;
|
|
}
|
|
|
|
.link.vpn line {
|
|
stroke-dasharray: 1px 6px;
|
|
stroke-linecap: round;
|
|
stroke-width: 2px;
|
|
}
|
|
|
|
.link line.unidirectional {
|
|
stroke-width: 2px;
|
|
}
|
|
|
|
.node ellipse {
|
|
fill: #fff;
|
|
stroke: #48f;
|
|
}
|
|
|
|
.node ellipse.gateway {
|
|
stroke: #ff7f0e;
|
|
fill: #ff7f03;
|
|
}
|
|
|
|
.node ellipse.client {
|
|
stroke: #ff0;
|
|
fill: #ff0;
|
|
stroke-width: 5px;
|
|
}
|
|
|
|
.uplinks path, .uplinks text {
|
|
fill: #0ff;
|
|
}
|
|
|
|
.strength {
|
|
font-size: 10px;
|
|
fill: #C83771;
|
|
}
|
|
|
|
#sidebar {
|
|
color: #ddd;
|
|
}
|
|
|
|
#sidebar text {
|
|
fill: #ddd;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.label rect {
|
|
fill: rgba(255, 255, 255, 1.0);
|
|
}
|