17 lines
194 B
CSS
17 lines
194 B
CSS
|
.node circle {
|
||
|
fill: #fff;
|
||
|
stroke: steelblue;
|
||
|
stroke-width: 1.5px;
|
||
|
}
|
||
|
|
||
|
.node {
|
||
|
cursor: pointer;
|
||
|
font: 10px sans-serif;
|
||
|
}
|
||
|
|
||
|
.link {
|
||
|
fill: none;
|
||
|
stroke: #ccc;
|
||
|
stroke-width: 1.5px;
|
||
|
}
|