33 lines
474 B
CSS
33 lines
474 B
CSS
.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;
|
|
}
|