Added source link
This commit is contained in:
parent
ae08d25e27
commit
dd005caf02
2 changed files with 33 additions and 12 deletions
21
index.html
21
index.html
|
@ -195,10 +195,10 @@
|
||||||
Contact Info
|
Contact Info
|
||||||
</h1>
|
</h1>
|
||||||
<ul>
|
<ul>
|
||||||
<li><i class="fas fa-globe fa-fw"></i> https://jshaver.net</li>
|
<li><i class="fas fa-globe fa-fw"></i> <a href="https://jshaver.net">https://jshaver.net</a></li>
|
||||||
<li><i class="fab fa-linkedin fa-fw"></i> linkedin.com/in/thejshaver</li>
|
<li><i class="fab fa-linkedin fa-fw"></i> <a href="https://www.linkedin.com/in/thejshaver">thejshaver</a></li>
|
||||||
<li><i class="fas fa-envelope fa-fw"></i> john@jshaver.net</li>
|
<li><i class="fas fa-envelope fa-fw"></i> <a href="mailto:john@jshaver.net">john@jshaver.net</a></li>
|
||||||
<li><i class="fas fa-phone fa-fw"></i> 801.850.3052</li>
|
<li><i class="fas fa-phone fa-fw"></i> <a href="tel:18018503052">801.850.3052</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="side-block skills">
|
<div class="side-block skills">
|
||||||
|
@ -236,24 +236,23 @@
|
||||||
</h1>
|
</h1>
|
||||||
<div class="recommendation">
|
<div class="recommendation">
|
||||||
"John Shaver has produced consistently excellent work over the years..."
|
"John Shaver has produced consistently excellent work over the years..."
|
||||||
<div classname="attribution">Joel Pomije<br>Lead Developer</div>
|
<div class="attribution"><a href="https://www.linkedin.com/in/joel-pomije-7123822/">Joel Pomije<br>Lead Developer</a></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="recommendation">
|
<div class="recommendation">
|
||||||
"He is very knowledgable in the fields of JavaScript, as well as networking, servers and the internet in general."
|
"He is very knowledgable in the fields of JavaScript, as well as networking, servers and the internet in general."
|
||||||
<div classname="attribution">Drew Warren<br>Scrum Master/Developer</div>
|
<div class="attribution"><a href="https://www.linkedin.com/in/drew-warren-853551122/">Drew Warren<br>Scrum Master/Developer</a></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="recommendation">
|
<div class="recommendation">
|
||||||
"He has a very broad knowledge base that he brings to any project..."
|
"He has a very broad knowledge base that he brings to any project..."
|
||||||
<div classname="attribution">James Hagar<br>Project Manager</div>
|
<div class="attribution"><a href="https://www.linkedin.com/in/james-hager-ab361112a/">James Hagar<br>Project Manager</a></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="recommendation">
|
<div class="recommendation">
|
||||||
"John is an extremely capable and high value asset to a team. ..."
|
"John is an extremely capable and high value asset to a team. ..."
|
||||||
<div classname="attribution">AJ ONeal<br>Code Whisperer Lv. 99</div>
|
<div class="attribution"><a href="https://coolaj86.com/">AJ ONeal<br>Code Whisperer Lv. 99</a></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!--
|
<div class="source-link no-print">
|
||||||
This resume; was wholly typeset with HTML/CSS -- see: https://git.io/vVSYL
|
source code: <a href="https://git.jshaver.net/jshaver/html-resume">https://git.jshaver.net/jshaver/html-resume</a>
|
||||||
-->
|
|
||||||
</div>
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
<script>
|
<script>
|
||||||
|
|
24
style.css
24
style.css
|
@ -417,7 +417,9 @@ svg.ts-logo {
|
||||||
width: 1.125rem;
|
width: 1.125rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 0.1125rem;
|
top: 0.1125rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@media not print {
|
@media not print {
|
||||||
a[href]{
|
a[href]{
|
||||||
|
@ -437,4 +439,24 @@ svg.ts-logo {
|
||||||
}
|
}
|
||||||
-webkit-print-color-adjust: exact;
|
-webkit-print-color-adjust: exact;
|
||||||
print-color-adjust: exact;
|
print-color-adjust: exact;
|
||||||
|
|
||||||
|
.no-print {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.source-link {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
right: 10rem;
|
||||||
|
background-color: #77AADD;
|
||||||
|
padding: 0.5rem 1.5rem 0.5rem 1.5rem;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
color: #111;
|
||||||
|
border-radius: 4px 4px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.source-link a {
|
||||||
|
color: #333;
|
||||||
|
}
|
Loading…
Reference in a new issue