diff options
Diffstat (limited to 'htdocs/d3js-graph.css')
-rw-r--r-- | htdocs/d3js-graph.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/htdocs/d3js-graph.css b/htdocs/d3js-graph.css new file mode 100644 index 0000000..90ab33c --- /dev/null +++ b/htdocs/d3js-graph.css @@ -0,0 +1,40 @@ +.link { + fill: none; + stroke: #666; + stroke-width: 1.5px; +} + +#licensing { + fill: green; +} + +.link.licensing { + stroke: green; +} + +.link.resolved { + stroke-dasharray: 0, 2 1; +} + +circle { + fill: #ccc; + stroke: #333; + stroke-width: 2px; +} + +text { + font: 20px sans-serif; + pointer-events: none; + text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff; +} + +.node { + font: 10px sans-serif; +} + +.link { + stroke: steelblue; + stroke-opacity: 0.5; + fill: none; + pointer-events: none; +} |