You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
718 B
CSS
47 lines
718 B
CSS
3 years ago
|
.module {
|
||
|
display: inline-flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
|
||
|
.socket + .socket {
|
||
|
margin-top: 64px;
|
||
|
}
|
||
|
|
||
|
.socket input[type='text']{
|
||
|
display: inline-block;
|
||
|
width: 24px;
|
||
|
height: 24px;
|
||
|
border-radius: 50%;
|
||
|
border: 1px solid currentColor;
|
||
|
cursor: alias;
|
||
|
position: relative;
|
||
|
z-index: 50;
|
||
|
background: none;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
#svgElement {
|
||
|
z-index: 10;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
mix-blend-mode: multiply;
|
||
|
}
|
||
|
|
||
|
#logs {
|
||
|
list-style: none;
|
||
|
margin: 8px;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.marker {
|
||
|
display: inline-block;
|
||
|
margin-right: 8px;
|
||
|
width: 0.75em;
|
||
|
height: 0.75em;
|
||
|
border-radius: 50%;
|
||
|
vertical-align: middle;
|
||
|
}
|