|
|
|
@ -9,6 +9,17 @@ body { |
|
|
|
|
grid-column-gap: 5vmin; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@media (width < 50em) { |
|
|
|
|
body { |
|
|
|
|
grid-template-columns: 1fr; |
|
|
|
|
grid-template-rows: min-content min-content min-content; |
|
|
|
|
grid-template-areas: |
|
|
|
|
"counters" |
|
|
|
|
"game1" |
|
|
|
|
"game2"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
section.counters { |
|
|
|
|
grid-area: counters; |
|
|
|
|
} |
|
|
|
@ -58,8 +69,8 @@ table.game-board-table tbody.game-board td { |
|
|
|
|
tbody.game-board button, |
|
|
|
|
tbody.game-board button:disabled, |
|
|
|
|
tbody.game-board button:hover { |
|
|
|
|
width: 4em; |
|
|
|
|
height: 4em; |
|
|
|
|
width: min(4em, 15vmin); |
|
|
|
|
height: min(4em, 15vmin); |
|
|
|
|
border: none; |
|
|
|
|
background-color: transparent; |
|
|
|
|
color: transparent; |
|
|
|
|