-
Notifications
You must be signed in to change notification settings - Fork 0
/
shapes.css
145 lines (141 loc) · 2.56 KB
/
shapes.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
.sortable{
min-width: 20px;
min-height: 20px;
margin: 0px;
height: auto;
width: auto;
}
.tool-box{
height: 500;
overflow-y: scroll;
float: left;
margin-right: 50px;
}
.template{
margin: 10px;
}
.dropDiv{
height: 500;
width: auto;
overflow-y: scroll;
border: 1px dashed green;
background-color: lightgrey;
margin: 1px;
padding: 1px 2px 2px 2px;
}
.block{
min-width: 40;
min-height: 20;
height: auto;
width: auto;
margin: 0px;
text-align: left;
padding-left: 0px;
vertical-align: middle;
}
table.round-right{
border-spacing: 0;
cursor: pointer;
margin-top: 1px;
}
table.round-right tr:first-child td:last-child {
border-radius: 0px 5px 5px 0px;
}
.round{
border-radius: 0px 5px 5px 0px;
}
.round-all{
border-radius: 5px 5px 5px 5px;
margin: 0px;
}
.round-left{
border-radius: 5px 0px 0px 5px;
}
table.round-right tr:last-child td:last-child {
border-radius: 0px 5px 5px 0px;
}
.color-red{
background-color: indianred;
}
.color-green{
background-color: green
}
.color-blue{
background-color: dodgerblue;
}
.color-yellow{
background-color: goldenrod;
}
.text{
color: ivory;
font-size: 12pt;
font-weight: bold;
padding: 2px;
}
.vertical-align{
display: table-cell;
vertical-align: middle;
}
.vertical-align-container{
display: table;
}
.banner{
background-color: green;
height: 50px;
margin-bottom: 50px;
}
.drop-shadow{
border-radius: 5px 5px 5px 5px;
box-shadow: -5px 5px 5px darkslategrey;
}
.place-holder {
height: 5;
width: 40px;
background-color: red;
opacity: 0.7;
border-radius: 2px;
display: table-cell;
vertical-align: middle;
}
.table{
display: table;
}
.editable{
padding-left: 2;
border: 1px solid #cdcdcd;
border-radius: 4px;
background-color: lightslategrey;
font-size: 12px;
}
.accept-function{
background-color: lightyellow;
border-radius: 4px;
padding: 0px 1px 1px 1px;
}
.accept-statement{
background-color: lightyellow;
border-radius: 4px;
padding: 0px 1px 1px 1px;
}
.accept-parameter{
background-color: lightyellow;
border-radius: 4px;
padding: 0px 1px 1px 1px;
}
.accept-value{
background-color: lightyellow;
border-radius: 4px;
padding: 0px 1px 1px 1px;
}
.accept-variable{
background-color: lightyellow;
border-radius: 4px;
padding: 0px 1px 1px 1px;
}
#trash{
width:73;
height:58;
left:1240;
top:520;
position: absolute;
}