summaryrefslogtreecommitdiff
path: root/wwwroot/styles/global.css
blob: 6c6e6f1dde5d178b3a847eff2d22e7324a7a26bc (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
:root {
    --col-bg: #222;
    --col-navbar-bg: magenta;
}

body {
    margin:      0;
    background:  var(--col-bg);
    color:       white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode';
}

a {
    color:           white;
    text-decoration: none;
}

input {
    color:         white;
    box-sizing:    border-box;
    border:        1px solid #aaa;
    background:    rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}