diff options
author | amanjain1644 <[email protected]> | 2024-07-12 13:07:51 +0530 |
---|---|---|
committer | amanjain1644 <[email protected]> | 2024-07-12 13:07:51 +0530 |
commit | ee354fe80acadc0a8df5c34ed916b895fa10fb12 (patch) | |
tree | 757c2ead9367052ba3c28af084298d89df1f5221 /index.css | |
parent | bfa0b985607ab325117b329801eb16b37aed683c (diff) |
pawn move added
Diffstat (limited to 'index.css')
-rw-r--r-- | index.css | 27 |
1 files changed, 20 insertions, 7 deletions
@@ -1,13 +1,25 @@ +*{ + font-size: 30px; + margin: 0; + padding: 0; +} + .white{ background-color: antiquewhite; - height: 100px; - width: 100px; + height: 76px; + width: 76px; + display: flex; + justify-content: center; + align-items: center; } .black{ - height: 100px; - width: 100px; - background-color: brown; + height: 76px; + width: 76px; + background-color: brown; + display: flex; + justify-content: center; + align-items: center; } body{ @@ -16,11 +28,12 @@ body{ display: flex; justify-content: center; align-items: center; + margin: 1px; } .chess-board{ - width: 800px; - height: 800px; + width: 608px; + height: 608px; display: grid; grid-template-columns:repeat(8,1fr); grid-template-rows:repeat(8,1fr); |