summaryrefslogtreecommitdiffstats
path: root/site/main.css
blob: 4f00319b22c6b317a5892355793508d543030ff5 (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
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}

x-game {
    display: flex;
    flex-direction: row;
}

x-game section {
    flex: 1;
}

x-arena canvas {
    border: 1px solid orangered;
    background-color: rgb(200 200 200);
}

button.halten .play, button.blinken .pause {
    display: block;
}

button.blinken .play, button.halten .pause {
    display: none;
}

#fps {
    display: inline-block;
    width: 2em;
    text-align: right;
}

x-inspector .src {
    min-height: 25ex;
    margin-top: 1ex;
    padding: 1em;
    border: 2px inset lightgray;
    white-space: pre-wrap;
}

x-inspector ::highlight(exec) {
    background-color: yellowgreen;
}

x-inspector .wordlist .ip {
    background-color: yellow;
}

x-inspector x-bytecode {
    display: block;
}

x-inspector x-bytecode::before {
    display: inline-block;
    width: 1em;
    content: attr(x-index);
    text-align: right;
    padding-right: 0.4em;
}

x-inspector x-op {
    display: inline-block;
    padding: 5px;
    border: 1px solid grey;
}

x-inspector .state {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

x-inspector .state fieldset {
}