aboutsummaryrefslogtreecommitdiff
path: root/server/src/routes/ui/style/layout.css
blob: 078dd4e77ce431efe76a8cc0b6c78c1a68829c80 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@font-face {
    font-family: "Cantarell";
    src: url(/assets/cantarell.woff2) format("woff2");
}

* {
    color: rgb(218, 218, 218);
    font-family: "Cantarell", sans-serif;
    font-weight: 500;
}

body {
    background-color: #0f0f0f;
    width: 100vw;
}

nav {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 1em;
    width: calc(100vw - 2em);
    height: 2em;
    background-color: #27272744;
}

nav h1 {
    margin: 0px;
    font-size: 1.5em;
    display: inline;
    margin-right: 1em;
}

#main {
    margin-top: 5em;
    padding: 1em;
    padding-left: 3em;
    padding-right: 3em;
}

.error {
    padding: 1em;
    color: rgb(255, 117, 117);
    font-family: monospace;
}

select,
input {
    color: white;
    background-color: black;
}
option {
    font-family: "Cantarell", sans-serif;
}