diff --git a/index.html b/index.html index f44c3f4..837acf6 100644 --- a/index.html +++ b/index.html @@ -56,18 +56,34 @@ -
+
+
+ Reach out! + +
+ + +
+
- - + + + \ No newline at end of file diff --git a/index.js b/index.js index 128c331..f88f779 100644 --- a/index.js +++ b/index.js @@ -50,3 +50,7 @@ LanyardWrapper.connectWebSocket("886685857560539176", onUpdate) .catch(err => { console.error(err); }); +function showCredits() { + document.getElementById("credits").style.display = "block" + document.getElementById("credits-button").style.display = "none" +} \ No newline at end of file diff --git a/music.png b/music.png index fc07a9d..722e890 100644 Binary files a/music.png and b/music.png differ diff --git a/style.css b/style.css index 2dd7c43..22a303b 100644 --- a/style.css +++ b/style.css @@ -63,4 +63,17 @@ li { } #presence { display: flex; -} \ No newline at end of file +} +#bottom-actions { + display: flex; + align-items: end; + justify-content: right; +} +button { + background-color: #404040; + color: white; + box-shadow: inset -1px -1px #000000, inset 1px 1px #202020, inset -2px -2px grey, inset 2px 2px #404040; +} +button:active { + box-shadow: inset -1px -1px #404040, inset 1px 1px #111111, inset -2px -2px #000000, inset 2px 2px #000000 !important; +}