Compare commits

..

No commits in common. "2c77d7a06cb19bd793c3e69fb97b43f3859723da" and "d31a0e523f78df63ccd017b22ea44baf3e7458b8" have entirely different histories.

9 changed files with 8 additions and 211 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
.DS_Store

View File

@ -1,87 +0,0 @@
@font-face {
font-family: selectric;
src: url(/assets/fonts/selectric-light.ttf);
}
@font-face {
font-family: selectric;
src: url(/assets/fonts/selectric-light-italic.ttf);
font-style: italic;
}
@font-face {
font-family: archer;
src: url(/assets/fonts/archer-thin.otf);
}
@font-face {
font-family: archer;
src: url(/assets/fonts/archer-thin-italic.otf);
font-style: italic;
}
@font-face {
font-family: archer;
src: url(/assets/fonts/archer-book.otf);
font-weight: bold;
}
@font-face {
font-family: archer;
src: url(/assets/fonts/archer-book-italic.otf);
font-weight: bold;
font-style: italic;
}
body {
font-family: archer;
}
.container {
width: 600px;
margin: 2em auto;
}
.header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #000;
}
.header .name {
font-family: selectric;
font-style: italic;
font-size: 4em;
}
.header .contact {
text-align: right;
font-weight: bold;
}
.header, .body {
padding: 0.5em;
}
.section .descriptor {
font-size: 1.5em;
font-weight: bold;
}
.section .block {
margin: 0.5em;
}
.section .block .title {
text-align: right;
font-style: italic;
font-weight: bold;
}
ul {
list-style-type: circle;
}
.proficiencies .block {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}

Binary file not shown.

Binary file not shown.

View File

@ -1,132 +1,17 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Chloe Herd</title> <!-- favicon -->
<link rel="icon" href="/favicon.ico" size="any"> <link rel="icon" href="/favicon.ico" size="any">
<link rel="icon" href="/favicon.svg" type="image/svg+xml"> <link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="/assets/chloe.css" type="text/css">
</head> </head>
<body> <body>
<div class="container"> <h1>
<div class="header"> Chloe Herd
<div class="name"> </h1>
Chloe Herd <hr />
</div> <p>
<div class="contact"> Still building...
<div class="method"> </p>
Columbus, OH
</div>
<div class="method">
chloe@chloeherd.codes
</div>
<div class="method">
Linkedin
</div>
</div>
</div>
<div class="body">
<div class="section work-experience">
<div class="descriptor">
Work Experience
</div>
<div class="block safelite">
<div class="title">
<span class="years">2023 - Present</span>   Full-Stack Engineer, Safelite, Columbus OH.
</div>
<div class="content">
<ul>
<li>
Implemented new designs for a greenfield rewrite of an e-commerce order form, using <strong>Vue.js</strong> and <strong>.NET</strong>.
</li>
<li>
Worked closely with product owners to quickly pivot development based on feedback and product goals.
</li>
<li>
Ran and updated <strong>Azure DevOps</strong> pipelines, facilitating seamless deployment of applications to multiple environments.
</li>
<li>
Worked in tandem with other teams to build an ecosystem of independent but interconnected business applications.
</li>
</ul>
</div>
</div>
</div>
<div class="section education">
<div class="descriptor">
Education
</div>
<div class="block uva">
<div class="title">
<span class="years">2020</span>  B.S. Computer Science, University of Virginia
</div>
</div>
</div>
<div class="section proficiencies">
<div class="descriptor">
Technologies
</div>
<div class="block languages">
<div class="item">
<span>C#</span>
</div>
<div class="item">
<span>Javascript</span>
</div>
<div class="item">
<span>Typescript</span>
</div>
<div class="item">
<span>Python</span>
</div>
<div class="item">
<span>Java</span>
</div>
<div class="item">
<span>HTML5</span>
</div>
<div class="item">
<span>CSS3</span>
</div>
<div class="item">
<span>C++</span>
</div>
<div class="item">
<span>Bash</span>
</div>
</div>
<div class="block frameworks">
<div class="item">
<span>Vue.js</span>
</div>
<div class="item">
<span>React</span>
</div>
<div class="item">
<span>Vuex</span>
</div>
<div class="item">
<span>Redux</span>
</div>
<div class="item">
<span>Node.js</span>
</div>
<div class="item">
<span>Docker</span>
</div>
<div class="item">
<span>.NET</span>
</div>
<div class="item">
<span>Azure DevOps</span>
</div>
<div class="item">
<span>Git</span>
</div>
</div>
</div>
</div>
</div>
</body> </body>
</html> </html>