blob: 63929dfbc88778f0db1df70a544784a5bd83060e (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
@font-face {
font-family: 'DepartureMono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/font/DepartureMono-1.500/DepartureMono-Regular.woff2) format('woff2');
}
html {
height: 100%;
margin: 0;
padding: 0;
background-color: #121212;
color: #FFAA00;
text-shadow: 0 0 5px #FFAA00;
font-family: 'DepartureMono', monospace;
font-size: 22px;
font-smooth: never;
}
body {
display: flex;
flex-direction: column;
height: 100%;
margin: 0;
padding: 0.5em;
box-sizing: border-box;
}
input,
textarea,
button {
text-shadow: inherit;
font-size: inherit;
font-family: inherit;
background-color: inherit;
color: inherit;
}
a {
color: inherit;
font-weight: bold;
}
audio {
width: 100%;
padding: 0.5em;
box-sizing: border-box;
text-shadow: none;
}
#stdout {
overflow: auto;
flex-grow: 1;
flex-shrink: 1;
padding: 0;
>div {
white-space: pre-wrap;
}
.term-bold {
font-weight: bold;
}
.term-centered {
text-align: center;
}
button {
border: none;
margin: 0;
padding: 0;
text-decoration: 2px solid underline;
}
}
#stdin-box {
flex-grow: 0;
flex-shrink: 0;
display: flex;
flex-direction: row;
align-items: center;
}
#stdin {
flex-grow: 1;
border: none;
outline: none;
margin: 0.25em;
}
#stdin-btn {
flex-grow: 0;
border: none;
margin: 0.25em;
}
#stdin-box[data-offline] {
color: #805500;
text-shadow: 0 0 5px #805500;
}
.history {
color: #805500;
text-shadow: 0 0 5px #805500;
}
|