summaryrefslogtreecommitdiff
path: root/front/src/index.css
blob: 0193f3b2e4a622d79ea55092b3e4000c49d752be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
:root {
    --colorscheme-black: #050A0E;
    --colorscheme-blue: #00F0FF;
    --colorscheme-white: #FAFAFA;
    --colorscheme-gray: #3C3C3C;
    --colorscheme-light-gray: #909090F0;
}

* {
    color: var(--colorscheme-black);
}

body {
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 0px;
    min-height: 100%;
    min-width: 100%;
}

body > #root > div {
    height: 1000px;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}