From 12545d5ae65ed5e9d19d74a8bbe92870c5b6afb0 Mon Sep 17 00:00:00 2001 From: Ted Pier Date: Sun, 3 Aug 2025 16:09:21 -0700 Subject: [PATCH] contact section --- index.html | 5 ++++- script.js | 2 +- style.css | 3 +++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 56ff885..16f0d72 100644 --- a/index.html +++ b/index.html @@ -8,6 +8,9 @@ + + +
@@ -95,7 +98,7 @@ quick contact is a phone call, but Discord, email, and text work too.

-
+
diff --git a/script.js b/script.js index 911d2f0..415530c 100644 --- a/script.js +++ b/script.js @@ -6,6 +6,6 @@ infoContainer.addEventListener("click", () => { .then((response) => response.text()) .then((text) => { infoContainer.innerHTML = atob(text); - infoContainer.style.background = "transparent"; + infoContainer.classList.remove("cover"); }); }); diff --git a/style.css b/style.css index dc59a9c..1c55ce6 100644 --- a/style.css +++ b/style.css @@ -78,6 +78,9 @@ p { #contact-info-container { min-height: 57px; max-width: 162.13px; +} + +.cover { cursor: pointer; background: #000000; }