summaryrefslogtreecommitdiff
path: root/development/css/main.css
blob: 389c5eac286caa7a9357a10f7cd911494b77f93f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
body {
    margin: 0;
    height: 100vh;
    display: grid;
    align-items: center;
    justify-items: center;
}

@media (prefers-color-scheme: dark) {
    body {
        background: black;
    }

    pre {
        color: white;
    }
}