-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogic.css
More file actions
95 lines (83 loc) · 1.16 KB
/
logic.css
File metadata and controls
95 lines (83 loc) · 1.16 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
94
95
body, html {
height: 100%;
}
body, div, canvas {
margin: 0px;
padding: 0px;
border: 0px;
}
div.layout {
position: absolute;
}
#pallet {
left: 0;
}
#canvas_div {
right: 0;
left: 30px;
height: 100%;
width: auto;
}
/* Components */
.VBox {
height: 100%;
}
.components {
width: 200px;
height: 100%;
}
.sidebar {
width: 200px;
min-width: 200px;
max-width: 200px;
}
.sidebar > table {
width: 200px;
}
.sidebar > table > tbody {
width: 200px;
min-width: 200px;
max-width: 200px;
margin: 0px;
padding: 0px;
border: 0px;
}
.sidebar > table > tbody > tr {
width: 200px;
min-width: 200px;
max-width: 200px;
margin: 0px;
padding: 0px;
border: 0px;
}
.sidebar > table > tbody > tr > td {
width: 200px;
min-width: 200px;
max-width: 200px;
margin: 0px;
padding: 0px;
border: 0px;
}
.picker * {
border-width: 2px;
border-style: solid;
border-color: black;
padding: 2px;
margin: 2px;
color: black;
display: inline-block;
cursor: pointer;
}
.picker .selected {
background-color: #eeeeee;
}
.button {
border-width: 2px;
border-style: solid;
border-color: black;
padding: 2px;
margin: 2px;
color: black;
display: inline-block;
cursor: pointer;
}