added results screen
This commit is contained in:
parent
ec5ff41168
commit
eed32d77d3
5 changed files with 95 additions and 24 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue