diff --git a/index.html b/index.html
index 3c972b4..7edfae3 100644
--- a/index.html
+++ b/index.html
@@ -4,8 +4,9 @@
HTML 5 Boilerplate
-
+
+
@@ -17,6 +18,22 @@
nin0dev (he/him)
+
+
+
+
diff --git a/index.js b/index.js
index 8fce179..c36a4a5 100644
--- a/index.js
+++ b/index.js
@@ -1,6 +1,10 @@
+shouldLog = false;
+function log(content) {
+ if (shouldLog) console.log(content);
+}
function onUpdate(data) {
- console.log(data)
// set status
+ log(data)
const pfp = document.getElementById("pfp");
switch(data["discord_status"]) {
case "online":
diff --git a/style.css b/style.css
index 7ddfa36..808748f 100644
--- a/style.css
+++ b/style.css
@@ -12,12 +12,12 @@ body {
max-width: 600px;
}
.window {
- background-color: #202020 !important;
+ background-color: #202020;
color: white;
- box-shadow: inset -1px -1px #000000,inset 1px 1px #202020,inset -2px -2px #151515,inset 2px 2px #404040 !important;
+ box-shadow: inset -1px -1px #000000,inset 1px 1px #202020,inset -2px -2px #151515,inset 2px 2px #404040;
}
.window .title-bar {
- background: linear-gradient(90deg, navy, #0a52b1) !important;
+ background: linear-gradient(90deg, navy, #0a52b1);
}
.window-body {
padding: 10px;
@@ -38,4 +38,14 @@ body {
border-color: var(--offline-color);
border-style: solid;
border-width: 2px;
+}
+legend {
+ background: #00000000;
+}
+fieldset {
+ border-color: #606060;
+ border-image: none;
+}
+a {
+ color: cornflowerblue;
}
\ No newline at end of file