-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 28ba794 with MkDocs version: 1.4.2
- Loading branch information
Unknown
committed
Sep 12, 2023
1 parent
8f306e8
commit f542c31
Showing
8 changed files
with
244 additions
and
172 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* Popup container */ | ||
.popup { | ||
position: relative; | ||
display: inline-block; | ||
cursor: pointer; | ||
} | ||
|
||
/* The actual popup (appears on top) */ | ||
.popup .popuptext { | ||
visibility: hidden; | ||
width: 160px; | ||
background-color: #555; | ||
color: #fff; | ||
text-align: center; | ||
border-radius: 6px; | ||
padding: 8px 0; | ||
position: absolute; | ||
z-index: 1; | ||
bottom: 125%; | ||
left: 50%; | ||
margin-left: -80px; | ||
} | ||
|
||
/* Popup arrow */ | ||
.popup .popuptext::after { | ||
content: ""; | ||
position: absolute; | ||
top: 100%; | ||
left: 50%; | ||
margin-left: -5px; | ||
border-width: 5px; | ||
border-style: solid; | ||
border-color: #555 transparent transparent transparent; | ||
} | ||
|
||
/* Toggle this class when clicking on the popup container (hide and show the popup) */ | ||
.popup .show { | ||
visibility: visible; | ||
} | ||
|
||
/* Add animation (fade in the popup) */ | ||
@-webkit-keyframes fadeIn { | ||
from { | ||
opacity: 0; | ||
} | ||
|
||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes fadeIn { | ||
from { | ||
opacity: 0; | ||
} | ||
|
||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
body { | ||
text-align: center; | ||
font-family: "Times New Roman" | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: cadetblue | ||
} | ||
|
||
a :visited { | ||
color: cadetblue | ||
} | ||
|
||
a:hover { | ||
color: #F00 | ||
} | ||
|
||
/* div{float:left} */ | ||
li { | ||
margin-top: 3px; | ||
} | ||
|
||
.left_content { | ||
text-align: left; | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// When the user clicks on <div>, open the popup | ||
function myFunction() { | ||
var popup = document.getElementById("myPopup"); | ||
popup.classList.toggle("show"); | ||
} | ||
var width = ((typeof screen !== 'undefined') ? screen.width : null) | ||
|| window.innerWidth | ||
|| document.documentElement.clientWidth | ||
|| document.body.clientWidth; | ||
if (width <= 800) { | ||
window.location = "m.resume.html"; | ||
} |
Oops, something went wrong.