Basics page

This commit is contained in:
2023-02-06 12:20:03 -06:00
parent f07d0e315b
commit 0c3a290ce8
3 changed files with 553 additions and 4 deletions
+14 -3
View File
@@ -21,8 +21,8 @@ body {
.snippetEmulator {
display: grid;
grid-template-rows: 10em 1em 1em 2em;
grid-template-columns: 20em;
grid-template-rows: auto 1em 1em 2em;
grid-template-columns: 40em;
background: #333333;
font-family: monospace;
padding: 0.5em;
@@ -59,4 +59,15 @@ body {
.snippetEmulator .src .number { color: lightskyblue }
.snippetEmulator .src .string { color: darkseagreen }
.snippetEmulator .src .label { color: chocolate }
.snippetEmulator .src .comment { color: grey }
.snippetEmulator .src .comment { color: grey }
span.mono {
font-family: monospace;
font-weight: bolder;
color: white;
}
p.sidebar {
background-color: #555555;
border: 1px solid #aaaaaa;
padding: 0.5em;
}