51 lines
684 B
CSS
51 lines
684 B
CSS
#header {
|
|
display: flex;
|
|
}
|
|
|
|
#header>div {
|
|
padding: 10px;
|
|
border: 2px solid grey;
|
|
}
|
|
|
|
.state_row_header {
|
|
white-space: nowrap;
|
|
text-align: right;
|
|
}
|
|
|
|
.points {
|
|
text-align: center;
|
|
}
|
|
|
|
#wrapper {
|
|
display: grid;
|
|
grid-template-columns: 1fr 250px;
|
|
grid-template-rows: 1fr;
|
|
grid-gap: 10px;
|
|
}
|
|
|
|
.card_display {
|
|
width: 82px;
|
|
height: 150px;
|
|
}
|
|
|
|
#points_summary_row {
|
|
border-top: 4px double black;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.active_player_highlight {
|
|
background: grey;
|
|
color: white;
|
|
}
|
|
|
|
.player_name_highlight {
|
|
background: grey;
|
|
color: white;
|
|
}
|
|
|
|
.standings_round_final_row {
|
|
border-bottom: 1px solid black;
|
|
} |