-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_style.css
61 lines (52 loc) · 1.13 KB
/
node_style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
.node_body {
border-radius: 0px 0px 5px 5px;
z-index: 9;
background-color: #25242400;
border: 1px solid #3a3a3a;
text-align: center;
width: 100%;
/*resize: both;*/
overflow: auto;
}
.node_container {
border-radius: 5px;
position: absolute;
z-index: 9;
left:50%;
top:50%;
background-color: #2524248c;
border: 1px solid #3a3a3a;
text-align: center;
backdrop-filter: blur(3px);
white-space: nowrap;
}
.node_header {
border-radius: 5px 5px 0px 0px;
padding: 5px;
cursor: move;
z-index: 10;
background-color: #008cff;
color: #fff;
}
.connector {
stroke:rgb(255, 255, 255);
stroke-width:2
}
#container {
position: absolute;
width: var(--workspacewidth);
height: var(--workspaceheight);
left: var(--workspacecenterx);
top: var(--workspacecentery);
background-color: #00000000;
overflow: hidden; /*For srcolling behavior*/
z-index: 0; /* Stay on bottom */
transform-origin: 50% 50%;
}
#container_container {
position: relative;
width: 100vw;
height: 100vh;
overflow:hidden;
border-style: solid 1px;
}