added results screen

This commit is contained in:
Jack Wines 2023-06-15 13:26:19 -07:00
parent ec5ff41168
commit eed32d77d3
5 changed files with 95 additions and 24 deletions

View file

@ -4,6 +4,35 @@ body {
align-items: center;
}
.first-place {
background-color: #c4a500 !important;
}
.second-place {
background-color: #cecdcd !important;
}
.third-place {
background-color: #955822 !important;
}
#results {
display: grid;
grid-template-columns: auto 30%;
column-gap: 7px;
row-gap: 5px;
}
#results > div {
display: flex;
flex-direction: row;
gap: 7px;
}
#results > div > div {
padding: 2px
}
#inputs, .options {
display: flex;
flex-direction: column;