-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
68 lines (57 loc) · 936 Bytes
/
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
62
63
64
65
66
67
68
html, body {
margin: 0;
padding: 0;
font-size: 12px;
font-family: sans-serif;
}
*{
box-sizing: border-box
}
canvas {
display: block;
image-rendering: optimizeSpeed;
}
main{
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
}
#sidebar{
height: 100%;
padding: 20px;
background-color: rgb(233, 233, 233);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
overflow: scroll;
resize: horizontal;
/* width: 100%; */
}
#control-group{
}
#sidebar canvas{
margin: 0px -10px;
}
#canvas-container{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
#canvas-container canvas{
position: fixed;
}
button{
background-color: white;
padding: 5px 20px;
border-radius: 20px;
border: 1px solid #d3d3d3;
margin: 5px;
}
button:hover{
background-color: whitesmoke;
}
button:active{
background-color: lightgray;
}