-
Notifications
You must be signed in to change notification settings - Fork 0
/
canvas.css
65 lines (54 loc) · 1.15 KB
/
canvas.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
62
63
64
:root {
--toolbar-height: 48px;
--toolbar-background: #202020;
--toolbar-background-selected: #1E538F;
--toolbar-background-hover: #000000;
--left-panel-background-selected: #87B9E7;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
}
#toolbar {
height: var(--toolbar-height);
background-color: var(--toolbar-background);
}
.toolbar-button {
background-color: unset;
border: none;
color: white;
height: 100%;
}
.toolbar-button-selected {
background-color: var(--toolbar-background-selected);
}
.toolbar-button:hover {
background-color: var(--toolbar-background-hover);
}
#editor {
height: calc(100vh - var(--toolbar-height));
display: flex;
}
#canvas {
outline: none;
}
#left-panel {
margin-block-start: unset;
margin-block-end: unset;
padding-inline-start: unset;
}
.left-panel-option {
list-style: none;
}
.left-panel-option > button {
background-color: unset;
border: solid 1px transparent;
}
.left-panel-option > button:hover {
box-sizing: border-box;
border: solid 1px var(--left-panel-background-selected);
}
.left-panel-option-selected > button {
background-color: var(--left-panel-background-selected);
}