-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcv.css
89 lines (75 loc) · 1.41 KB
/
cv.css
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
/* import fonts */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;700&display=swap');
/* all formats */
.cvdate {
float: right;
font-style: italic
}
.print-only {
display: none;
/*color: aquamarine;*/
}
/* adapt stylesheet for print
from: https://github.com/quarto-dev/quarto-cli/discussions/2538#discussioncomment-4081842 */
/* for page-breaks use style spans
page-break-before: always;
page-break-after: always;
*/
@media print {
@page {
size: a4 portrait;
counter-increment: page;
@bottom-center {
content: counter(page)
}
}
.no-print {
display: none;
}
.print-only {
display: block;
}
.contact-block {
margin-top: 0%;
text-align: center;
}
html {
font-family: 'Public Sans', sans-serif;
}
header {
margin-block-end: 5em;
}
header h1.title {
display: none;
}
header .author {
font-size: 2em;
font-weight: 900;
color: black;
text-align: center;
margin-block-end: 0em;
margin-bottom: 0;
text-transform: capitalize;
}
h2 {
font-weight: 900;
text-transform: uppercase;
/* color: blueviolet; */
}
h3 {
font-weight: 700;
text-transform: uppercase;
/* color: green; */
}
p {
font-size: small;
}
ul li{
font-size: smaller;
}
a {
text-decoration: none;
font-weight: 700;
color: #36a7e9;
}
}