1
0
mirror of https://gitlab.com/MisterBiggs/Resume.git synced 2025-07-27 00:31:30 +00:00

added print button

This commit is contained in:
2021-09-11 09:30:54 -07:00
parent f4038d30c8
commit 9bf6ff6008
3 changed files with 28 additions and 0 deletions

View File

@@ -40,3 +40,23 @@ header > h3 {
padding: 1em;
text-align: center;
}
#printbutton {
margin: 1.5em;
position: fixed;
bottom: 0;
right: 0;
z-index: 100;
background-color: lightskyblue;
animation: pulse-animation 10s infinite;
}
@keyframes pulse-animation {
0% {
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
}
20%,
100% {
box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
}
}