Add inital setup including 'go' command

This commit is contained in:
Andrew Miner
2018-05-26 21:49:53 -06:00
parent bb665bca3c
commit 4563482d17
7 changed files with 542 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
* {
box-sizing: border-box;
}
body {
align-items: center;
display: flex;
font-size: 16px;
font-family: monospace;
flex-direction: column;
justify-content: center;
}
div.log {
background: black;
color: green;
height: 600px;
overflow-y: scroll;
padding: 0.25em 1em;
width: 800px;
}
input.entry {
background: black;
border: none;
border-top: 1px solid gray;
color: green;
font-family: monospace;
font-size: 16px;
margin: 0;
outline: none;
padding: 0.5em 1em;
width: 800px;
}
p.log-text {
}
p.placeholder {
color: gray;
}