19 lines
179 B
CSS
19 lines
179 B
CSS
|
|
#content {
|
||
|
|
display: flex;
|
||
|
|
margin: 4rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
#score,
|
||
|
|
#codes,
|
||
|
|
#fights {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
flex-grow: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
#fights {
|
||
|
|
.slot {
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
}
|
||
|
|
}
|