add forcegraph

This commit is contained in:
Nils Schneider 2015-03-31 17:22:36 +02:00
commit 4b076ab3b9
7 changed files with 277 additions and 1 deletions

57
scss/_forcegraph.scss Normal file
View file

@ -0,0 +1,57 @@
.graph {
height: 100vh;
background: url(img/geometry2.png);
svg {
display: block;
width: 100%;
height: 100%;
}
.link {
stroke-opacity: 0.8;
line {
stroke-width: 2.5px;
cursor: pointer;
}
&.highlight line {
stroke-width: 7px;
stroke-dasharray: 10, 10;
opacity: 1;
}
}
.node {
fill: #fff;
stroke-width: 2.5px;
stroke: #AEC7E8;
&:not(.unknown) {
cursor: pointer;
}
&.highlight {
stroke: #FFD486;
stroke-width: 6px;
fill: orange;
point-order: stroke;
}
&.unknown {
stroke: #d00000;
}
}
.label {
text {
font-size: 0.8em;
}
rect {
fill: rgba(255, 255, 255, 0.8);
}
}
}

View file

@ -1,5 +1,6 @@
@import '_leaflet';
@import '_leaflet.label';
@import '_forcegraph';
.stroke-first {
paint-order: stroke;