diff --git a/index.html b/index.html index e7214e1..56ff885 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,9 @@ MiningTcup + + +
@@ -85,6 +88,15 @@ the APK file here.

+
+

Contact Me

+

+ I'm sort of chronically online. Your best chance of + quick contact is a phone call, but Discord, email, and + text work too. +

+
+
@@ -181,5 +193,6 @@
+ diff --git a/script.js b/script.js index e69de29..155bf3e 100644 --- a/script.js +++ b/script.js @@ -0,0 +1,9 @@ +const $ = (id) => document.getElementById(id); + +$("contact-info-container").addEventListener("click", () => { + fetch("contact-info.obfuscated") + .then((response) => response.text()) + .then((text) => { + console.log(text ^ 69420); + }); +}); diff --git a/style.css b/style.css index a95117a..dc59a9c 100644 --- a/style.css +++ b/style.css @@ -51,15 +51,35 @@ max-width: 512px; } -h2, h3 { - margin-top: 16px; + margin-top: 0; margin-bottom: 0; } +h2 { + text-align: center; + margin-bottom: 8px; + margin-top: 16px; +} + p { margin-top: 0; - margin-bottom: 16px; + margin-bottom: 32px; +} + +.bullet-img { + height: 14px; + width: 14px; + object-fit: contain; + vertical-align: middle; + margin-right: 8px; +} + +#contact-info-container { + min-height: 57px; + max-width: 162.13px; + cursor: pointer; + background: #000000; } .centerer {