blob: e7604e3a79a768249e903fa8b862b766ce276dda (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
<style type="text/css">
@font-face {
font-family: 'Computer Modern Serif';
src: url('font/cmunrm.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Computer Modern Serif';
src: url('font/cmunbx.woff') format('woff');
font-weight: bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Computer Modern Serif';
src: url('font/cmunti.woff') format('woff');
font-weight: normal;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: 'Computer Modern Serif';
src: url('font/cmunbi.woff') format('woff');
font-weight: bold;
font-style: italic;
font-display: swap;
}
body {
font-family: 'Computer Modern Serif', serif;
line-height: 100%;
}
.align-center {
text-align: center;
}
.align-right {
text-align: right;
}
.page {
background: white;
display: block;
margin: 0 auto;
box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
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;
}
.skills {
padding-left: 0;
margin-left: 2.5%;
font-size: small;
}
a {
color: black;
}
h1,
h3 {
margin-top: 5px;
margin-bottom: 5px;
font-weight: normal;
}
h3 {
border-bottom-style: solid;
border-bottom-width: 1px;
}
h1.name {
font-size: xx-large;
font-weight: bold;
margin-bottom: 5px;
}
.subtitle {
font-size: small;
}
table {
margin-left: 5pt;
margin-right: 5pt;
width: 100%;
}
@media print {
body,
.page {
background: white;
margin: 0;
box-shadow: 0 0 0 white;
padding: 0;
}
}
</style>
|