Added the producing graph

This commit is contained in:
Sebastian Seedorf
2022-08-13 02:13:47 +02:00
parent 185f39cb8a
commit 7682aeaea1
14 changed files with 312 additions and 47 deletions

View File

@@ -0,0 +1,32 @@
.plane {
position: relative;
overflow: scroll;
overflow-scrolling: touch;
background-color: lightsalmon;
padding: 2em;
height: 80vh;
}
.tiny {
font-size: 0.5em;
margin-top: -1.6em;
}
.small {
font-size: 0.8em;
}
.node {
display: inline-block;
position: absolute;
width: 200px;
height: fit-content;
padding: 0.2em;
background-color: red;
}
.linkOut {
position: absolute;
top: 0.5em;
right: 0.5em;
}