-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmindmap.css
More file actions
93 lines (93 loc) · 1.45 KB
/
mindmap.css
File metadata and controls
93 lines (93 loc) · 1.45 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
* {
box-sizing: border-box; /* Not inherited */
margin:0;
padding:0;
}
body {
background:var(--css__left_bg);
color:var(--fg);
width:100vw;
height:100vh;
overflow:hidden;
}
:root {
--css__left_bg:#000;
--css__right_bg:#222;
--fg:#509dff;
--css__hoverable_colour: #0ff;
--css__header_colour: #e2e2e2;
}
.lightmode_classname {
--css__left_bg:#fff;
--css__right_bg:#eee;
--fg:#509dff;
--css__hoverable_colour: #3ad;
--css__header_colour: #000;
}
#graph-btn-container {
position:absolute;
z-index:2;
}
@media (orientation: portrait) {
#graph-canvas, #graph-text-canvas {
width:100vw;
height:100vw;
}
#all-nodes-container {
width:100vw;
height:calc(100vw - 100vh);
}
}
@media (orientation: landscape) {
#graph-canvas, #graph-text-canvas {
width:100vh;
height:100vh;
}
#all-nodes-container {
width:calc(100vw - 100vh);
height:100vh;
}
}
#graph-text-canvas {
position:absolute;
left:0;
top:0;
pointer-events:none;
z-index:1;
}
#graph-canvas {
z-index:0;
}
.foreground {
background:#fff;
color:#000;
}
#all-nodes-container {
top:0;
right:0;
position:fixed;
overflow-y:scroll;
z-index:3;
background:var(--css__right_bg);
}
.display-none {
display:none;
}
.display-block {
display:block;
}
a {
color:var(--css__hoverable_colour);
cursor:pointer;
}
#graph--insertion-ui {
position:absolute;
top:0;
left:0;
z-index:3;
background:var(--css__left_bg);
}
.graph--insertion-ui--user-input-disabled{
pointer-events:none;
opacity:0.7;
}