diff options
Diffstat (limited to 'client/src/Mancala/Play.css')
| -rw-r--r-- | client/src/Mancala/Play.css | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/client/src/Mancala/Play.css b/client/src/Mancala/Play.css index 8f73945..6aa0d8f 100644 --- a/client/src/Mancala/Play.css +++ b/client/src/Mancala/Play.css @@ -1 +1,44 @@ -/** Add some styles */
\ No newline at end of file +/** Add some styles */ +#board { + display: flex; + background: var(--board-color); + padding: 20px; + + border-radius: 10%; + + justify-content: center; + flex-flow: row; + flex-direction: row; + + width: 800px; + height: 400px; +} + +#pits { + position: relative; + display: inline-flex; + + + flex-direction: row; + flex-wrap: wrap; + justify-content: center; + + width: 80%; +} + +.playArea { + position: relative; +} + +.playerStatus { + position: relative; + display: flex; + + flex-direction: row; + flex-wrap: wrap; + justify-content: center; + align-items: center; + + height: 100px; + +} |
