46 lines
458 B
CSS
46 lines
458 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;
|
|
gap: 0.5rem;
|
|
background-color: #EEE;
|
|
margin: 0.5rem;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|