base game code; there's no game here (yet)

This commit is contained in:
2023-01-28 21:08:47 -08:00
parent 0cd9cc5fb7
commit 07b56dcd40
11 changed files with 232 additions and 0 deletions

53
static/css/seagull.css Normal file
View File

@@ -0,0 +1,53 @@
html, body { height: 100% }
div#root {
display: flex;
width: 100%;
height: 100%;
}
div#main-sidebar {
display: flex;
flex-direction: column;
max-width: 265px;
/*padding-left: 5px;*/
padding-right: 5px;
border-right: 0.125em solid rgb(192, 192, 192);
}
div#side-seagull-name {
text-align: center;
}
div#side-seagull-name-editor {
display: none;
}
div#main-content {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
padding-left: 5px;
}
div#main-log {
display: flex;
flex-direction: column-reverse;
}
div.log-line {
display: flex;
flex-direction: row;
}
div.log-tick {
font-size: 0.75em;
margin-right: 0.2em;
}
div.log-msg {
margin-left: 0.2em;
}