Initial commit & basic panel structure

This commit is contained in:
obergodmar
2020-06-22 02:16:38 +03:00
parent 8ad73c3c4c
commit 00e142bf09
32 changed files with 1682 additions and 610 deletions
+22
View File
@@ -0,0 +1,22 @@
:root {
--background: #170e09;
--foreground: #ebdec2;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
background: var(--background);
color: var(--foreground);
overflow: hidden;
}
.main {
width: 100vw;
height: 100vh;
overflow: hidden;
}