blob: 8fbfdfcaea8856776531f29ea61a3ec0baef9578 (
plain) (
blame)
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
|
/* mainly for pdf */
@media print {
html {
max-width: 85%;
margin-top: 0;
margin-bottom: 0;
}
h1,
h2,
h3,
h4 {
break-after: avoid;
}
}
@page {
size: A3 portrait;
margin-top: 4em;
margin-bottom: 4em;
@bottom-right-corner {
content: counter(page) '/' counter(pages);
margin-left: 1em;
}
}
body > ul > li {
break-inside: avoid;
}
ul:nth-of-type(1) {
margin-bottom: 1em;
}
.job-meta {
float: right;
}
|