blob: c233858fbe357c34628d254fd8eea76e3863e605 [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;
Matteo Scandolo06f45d62016-01-21 15:38:06 -080025}
26
27.service-details{
28 width: 200px;
29 position: absolute;
30 top: 20px;
31 right: 20px;
Matteo Scandolo8a64fa42016-01-21 11:21:03 -080032}