diff options
| author | physcik <mynameisgennadiy@vk.com> | 2026-04-11 01:55:54 +0500 |
|---|---|---|
| committer | physcik <mynameisgennadiy@vk.com> | 2026-04-11 01:55:54 +0500 |
| commit | ae614c0d1174d3b5527f1fb3dc6e339d7ad6a10b (patch) | |
| tree | 95ced0cbe0c7ed8b66bc30440b75c05429cac6dd /front/src/index.css | |
| parent | e243f101b3266ed98a1b668562a639408ffe36d7 (diff) | |
CSS pt 1
Diffstat (limited to 'front/src/index.css')
| -rw-r--r-- | front/src/index.css | 17 |
1 files changed, 17 insertions, 0 deletions
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 { |
