From 5edc39fcc24d95a7c52e69da49b3853c6d969f4a Mon Sep 17 00:00:00 2001 From: IgrisBRC Date: Sat, 13 Jul 2024 11:38:32 +0530 Subject: refactored the project --- public/index.css | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 public/index.css (limited to 'public/index.css') diff --git a/public/index.css b/public/index.css new file mode 100644 index 0000000..08324aa --- /dev/null +++ b/public/index.css @@ -0,0 +1,47 @@ +*{ + margin: 0; + padding: 0; +} + +.box{ + height: 76px; + width: 76px; + position: relative; +} +.top-corner{ + padding: 1px; + position: absolute; +} +.bottom-corner{ + padding: 1px; + position: absolute; + bottom: 2px; + right: 2px; +} + +.white{ + background-color: #eaead2; + color: #4b7299; +} + +.black{ + background-color: #4b7299; + color: #eaead2; +} + +body{ + height: 100vh; + width: 100vw; + display: flex; + justify-content: center; + align-items: center; + margin: 1px; +} + +.chess-board{ + width: 608px; + height: 608px; + display: grid; + grid-template-columns:repeat(8,1fr); + grid-template-rows:repeat(8,1fr); +} -- cgit v1.2.3