57 lines
874 B
CSS
57 lines
874 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
align-items: center;
|
|
display: flex;
|
|
font-size: 16px;
|
|
font-family: monospace;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.log {
|
|
background: black;
|
|
color: green;
|
|
height: 600px;
|
|
overflow-y: auto;
|
|
padding: 0.25em 1em;
|
|
width: 800px;
|
|
}
|
|
|
|
.status {
|
|
background: black;
|
|
border: none;
|
|
border-bottom: 1px solid gray;
|
|
color: green;
|
|
display: flex;
|
|
font-family: monospace;
|
|
font-size: 16px;
|
|
margin: 0;
|
|
padding: 0.5em 1em;
|
|
width: 800px;
|
|
}
|
|
|
|
.score {
|
|
flex: 1 1 50%;
|
|
text-align: right;
|
|
}
|
|
|
|
.turns {
|
|
flex: 1 1 50%;
|
|
}
|