mags-banko/style.css

61 lines
674 B
CSS

body {
margin: 2rem;
}
* {
box-sizing: border-box;
}
input[type=number] {
width: 150px;
}
main {
display: flex;
gap: 1rem;
}
.input-container {
display: flex;
flex-direction: column;
flex-wrap: wrap;
gap: 0.5rem;
background-color: #EEE;
margin: 0.5rem;
}
#numbers-container .input-container {
max-height: 800px;
display: flex;
flex-direction: row;
}
#numbers-container input {
flex-basis: calc(50% - 4px);
}
#numbers-container {
width: 400px;
}
#results {
margin-top: 1rem;
width: 400px;
}
#log {
height: 200px;
width: 400px;
font-family: monospace;
overflow-y: scroll;
}
#log time {
color: #BDBDBD;
}
#log .worker-id {
color: #2E7D32;
}