blob: 519ae31dcf7f51ea6af578ca6da3b3262edb7600 (
plain)
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
|
html {
box-sizing: border-box;
}
*, *::before, *::after {
box-sizing: inherit;
}
#ff {
display: flex;
flex-direction: row;
}
body h1 {
flex: 2;
}
body footer {
flex: 2;
}
body #arena {
flex: 1;
}
body #robview {
flex: 1;
}
#code #src {
min-height: 25ex;
margin-top: 1ex;
padding: 1em;
border: 2px inset lightgray;
white-space: pre-wrap;
}
::highlight(exec) {
background-color: yellowgreen;
}
#scope {
/* display: grid; */
/* grid-template-columns: repeat(2, 1fr); */
}
#scope summary {
grid-column: 1 / span 2;
}
#scope .wordlist {
grid-column: 1 / span 2;
}
#scope .vars {
grid-column: 1 / span 2;
}
#scope .wordlist .ip {
background-color: yellow;
}
x-bytecode {
display: block;
}
x-bytecode::before {
display: inline-block;
width: 1em;
content: attr(x-index);
text-align: right;
padding-right: 0.4em;
}
x-op {
display: inline-block;
padding: 5px;
border: 1px solid grey;
}
canvas {
border: 1px solid orangered;
background-color: rgb(200 200 200);
}
|