-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblockly-turtlebot.css
75 lines (63 loc) · 1.05 KB
/
blockly-turtlebot.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
/* TODO Much of this is copied and pasted from blockly-mario.
* TODO Combine common elements into a single project?
*/
/* Purposely override visited color. */
a {
color: blue;
}
#app {
bottom: 0;
left: 0;
overflow: auto;
padding: 0;
position: fixed;
top: 0;
/* Note the dependencies between #blockly left and #app width.
/* Resizable might be nice sometime. */
width: 340px;
}
#app > * {
margin: 10px;
}
#blockly {
/* Bring in the bottom and right a little. Blockly is overshooting. */
bottom: 2px;
left: 340px;
position: fixed;
top: 0;
right: 2px;
}
#console {
border: 1px solid #CCCCCC;
min-height: 8em;
overflow: auto;
white-space: nowrap;
}
#controls > * {
margin-right: 1em;
}
#controls > *:last-child {
margin: 0;
}
#display {
height: 240px;
width: 320px;
}
#file-chooser {
display: none;
}
#files {
position: fixed;
right: 1em;
top: 0;
}
#files > * {
margin-right: 1em;
text-decoration: none;
}
.log-count {
background: #CCCCCC;
color: white;
margin-right: 5px;
padding: 0 2px;
}