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
|
:root {
font-family: serif;
text-rendering: optimizelegibility;
font-kerning: normal;
color-scheme: light dark;
}
a:hover {
text-decoration-style: wavy;
}
main {
margin: 0 auto;
}
ul {
padding-left: 1rem;
}
.container {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 5%;
}
.container #left {
grid-column: 1;
}
.container #right {
grid-column: 2;
}
@media screen and (max-width: 900px) {
.container {
display: table
}
}
code { font-family: monospace }
.h-event .p-summary { display: inline-table }
h1,h2,h3,h4,h5,h6 {
font-family: sans-serif;
font-kerning: auto;
}
dt {
font-weight: bold;
}
h1,h2 {
width: 100%;
display: table;
padding: 0.25ex 0.25em;
}
h1 { border-bottom: 2pt solid }
h2 { border-bottom: 1pt solid }
h1, h2, h3 {
margin-bottom: 0;
}
ul {
margin: 0.1rem;
}
dd {
margin-left: 1rem;
}
li p {
margin: 0.2rem;
}
.skills dd:not(.block) {
display: inline-block;
}
@media screen {
main { max-width: 70em }
.container #left {
max-width: 21em;
}
}
@media print {
@page {margin: 10mm 5mm;}
nav, footer, .no-print { display: none }
dl, p, li {
font-size: 0.9em;
}
/*
a:not(.link-no-print)::after { content: " (" attr(href) ")"; }
a::after {
font-family: monospace;
color: initial;
}
*/
.verbatim-print { font-family: monospace; }
a {
text-decoration: none;
color: blue;
}
section { page-break-inside: avoid }
abbr { text-decoration: none }
}
|