@skydive-project/skydive-ui
Version:
Skydive WebUI v2
63 lines (49 loc) • 1.01 kB
CSS
.host .node-hexagon {
fill: #114B5F;
}
.netns .node-hexagon {
fill: #C6DABF;
}
.bridge .node-hexagon, .ovsbridge .node-hexagon, .port .node-hexagon, .ovsport .node-hexagon {
fill: #36b791;
}
.interface .node-hexagon, .device .node-hexagon, .tun .node-hexagon, .tap .node-hexagon, .veth .node-hexagon {
fill: #88D498;
}
.down .node-hexagon {
fill: rgb(163, 0, 0);
}
.host .node-icon {
fill: #eee;
}
.netns .node-icon {
fill: #444;
}
.bridge .node-icon, .ovsbridge .node-icon, .port .node-icon, .ovsport .node-icon {
fill: #eee;
}
.interface .node-icon, .device .node-icon, .tun .node-icon, .tap .node-icon, .veth .node-icon {
fill: #444;
}
.down .node-icon {
fill: #eee;
}
.traffic {
stroke-dasharray: 5;
animation: traffic 3s linear;
animation-iteration-count: infinite;
}
.ipsec_traffic {
stroke: #00FF11;
stroke-width: 5px;
markerWidth: 3px;
markerHeight: 3px;
}
.vxlan_traffic {
stroke: #00FFFF;
}
@keyframes traffic {
to {
stroke-dashoffset: -100;
}
}