From ae614c0d1174d3b5527f1fb3dc6e339d7ad6a10b Mon Sep 17 00:00:00 2001 From: physcik Date: Sat, 11 Apr 2026 01:55:54 +0500 Subject: CSS pt 1 --- front/src/index.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'front/src/index.css') diff --git a/front/src/index.css b/front/src/index.css index dfdc4ba..4e7932e 100644 --- a/front/src/index.css +++ b/front/src/index.css @@ -1,3 +1,14 @@ +:root { + --colorscheme-black: #050A0E; + --colorscheme-blue: #00F0FF; + --colorscheme-white: #FAFAFA; + --colorscheme-gray: #3C3C3C; +} + +* { + color: var(--colorscheme-black); +} + body { padding: 0; margin: 0; @@ -8,6 +19,12 @@ body { -moz-osx-font-smoothing: grayscale; position: absolute; top: 0px; + min-height: 100%; + min-width: 100%; +} + +body > #root > div { + height: 1000px; } code { -- cgit v1.3