aboutsummaryrefslogtreecommitdiff
path: root/include/head.html
blob: b3d945dc2541f4227d043db70b5b5661860438b1 (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
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
    /* CSS taken from https://perfectmotherfuckingwebsite.com/ */
    body{
        max-width:650px;
        margin:40px auto;
        padding:0 10px;
        font:18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        color:#444
    }
    h1,h2,h3{
        line-height:1.2
    }
    @media (prefers-color-scheme: dark){
        body{
            color:#c9d1d9;
            background:#0d1117
        }
        a:link{
            color:#58a6ff
        }
        a:visited{
            color:#8e96f0
        }
    }
</style>