aboutsummaryrefslogtreecommitdiff
path: root/src/styles/style.css
blob: 5946f95827208431918df3082913d455f2480013 (plain) (blame)
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
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");

@media (prefers-color-scheme: dark) {
    body {
        background: #252525;
        color: #ffffff;
    }

    a {
        color: #00e600;
        text-decoration: none;
    }

    a:hover {
        color: #00ff00;
    }

    a:active {
        color: #009400;
    }
}

@media (prefers-color-scheme: light) {
    body {
        background: #f3f3f3;
        color: #000000;
    }

    a {
        color: #009000;
        text-decoration: none;
    }

    a:hover {
        color: #00d000;
    }

    a:active {
        color: #00e100;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "JetBrains Mono", monospace;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.center {
    text-align: center;
}

p {
    font-size: 1.1em;
}

footer {
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
}

img.logo {
    padding: 1em;
    width: 50%;
    height: auto;
}