-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (64 loc) · 1.14 KB
/
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
69
70
71
72
body {
font: 10pt Arial, Helvetica, sans-serif;
background: white;
color: whitesmoke;
font-family: sans-serif;
padding: 0;
margin: 0;
}
.menu-draw {
background-color: white;
border-radius: 5px;
display: flex;
float: left;
justify-content: space-between;
height: 100vh;
margin: 0px auto 0px;
overflow: hidden;
padding: 0px;
position: relative;
width: 100%;
}
.primitives {
background-color: plum;
border-radius: 5px;
float: left;
height: 100%;
left: 0;
margin-top: 0;
overflow: hidden;
width: 17%;
}
.dropzone {
background-color: white;
display: flex;
float: left;
justify-content: space-between;
height: 100%;
margin: 0px auto 0px;
overflow: hidden;
padding: 0px;
width: 83%;
}
.draggable {
color: darkorchid;
}
.primitives-list {
margin-left: 0;
padding-left: 0;
}
.one-prim {
list-style-type: none;
}
.backg {
height: 100vh;
display: flex;
justify-content: space-between;
overflow: hidden;
position: relative;
width: 100%;
}
.my-canvas {
border: solid 1px black;
height: 100%;
}