diff options
Diffstat (limited to 'play.css')
-rw-r--r-- | play.css | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -80,7 +80,6 @@ body header.fascist.your_turn { background-color: hsl(30, 35%, 65%); } .panel { padding: 4px; max-width: calc(1650px - 8px); - min-height: 281px; margin: 24px auto; border: 1px solid black; box-shadow: 2px 2px 4px #0004; @@ -99,6 +98,24 @@ body header.fascist.your_turn { background-color: hsl(30, 35%, 65%); } flex-wrap: wrap; gap: 16px; padding: 12px; + min-height: 281px; +} + +#bag_of_glory { + min-height: fit-content; + display: grid; + grid-template-columns: repeat(6, 51px); + grid-template-rows: repeat(3, 51px); + gap: 7px; +} + +#bag_of_glory_panel { + max-width: fit-content; + background-color: tan; +} + +#bag_of_glory_panel .panel_header { + background-color: wheat; } /* SPACES */ @@ -179,7 +196,6 @@ body header.fascist.your_turn { background-color: hsl(30, 35%, 65%); } padding: 0 0 12px 24px; gap: 8px; align-items: center; - } /* TOKENS */ |