-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (72 loc) · 1.27 KB
/
style.css
File metadata and controls
85 lines (72 loc) · 1.27 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
body {
margin: 0;
font-family: sans-serif;
background-color: var(--background-color);
color: var(--color);
overflow: hidden;
}
@media (prefers-color-scheme: light) {
body {
--background-color: #f7f7f9;
--color: #19191e;
}
}
@media (prefers-color-scheme: dark) {
body {
--background-color: #2c2c2c;
--color: #f7f7f9;
}
}
.container {
height: 100dvh;
display: flex;
flex-direction: column;
gap: 12px;
}
.area {
flex: 1;
display: flex;
gap: 12px;
}
.display {
flex: 1;
background-color: lightgrey;
}
.canvas {
width: 100%;
height: 100%;
}
.exit-fullscreen {
display: none;
position: fixed;
top: 0;
left: 0;
background-color: var(--background-color);
}
.properties {
flex: 1;
max-width: 200px;
overflow: scroll;
}
.structure-layer,
.structure-area,
.structure-area-div,
.structure-structure,
.structure-structure-div {
padding-left: 12px;
margin-top: 4px;
}
.structure-layer {
border-left: 1px lightgrey solid;
margin-top: 8px;
}
.structure-area-div {
border-left: 1px orange solid;
}
.structure-area {
border-left: 1px red solid;
}
.structure-structure,
.structure-structure-div {
border-left: 1px purple solid;
}