This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Modal XYZ--> | |
<div id="popupXYZ" class="popup"> | |
<div class="popup-content"> | |
<div class="container"> | |
<div id="closePopupXYZ" class="close">×</div> | |
<div id="xyzAndroid" class="tabContent"> | |
<img src="images/xyz_android.png" width="100%" /> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ABC Company | |
const popupABC = document.getElementById("popupABC"); | |
document.getElementById("jobABC").onclick = () => popupABC.style.display = "block"; | |
document.getElementById("closePopupABC").onclick = () => popupABC.style.display = "none"; | |
window.onclick = (event) => { | |
switch (event.target) { | |
case popupABC: | |
popupABC.style.display = "none"; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container { | |
position: relative; | |
width: 100%; | |
} | |
.container:hover .image { | |
opacity: 0.7; /* opacity of the image in popup modal */ | |
} | |
.container:hover .middle { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<link rel="stylesheet" type="text/css" href="css/popup.css" /> | |
</head> | |
<body class="document"> | |
<div class="page" contenteditable="false"> | |
... | |
<h4>Employment History</h4> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input id="cvUrl" class="hidden-cv-url" type="text" | |
value="https://ng-the-engineer.github.io/cv2/" | |
/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const print = function () { | |
window.print(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#" class="print" onclick="print()"><i class="fa fa-print"</i></a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<!-- Existing reference ... --> | |
<link rel="stylesheet" type="text/css" href="css/sidebar.css" /> | |
<link rel="stylesheet" type="text/css" href="css/copy.css" /> | |
<link rel="stylesheet" type="text/css" href="css/snackbar.css" /> | |
<link rel="stylesheet" | |
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.key-cert-column-title { | |
display: inline-block; | |
width: 400px; | |
} | |
.key-cert-column-org { | |
display: inline-block; | |
width: 100px; | |
} | |
.key-cert-column-date { | |
display: inline-block; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.skill-tag { | |
border-radius: 15px 15px 15px 15px; | |
background: #fbc531; | |
padding: 1px 4px; | |
font-size: 8px; | |
font-weight: 300; | |
font-family: "Saira Extra Condensed", sans-serif; | |
} |