diff --git a/index.html b/index.html
index 3c23433..a70bd8b 100644
--- a/index.html
+++ b/index.html
@@ -19,6 +19,9 @@
+
Anson Biggs
diff --git a/print.css b/print.css
index caf66ce..1a74262 100644
--- a/print.css
+++ b/print.css
@@ -16,3 +16,8 @@ h2::after {
display: none;
visibility: hidden;
}
+
+#printbutton {
+ display: none;
+ visibility: hidden;
+}
diff --git a/style.css b/style.css
index 2c1c019..cc9f5b4 100644
--- a/style.css
+++ b/style.css
@@ -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);
+ }
+}