diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-04-12 14:17:45 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-07-10 23:59:54 +0200 |
commit | 1ed3d346f61d9115fccb33d3047be783a7dd7f7a (patch) | |
tree | dca2cfb7107c4c589eaf79ea3844d74d7ed377b1 /htdocs/d3js-graph.css | |
parent | d67d4335f05635d06b433f7d3fa0f6a4e401ec92 (diff) |
Prototyping d3js graphs
Change-Id: Ie6672fd00801ca7ba0aefdbc4bbdc3459ea42958
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
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; +} |