-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstyle.css
More file actions
186 lines (153 loc) · 2.87 KB
/
Copy pathstyle.css
File metadata and controls
186 lines (153 loc) · 2.87 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
body {
font-family: "Times New Roman", Times, serif;
/* 13px to 15px looks good */
font-size: 15px;
/* 1.38, 1.4, or 1.5 looks good */
line-height: 1.4;
margin: 0 auto;
}
#wrapper {
margin: 0 auto;
max-width: 800px;
}
/* when generating the resume as a website or as headless, this will keep a nice readable margin in place */
#resume {
margin: 0.4in;
}
/* use-case is when a user generates their resume as a website, saves their website as a PDF, and uses their browser to manage the margins during save */
@media print {
#resume {
margin: 0;
}
}
/* Page margins for PDF export (Puppeteer / print). Without this, the export defaults to ~0 margin. */
@page {
margin: 0.5in;
}
ul {
margin-bottom: 0;
}
li {
margin-bottom: 2px;
}
a {
color: black;
/* it's less likely someone will click the links; removing underline to reduce noise */
text-decoration: none;
}
.display-none {
/* simply turns off the display in the div */
display: none;
}
.basics {
text-align: center;
margin-bottom: 10px;
}
.basics-name {
font-size: 33px;
font-weight: normal;
margin: 0 0 2px 0;
line-height: 1.1;
}
.basics-contact-row {
font-size: 13px;
line-height: 1.2;
}
.basics-contact-row:empty {
display: none;
}
.basics-contact-item + .basics-contact-item::before {
content: "·";
margin: 0 6px;
}
.section-block {
display: block;
width: 100%;
}
.section-name {
color: #004687;
display: block;
font-weight: 600;
font-size: 18px;
}
.section-line {
border-color: none;
border-style: hidden;
border-width: 1px;
margin-top: 3px;
margin-bottom: 3px;
}
.section-intro-line {
border-color: #004687;
border-style: solid;
border-width: 1px;
margin-top: 0px;
margin-bottom: 3px;
}
#work-block .block-header,
#volunteer .block-header {
display: flex;
align-items: center;
}
.block-header .date {
font-weight: normal;
font-style: italic;
color: #555;
text-align: right;
margin-left: auto;
white-space: nowrap;
}
.block-header .organization {
font-weight: bold;
text-align: left;
}
#work-block .block-header .organization {
font-weight: normal;
font-style: italic;
color: #555;
}
.block-header .title {
font-weight: 600;
font-size: 16px;
text-align: left;
}
#work-block .block-header .organization::before,
#volunteer .block-header .organization::before {
content: "\00a0|\00a0";
font-weight: normal;
}
.section-content {
display: block;
line-height: 1.15;
padding-left: 6px;
}
.section-content ul {
padding-left: 20px;
margin-top: 3px;
list-style-type: circle;
}
.highlights li {
margin-bottom: 0;
}
.job-meta {
font-style: italic;
color: #555;
}
.job-summary {
margin-top: 3px;
}
.section-content .title {
font-weight: bold;
}
.section-content .date {
float: right;
}
.section-content .separator {
height: 4px;
}
.summary {
margin-top: 6px;
}
.job-block {
page-break-inside: avoid;
}