-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
112 lines (94 loc) · 1.59 KB
/
styles.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
padding: 0;
margin: 0;
font-size: 12pt;
}
.clickable {
cursor: pointer;
}
.library, .canvas, .properties {
box-sizing: border-box;
}
.library {
position: absolute;
width: 100%;
height: 10%;
border: 1px solid black;
border-bottom: 0;
/*background-color: #BCBCBC;*/
}
.canvas {
position: absolute !important;
top: 10% !important;
height: 90% !important;
width: 40% !important;
border: 1px solid black !important;
background-color: white !important;
background-image: url("styles/bg_canvas.png") !important;
background-repeat: repeat !important;
}
.canvas.active {
/*border: 1px solid orange !important;*/
}
.library ul {
list-style: none;
}
.library ul li {
float: left;
margin: 0 0.1em;
cursor: pointer;
}
.library .libControl {
border: 2px solid orange;
padding: 0.1em 0.5em;
background-color: white;
}
.buttons {
position: absolute;
top: 1em;
right: 1em;
font-size: 1em;
}
#generator {
box-sizing: border-box;
width: 100%;
height: 30em;
}
.ui-draggable {
z-index: 100;
}
.properties {
position: absolute;
top: 10%;
left: 40%;
height: 90%;
width: 60%;
border: 1px solid black;
border-left: 0;
overflow: auto;
}
.properties ul {
list-style: none;
}
.properties .propertyName,
.properties .eventName {
float: left;
min-width: 15em;
}
ul.propertiesList {
padding: 0;
margin: 1em;
}
.properties .interfaceName {
margin: 0.5em 0 0.1em 0;
padding: 0.1em 1em;
}
.properties input, .properties .floating {
float: left;
}
.properties .colorPickerIcon {
float: left;
width: 30px;
height: 30px;
background: url(3rd/colorpicker/images/select.png) center;
}