-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresume.html
308 lines (272 loc) · 6.76 KB
/
resume.html
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
---
title: 'Resume'
layout: default
---
<style type="text/css">
body {
background-color: var(--color-background);
}
main nav > ul {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: space-around;
list-style: none;
padding: 0;
}
main nav > ul > li {
display: flex;
align-items: center;
gap: 0.5rem;
}
main h1 {
font-family: Georgia,'Times New Roman',serif;
font-size: 2.5em;
font-weight: lighter;
text-align: center;
}
main h2 {
color: var(--color-accent-light);
display: inline-block;
margin: 1rem 0;
text-transform: uppercase;
}
main h3 {
display: inline-block;
margin: 0.5rem 0 0.25rem;
}
main p {
margin: 0.5rem 0;
}
.resume-location {
color: rgba(0,0,0,0.6);
}
.resume-experience {
padding: 0.75rem 0;
}
.experience-org a {
color: black;
text-decoration: none;
}
ul.achievements {
padding-left: 1.25rem;
margin: 0.5rem 0;
}
.experience-skills-title {
margin: 0.5rem 0;
}
.more {
transition: 0.5s ease;
overflow-y: hidden;
opacity: 1;
visbility: visible;
}
li.more {
/* bullet disappears with overflow hidden */
overflow-y: visible;
}
.hide-more .more {
height: 0;
transform: scaleY(0);
margin: 0;
padding: 0;
opacity: 0;
visbility: hidden;
}
.hide-more span.more {
/* inline elements don't accept height */
display: none;
}
main .form {
display: flex;
flex-direction: row;
gap: 0.5rem;
justify-content: center;
margin: 1rem auto;
}
main .form button {
flex-basis: 12rem;
}
.toggle-text:after {
content: 'Concise Version';
}
.hide-more .toggle-text:after {
content: 'Full Version';
}
@media print {
.experience-skills li:after {
content: ', ';
}
.experience-skills li:last-of-type:after {
content: '';
}
}
@media screen {
main {
margin-right: auto;
margin-left: auto;
max-width: var(--container-width);
padding-left: 1rem;
padding-right: 1rem;
}
.resume-experience {
--timeline-padding: 0.75rem;
--timeline-border-width: 2px;
padding-left: var(--timeline-padding);
border-left: var(--timeline-border-width) solid var(--color-alternate-light);
}
.resume-experience h3 {
position: relative;
}
.resume-experience h3:before {
content: '';
position: absolute;
left: calc(var(--timeline-border-width) / -2 - var(--timeline-padding));
bottom: 0;
transform: translate(-50%, -0.5rem);
width: 0.5rem;
height: 0.5rem;
border-radius: 50%;
background: var(--color-alternate);
z-index: 1;
}
ul.experience-skills {
}
.experience-skills li {
}
}
</style>
<div class="h-resume">
<h1 class="p-name h-card">
<a href="/" class="p-name u-url disable-link-styles print-show">Anthony Ciccarello</a>
<span class="print-hide">Resume</span>
</h1>
<nav>
<ul>
<li>
{% include "icons/email.svg" %}
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li>
{% include "icons/link.svg" %}
<a href="{{page.url}}">www.ciccarello.me</a>
</li>
<li>
{% include "icons/linkedin.svg" %}
<a href="https://www.linkedin.com/in/anthonyciccarello/">in/anthonyciccarello</a>
</li>
<li>
{% include "icons/github.svg" %}
<a href="https://github.com/aciccarello">@aciccarello</a>
</li>
</ul>
</nav>
<div>
<h2>Summary</h2>
<span class="resume-location">﹣ San Diego County, California</span>
<p class="p-summary">{{resume.summary}}</p>
<h2>Top Skills</h2>
<ul class="experience-skills chip-set">
{% for skill in resume.topSkills %}
<li class="p-skill chip-item">
{{ skill }}
</li>
{% endfor %}
</ul>
<section class="form actions print-hide">
<button class="toggle-text" type="button" onclick="toggleExpandedText()">Show </button>
<button type="button" onclick="window.print()">Print for PDF</button>
</section>
<section>
<h2>Experience</h2>
{% for job in resume.experience %}
<div class="resume-experience p-experience h-event">
<div class="duration">
<time class="dt-start" datetime="{{ job.startDate | formatMachineDate : "month" }}">{{ job.startDate | formatHumanDate : "month" }}</time>
﹣
{% if job.endDate %}
<time class="dt-end" datetime="{{ job.endDate | formatMachineDate : "month" }}">{{ job.endDate | formatHumanDate : "month" }}</time>
{% else %}
Present
{% endif %}
{%- assign endDate = job.endDate | default : buildTime -%}
{% if job.durationText %}
({{job.durationText}})
{% else %}
({{job.startDate | yearsSince : endDate | default: '1 month' }})
{% endif %}
</div>
<h3 class="p-name">{{job.position}}</h3>
<span class="experience-org p-location h-card">
{% if job.companyUrl %}
<a class="p-org u-url" href="{{job.companyUrl}}" rel="noopener noreferrer">
{%- endif -%}
{{job.companyName}}
{%- if job.companyUrl -%}
</a>
{% endif %}
</span>
<span class="resume-location more">﹣ <span class="p-location">{{job.location}}</span></span>
<div class="p-summary">
<p class="more">{{job.summary}}</p>
<ul class="achievements">
{% for achievement in job.achievements %}
<li>
{{ achievement }}
</li>
{% endfor %}
{% for achievement in job.moreAchievements %}
<li class="more">
{{ achievement }}
</li>
{% endfor %}
</ul>
</div>
{% if job.skills and job.skills.length > 0 %}
<h4 class="experience-skills-title more">Skills and Technologies</h4>
<ul class="experience-skills chip-set more">
{% for skill in job.skills %}
<li class="p-skill chip-item">
{{ skill }}
</li>
{% endfor %}
</ul>
{% endif %}
</div>
{% endfor %}
</section>
<section class="p-education h-event">
<h2>Education</h2>
<div class="duration">
<time class="dt-start" datetime="2010">2010</time>
﹣
<time class="dt-end" datetime="2014">2014</time>
</div>
<h3 class="p-name">Bachelor of Science (BS), Computer Engineering</h3>
<span class="experience-org p-location h-card">
<span class="p-org">Cedarville University</span>
</span>
<p class="p-summary">Minor in Mathematics, and Computer Science.</p>
</section>
<section class="more">
<h2>Personal<span class="print-hide"> Tidbits</span></h2>
<ul>
{% for item in resume.personal %}
<li>{{ item }}</li>
{% endfor %}
</ul>
</section>
</div>
<section class="form actions print-hide">
<button class="toggle-text" type="button" onclick="toggleExpandedText()">Show </button>
<button type="button" onclick="window.print()">Print for PDF</button>
</section>
</div>
<script>
function toggleExpandedText() {
document
.querySelector('.h-resume')
.classList
.toggle('hide-more');
}
</script>