diff options
author | Pavel Paroulek <pavel.paroulek@orange.com> | 2019-01-15 18:53:50 +0100 |
---|---|---|
committer | Pavel Paroulek <pavel.paroulek@orange.com> | 2019-01-15 18:53:50 +0100 |
commit | 58457a8de75959ae07dc09df095d72adc5965a7c (patch) | |
tree | 2c90c601d32099a42b33eeab4aa4bcf1e112767f /graphgraph-fe/src/Graph.css | |
parent | 81ff4563106192982aef4abcce91b78d54891247 (diff) |
Initial commit
Java dummy backend and frontend
Change-Id: I8c5528fcf8a746154e0463e065238061ddf6b877
Issue-ID: AAI-532
Signed-off-by: Pavel Paroulek <pavel.paroulek@orange.com>
Diffstat (limited to 'graphgraph-fe/src/Graph.css')
-rw-r--r-- | graphgraph-fe/src/Graph.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/graphgraph-fe/src/Graph.css b/graphgraph-fe/src/Graph.css new file mode 100644 index 0000000..1e5c7d8 --- /dev/null +++ b/graphgraph-fe/src/Graph.css @@ -0,0 +1,20 @@ +#graph { + height: 100%; + width: 100%; +} + +.arrow { + stroke-width:5; + stroke:#000; + stroke-dasharray:5, 5; +} + +.d3-tip { + line-height: 1; + font-weight: bold; + padding: 12px; + background: rgba(0, 0, 0, 0.8); + color: #fff; + border-radius: 2px; +} + |