Skip to content

Commit

Permalink
added files
Browse files Browse the repository at this point in the history
  • Loading branch information
cpgeier committed Nov 30, 2017
0 parents commit 9fe5eb3
Show file tree
Hide file tree
Showing 4 changed files with 595 additions and 0 deletions.
78 changes: 78 additions & 0 deletions app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
h1 {
text-align: center;
padding-top: 25px;
}

.buffer {
margin-top:20px;
}

iframe {
width: 960px;
}

iframe {
border: solid 0px #eee;
border-bottom: solid 1px #ccc;
display: block;
margin: auto;
}

svg {
background-color: #FFF;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
display: block;
margin: auto;
}

svg:not(.active):not(.ctrl) {
cursor: crosshair;
}

path.link {
fill: none;
stroke: #000;
stroke-width: 4px;
cursor: default;
}

svg:not(.active):not(.ctrl) path.link {
cursor: pointer;
}

path.link.selected {
stroke-dasharray: 10,2;
}

path.link.dragline {
pointer-events: none;
}

path.link.hidden {
stroke-width: 0;
}

circle.node {
stroke-width: 1.5px;
cursor: pointer;
}

circle.node.reflexive {
stroke: #000 !important;
stroke-width: 2.5px;
}

text {
font: 12px sans-serif;
pointer-events: none;
}

text.id {
text-anchor: middle;
font-weight: bold;
}
Loading

0 comments on commit 9fe5eb3

Please sign in to comment.