aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: d278361670947e3f959d80139b0b2f78e5afc901 (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
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
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>

<head>
    <title>{{ .Site.Title }}</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta charset="utf-8" />
    <link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/cmu-serif" type="text/css" />

    <style type="text/css">
        body {
            font-family: 'CMUSerifRoman', serif;
            font-size: 13pt;
            line-height: 120%;
            background: white;
            display: block;
            margin: 1cm auto;
            box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
            min-width: 21cm;
            width: 21cm;
            height: 29.7cm;
            padding: 1.2cm;
            box-sizing: border-box;
        }

        ul {
            margin: 0;
            padding-left: 50px;
            list-style-type: disc;
            font-size: small;
        }

        ul.skills {
            padding-left: 0;
            margin-left: 2.5%;
        }

        a {
            color: black;
        }

        h1,
        h2,
        h3 {
            margin-top: 5px;
            margin-bottom: 0;
            font-weight: normal;
        }

        h1.name {
            font-size: xx-large;
            font-weight: bold;
            margin-bottom: 5px;
        }

        hr {
            margin-top: 0;
            margin-bottom: 5px;
        }

        em {
            font-size: small;
        }

        table {
            margin-left: 2.5%;
            width: 95%;
        }

        @media print {
            body {
                margin: 0;
                padding: 0;
                box-shadow: 0 0 0;
            }
        }
    </style>
</head>

<body>
    {{- block "main" . }}{{- end }}
</body>

</html>