diff options
| author | ziejd2 | 2019-06-27 13:58:58 -0500 |
|---|---|---|
| committer | ziejd2 | 2019-06-27 13:58:58 -0500 |
| commit | 5310fa747a6a46a0e96dc649cbca863e2c44aeb4 (patch) | |
| tree | 3d4ba8a8a8a6f50b4877d1153e0fb390bbf86564 /sourcecodes/graph-creator.css | |
| parent | 2be4664d4ef668feee3d1e8972c7fd0813aea7e8 (diff) | |
| download | BNW-5310fa747a6a46a0e96dc649cbca863e2c44aeb4.tar.gz | |
Version 1.22
Adding new visualization options
Diffstat (limited to 'sourcecodes/graph-creator.css')
| -rw-r--r-- | sourcecodes/graph-creator.css | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/sourcecodes/graph-creator.css b/sourcecodes/graph-creator.css new file mode 100644 index 00000000..c5fa7ce2 --- /dev/null +++ b/sourcecodes/graph-creator.css @@ -0,0 +1,98 @@ +body{ + margin: 0; + padding: 0; + overflow:hidden; +} + +p{ + text-align: center; + overflow: overlay; + position: relative; +} + +body{ + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: rgb(248, 248, 248) +} + +#toolbox{ + position: absolute; + bottom: 0; + left: 0; + margin-bottom: 0.5em; + margin-left: 1em; + border: 2px solid #EEEEEE; + border-radius: 5px; + padding: 1em; + z-index: 5; +} + +#toolbox input{ + width: 30px; + opacity: 0.4; +} +#toolbox input:hover{ + opacity: 1; + cursor: pointer; +} + +#hidden-file-upload{ + display: none; +} + +#download-input{ + margin: 0 0.5em; +} + +.conceptG text{ + pointer-events: none; +} + +marker{ + fill: #333; +} + +g.conceptG circle{ + fill: #F6FBFF; + stroke: #333; + stroke-width: 2px; +} + +g.conceptG:hover circle{ + fill: rgb(200, 238, 241); +} + +g.selected circle{ + fill: rgb(250, 232, 255); +} +g.selected:hover circle{ + fill: rgb(250, 232, 255); +} + +path.link { + fill: none; + stroke: #333; + stroke-width: 6px; + cursor: default; +} + +path.link:hover{ + stroke: rgb(94, 196, 204); +} + +g.connect-node circle{ + fill: #BEFFFF; +} + +path.link.hidden{ + stroke-width: 0; +} + +path.link.selected { + stroke: rgb(229, 172, 247); +} |
