moved theme sampling to json-resume/themes
This commit is contained in:
359
json-resume/themes/standard-resume.html
Normal file
359
json-resume/themes/standard-resume.html
Normal file
@@ -0,0 +1,359 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui">
|
||||
|
||||
<title>Bree LaPointe</title>
|
||||
|
||||
<style>
|
||||
html,
|
||||
body,
|
||||
div,
|
||||
span,
|
||||
applet,
|
||||
object,
|
||||
iframe,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p,
|
||||
blockquote,
|
||||
pre,
|
||||
a,
|
||||
abbr,
|
||||
acronym,
|
||||
address,
|
||||
big,
|
||||
cite,
|
||||
code,
|
||||
del,
|
||||
dfn,
|
||||
em,
|
||||
img,
|
||||
ins,
|
||||
kbd,
|
||||
q,
|
||||
s,
|
||||
samp,
|
||||
small,
|
||||
strike,
|
||||
strong,
|
||||
sub,
|
||||
sup,
|
||||
tt,
|
||||
var,
|
||||
b,
|
||||
u,
|
||||
i,
|
||||
center,
|
||||
dl,
|
||||
dt,
|
||||
dd,
|
||||
ol,
|
||||
ul,
|
||||
li,
|
||||
fieldset,
|
||||
form,
|
||||
label,
|
||||
legend,
|
||||
table,
|
||||
caption,
|
||||
tbody,
|
||||
tfoot,
|
||||
thead,
|
||||
tr,
|
||||
th,
|
||||
td,
|
||||
article,
|
||||
aside,
|
||||
canvas,
|
||||
details,
|
||||
embed,
|
||||
figure,
|
||||
figcaption,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
menu,
|
||||
nav,
|
||||
output,
|
||||
ruby,
|
||||
section,
|
||||
summary,
|
||||
time,
|
||||
mark,
|
||||
audio,
|
||||
video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
menu,
|
||||
nav,
|
||||
section {
|
||||
display: block;
|
||||
}
|
||||
body {
|
||||
line-height: 1.5;
|
||||
}
|
||||
ol,
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote,
|
||||
q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before,
|
||||
blockquote:after,
|
||||
q:before,
|
||||
q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
@import url(http://fonts.googleapis.com/css?family=Roboto);
|
||||
html,
|
||||
button,
|
||||
input,
|
||||
textarea {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
:root {
|
||||
--text: #333333;
|
||||
--headline: #c9cccf;
|
||||
--sub-headline: #96999b;
|
||||
--primary: rgb(207, 214, 255);
|
||||
--secondary: rgb(238, 245, 255);
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0 auto;
|
||||
padding: 4rem 2rem;
|
||||
max-width: 600px;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 26px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-top: 2rem;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: var(--headline);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1.2px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
display: block;
|
||||
text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
letter-spacing: 1.2px;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 14px;
|
||||
color: var(--sub-headline);
|
||||
padding-top: 0.5rem;
|
||||
padding-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
p,
|
||||
li {
|
||||
margin-bottom: 0.25rem;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
a {
|
||||
transition: box-shadow 160ms ease 0s;
|
||||
box-shadow: var(--secondary) 0px -9px 0px inset;
|
||||
border-bottom: 2px solid var(--primary);
|
||||
text-decoration: none;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
box-shadow: var(--primary) 0px -1.2em 0px inset;
|
||||
}
|
||||
|
||||
section ul {
|
||||
margin-top: 0.5rem;
|
||||
margin-left: 2.5rem;
|
||||
list-style: disc;
|
||||
}
|
||||
|
||||
.contact {
|
||||
padding-top: 2rem;
|
||||
}
|
||||
|
||||
.contact span {
|
||||
width: 100px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.skills ul {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.skills li {
|
||||
margin-bottom: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
padding: 0.25rem 1rem;
|
||||
background-color: var(--secondary);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.position {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.grey {
|
||||
color: var(--sub-headline);
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.pdf {
|
||||
color: var(--headline);
|
||||
transition: color ease 160ms;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.pdf:hover {
|
||||
box-shadow: none;
|
||||
color: var(--sub-headline);
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
padding: 0rem;
|
||||
}
|
||||
|
||||
section,
|
||||
div {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
.pdf {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="resume">
|
||||
<div class="header">
|
||||
<h1>Bree LaPointe</h1>
|
||||
</div>
|
||||
|
||||
<p>Programmer</p>
|
||||
|
||||
<p class="grey">San Francisco, US</p>
|
||||
|
||||
<p class="grey">Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!</p>
|
||||
|
||||
<section class="position">
|
||||
<h2>Work Experience</h2>
|
||||
<h3>
|
||||
|
||||
</h3>
|
||||
|
||||
<h4>
|
||||
CEO/President
|
||||
|
||||
| Invalid date
|
||||
|
||||
- Invalid date
|
||||
</h4>
|
||||
|
||||
<div class="summary">
|
||||
<p>Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.</p>
|
||||
</div>
|
||||
|
||||
<ul class="highlights">
|
||||
<li>Build an algorithm for artist to detect if their music was violating copy right infringement laws</li>
|
||||
<li>Successfully won Techcrunch Disrupt</li>
|
||||
<li>Optimized an algorithm that holds the current world record for Weisman Scores</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="position">
|
||||
<h2>Education</h2>
|
||||
<h3>University of Oklahoma</h3>
|
||||
<h4>
|
||||
Bachelor
|
||||
|
||||
-
|
||||
Information Technology
|
||||
|
||||
| Jun, 2011
|
||||
|
||||
- Invalid date
|
||||
</h4>
|
||||
</section>
|
||||
<section class="position">
|
||||
<h2>Projects</h2>
|
||||
<h3>
|
||||
Video compression for 3d media
|
||||
</h3>
|
||||
|
||||
<h4>
|
||||
Invalid date
|
||||
</h4>
|
||||
|
||||
<p>Innovative middle-out compression algorithm that changes the way we store data.</p>
|
||||
</section>
|
||||
<h2>Contact Information</h2>
|
||||
<section class="contact">
|
||||
|
||||
<p>
|
||||
<span>Email:</span>
|
||||
<a href="mailto:contact@blapointe.com" target="_blank" rel="noopener noreferrer">contact@blapointe.com</a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<span>Phone:</span> (912) 555-4321
|
||||
</p>
|
||||
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user