70 lines
775 B
CSS
70 lines
775 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;
|
|
}
|
|
|
|
#result-list div {
|
|
margin-top: 1rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
#result-list .winner {
|
|
color: #2E7D32;
|
|
}
|
|
|
|
#log {
|
|
height: 200px;
|
|
width: 400px;
|
|
font-family: monospace;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
#log time {
|
|
color: #BDBDBD;
|
|
}
|
|
|
|
#log .worker-id {
|
|
color: #2E7D32;
|
|
}
|
|
|