diff --git a/game.ico b/game.ico new file mode 100644 index 0000000..a1015fe Binary files /dev/null and b/game.ico differ diff --git a/game.png b/game.png deleted file mode 100644 index b91468c..0000000 Binary files a/game.png and /dev/null differ diff --git a/index.html b/index.html index 5d95318..b2e8499 100644 --- a/index.html +++ b/index.html @@ -31,7 +31,7 @@
@@ -59,10 +59,10 @@
  • - nin0-bot: A generic kitchen sink bot with basic moderation features + nin0-bot: An in-development kitchen-sink Discord Bot with moderation, fun and utility
  • @@ -72,7 +72,12 @@ Reach out! diff --git a/index.js b/index.js index 7b2643b..d59d85d 100644 --- a/index.js +++ b/index.js @@ -53,7 +53,7 @@ function onUpdate(data) { }); document.getElementById("presence").style.display = content == "" ? "none": "flex" document.getElementById("presence-content").innerText = content - document.getElementById("presence-icon").src = listening ? "music.png" : "game.png" + document.getElementById("presence-icon").src = listening ? "music.ico" : "game.ico" } LanyardWrapper.connectWebSocket("886685857560539176", onUpdate) .catch(err => { diff --git a/music.ico b/music.ico new file mode 100644 index 0000000..b637078 Binary files /dev/null and b/music.ico differ diff --git a/music.png b/music.png deleted file mode 100644 index 722e890..0000000 Binary files a/music.png and /dev/null differ diff --git a/style.css b/style.css index 8035fc6..e155ecd 100644 --- a/style.css +++ b/style.css @@ -5,9 +5,10 @@ --offline-color: #80848e; } body { - background-color: #003D3D; padding: 30px; - font-family: sans-serif !important; + font-family: "Segoe UI", "Roboto", sans-serif !important; + background-size: cover; + background-image: url(wallpaper.jpg); } #main-window { max-width: 600px; @@ -28,7 +29,8 @@ body { #pfp { width: 90px; height: 90px; - border-radius: 3px; + border-radius: 6px; + box-shadow: 10px black; border-color: var(--offline-color); border-style: solid; border-width: 2px; diff --git a/wallpaper.jpg b/wallpaper.jpg new file mode 100644 index 0000000..5c68af5 Binary files /dev/null and b/wallpaper.jpg differ