-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
80 lines (66 loc) · 1.26 KB
/
index.css
File metadata and controls
80 lines (66 loc) · 1.26 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
html {
height: 100%;
}
body {
box-sizing: border-box;
height: 100%;
font-family: sans-serif;
padding: 0px;
margin: 0px;
border: 8px solid #fff;
overflow: hidden;
}
#codeArea {
display: flex;
}
#blocklyDiv {
min-height: 100px;
min-width: 200px;
}
/* #consoleSplitter { */
/* height: 4px; */
/* } */
/* #consoleSplitter:hover { */
/* background-color: #aaa; */
/* cursor: row-resize; */
/* } */
#consoleDiv {
margin: 0;
border: 1px solid #ddd;
padding: 2px;
overflow: auto;
height: 10em;
/* min-height: 2em; */
min-width: 20ch;
min-height: 5em;
white-space: pre-wrap;
font-family: monospace;
}
/* #consoleDiv span.sim { */
/* margin-left: 2ch; */
/* color: #00f; */
/* } */
#modal {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 9;
background-color: rgba(0,0,0,0.4);
}
#modal-discard-confirm {
display: none;
background-color: #eee;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
box-shadow: 10px 10px 5px 0px #000;
width: 30ch;
}
/* g.blocklyIconGroup { */
/* display: none; */
/* } */
/* g.blocklyIconGroup:hover { */
/* display: block; */
/* } */