blob: 05b06ed6396004c7ee89784347e1059d93f72988 [file] [log] [blame]
Matteo Scandolo8a64fa42016-01-21 11:21:03 -08001service-canvas {
2 height: 100%;
3 width: 100%;
4 display: block;
5}
6
7.node {
8 cursor: pointer;
9}
10
11.node circle {
12 fill: #fff;
13 stroke: steelblue;
14 stroke-width: 3px;
15}
16
17.node text {
18 font: 12px sans-serif;
19}
20
21.link {
22 fill: none;
23 stroke: #ccc;
24 stroke-width: 2px;
25}