summaryrefslogtreecommitdiff
path: root/front/src/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'front/src/index.css')
-rw-r--r--front/src/index.css17
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 {