summaryrefslogtreecommitdiff
path: root/static/style.css
blob: 6e5ec50c3efb98e2d4873393245b5bc531e95f8d (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@font-face {
    font-family: Ubuntu;
    src: url(/Ubuntu-R.ttf);
}

@font-face {
    font-family: Genos-divoc;
    src: url(/Genos-VariableFont_wght.ttf);
}

body {
    background-color: #57c0a2;
    font-family: Ubuntu, sans-serif;
}

.main-content {
    padding: 2em;
    border-radius: 1em;
    margin: auto;
    margin-top: 10em;
    margin-bottom: 5em;
    max-width: 50em;
    background-color: #ffebd8;
}

a {
    color: black;
}

#exitGraph {
    width: 100%;
    height: 15em;
}

h1,h2,h3 {
    font-family: Genos-divoc, sans-serif;
    font-weight: 600;
}
h1 {
    font-size: 5rem;
}
h2 {
    font-size: 3.7rem;
}
h3 {
    font-size: 2rem;
}
h4{
    color: #9945c5;
}

.badge-info {
    background-color: #62c1a6;
    color: black;
}

.badge-warning {
    background-color: #fdbe4b;
    color: black;
}

.badge-danger {
    background-color: #ea4a72;
    color: black;
}

.text-muted {
    color: #222 !important;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #0e0e0f;
    }
    .main-content {
        background-color: #241b2b;
        color: #ffebd8;
    }

    .text-muted {
        color: #a74db7 !important;
    }
}