124 lines
2.0 KiB
Plaintext
124 lines
2.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ name }}</title>
|
|
<style>
|
|
/* PDF page settings - Weasyprint */
|
|
@page {
|
|
size: letter;
|
|
margin: 0.75in;
|
|
}
|
|
|
|
/* Hide web version, show ATS version */
|
|
.web-only {
|
|
display: none !important;
|
|
}
|
|
|
|
.ats-only {
|
|
display: block;
|
|
}
|
|
|
|
/* reset body - let @page handle margins */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
font-size: 11pt;
|
|
line-height: 1.4;
|
|
color: #000;
|
|
}
|
|
|
|
/* contact section - centered and simple */
|
|
#contact .ats-only h1 {
|
|
font-size: 20pt;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin: 0 0 6pt 0;
|
|
}
|
|
|
|
#contact .ats-only p {
|
|
text-align: center;
|
|
font-size: 10pt;
|
|
margin: 0 0 12pt 0;
|
|
}
|
|
|
|
/* section headers */
|
|
h3 {
|
|
font-size: 12pt;
|
|
font-weight: bold;
|
|
margin-top: 12pt;
|
|
margin-bottom: 6pt;
|
|
padding-bottom: 2pt;
|
|
border-bottom: 1pt solid #333;
|
|
}
|
|
|
|
/* first section no top margin */
|
|
#summary h3 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
/* Job entry headers */
|
|
.job-entry .ats-only h3 {
|
|
font-size: 11pt;
|
|
font-weight: bold;
|
|
margin: 10pt 0 2pt 0;
|
|
padding: 0;
|
|
border: none;
|
|
}
|
|
|
|
.job-entry .ats-only p {
|
|
font-size: 10pt;
|
|
margin: 2pt 0 6pt 0;
|
|
}
|
|
|
|
.job-entry {
|
|
margin-bottom: 12pt;
|
|
page-break-inside: avoid;
|
|
}
|
|
|
|
.job-entry:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* paragraphs */
|
|
p {
|
|
margin: 4pt 0;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
/* lists */
|
|
ul {
|
|
margin: 4pt 0 8pt 0;
|
|
padding-left: 20pt;
|
|
list-style-type: disc;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 2pt;
|
|
font-size: 10pt;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
/* sections */
|
|
div[id] {
|
|
margin-bottom: 10pt;
|
|
}
|
|
|
|
strong {
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
{{ content }}
|
|
</body>
|
|
|
|
</html>
|