-
Notifications
You must be signed in to change notification settings - Fork 0
/
block.css
120 lines (98 loc) · 1.58 KB
/
block.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
html, body {
height: 100%;
padding: 0;
border: 0;
margin: 0;
}
.menu, .script, .block {
border: 1px inset #021429;
border-radius: 7px;
}
h1, h2, h3, h4, h5, h6 {
text-align: center;
}
h1 {
margin: 0em;
}
.menu-column {
width: 24%;
height: 85%;
float: left;
margin-left: 10px;
}
.menu {
background-color: PeachPuff;
overflow-y: auto;
}
.menu.over {
background-color: BurlyWood;
}
.script-column {
width: 24%;
height: 85%;
float: left;
margin: 0 10px;
}
.script {
background-color: LightSteelBlue;
height: 94%;
overflow-y: auto;
}
.script.over {
background-color: CadetBlue;
}
.canvas-column {
width: 46%;
height: 85%;
float: right;
margin-right: 10px;
}
.canvas-placeholder {
width: 100%;
height: 85%;
}
.canvas {
background-color: white;
position: absolute;
}
.block {
padding: 5px;
margin: 10px;
cursor: move;
}
.block.running {
outline: 2px solid red;
}
.block.next {
outline: 2px solid green;
}
.block.dragging {
opacity: 0.4;
}
.menu .block {
background-color: Coral;
}
.script .block {
margin: 5px;
background-color: DodgerBlue;
}
.block input {
margin-left: 1em;
width: 5em;
margin-bottom: 5px;
}
.container {
margin: 0 -6px 0 20px;
padding-bottom: 10px;
border: 1px inset #021429;
border-radius: 7px;
border-right: 0;
background-color: LightSteelBlue;
border-radius: 7px 0 0 7px;
}
.menu .container {
background-color: PeachPuff;
}
.over .container {
background-color: CadetBlue;
}