summaryrefslogtreecommitdiff
path: root/css/screen.css
blob: 5dedb9d46a00b858d82844095f65438889a1ea79 (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
:root {
  --accent: #e24301;
}

div.page-footer {
  text-align: center;
  font-size: small;
}

@media screen and (min-width: 800px) {
    body > header {
        background-image: url("../img/eduvpn_logo.png");
        background-repeat: no-repeat;
        background-position: 5% 50%; 
    }

    @media (prefers-color-scheme: dark) {
        body > header {
            background-image: url("../img/eduvpn_logo_dark.png");
        }
    }
}

main a.headerlink {
    margin-left: 0.15em;
}