-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.css
92 lines (89 loc) · 1.41 KB
/
demo.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
#logo-display {
position: absolute;
top: 0;
left: 0;
right: 50%;
bottom: 240px;
text-align: center;
}
#logo-display canvas {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
object-fit: contain;
}
#logo-debug {
background-color: #eff;
position: absolute;
bottom: 0;
height: 240px;
left: 0;
right: 50%;
overflow-y: scroll;
}
#logo-console {
background-color: lightgrey;
position: absolute;
left: 50%;
right: 0;
top: 0;
bottom: 240px;
overflow-y: scroll;
}
#logo-input {
position: absolute;
right: 0;
width: 50%;
bottom: 40px;
height: 200px;
border: none;
}
#logo-run {
position: absolute;
left: 50%;
right: 75%;
width: 25%;
bottom: 0;
height: 40px;
}
#logo-pause {
position: absolute;
left: 75%;
right: 12.55;
width: 12.5%;
bottom: 0;
height: 40px;
}
#logo-break {
position: absolute;
left: 87.25%;
right: 0;
width: 12.5%;
bottom: 0;
height: 40px;
}
#logo-console div {
white-space: pre-wrap;
}
#logo-console div.input {
color: #666;
}
#logo-console div.output {
background-color: white;
color: black;
}
#logo-debug span {
color: black;
white-space: pre-wrap;
}
#logo-debug span.active {
color: blue;
background-color: #bff;
}
button[disabled] {
background: #888;
}