Web-based NovaForth repl

This commit is contained in:
2023-01-01 17:26:21 -06:00
parent 63d58b63e3
commit 2dea244673
13 changed files with 1097 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
body {
background-color: #333333;
color: #dddddd;
font-family: sans-serif;
}
.content {
display: grid;
grid-template-columns: 1fr 8fr 1fr;
grid-template-rows: auto auto;
}
.terminal {
grid-area: 1 / 2 / 1 / 2;
border: 2px solid #777777;
}
.instructions {
grid-area: 2 / 2 / 2 / 2;
}
a {
color: #ffffff;
}
pre {
background: #0f0f0f;
}
td.word, td.signature {
font-family: monospace;
font-weight: bold;
padding-right: 1em;
}