From 67b548470ffc070d45890af034419757716ae69d Mon Sep 17 00:00:00 2001 From: nin0dev Date: Sat, 11 May 2024 02:31:13 -0400 Subject: [PATCH] Added more useless yap no one gives a fuck about --- index.html | 19 ++++++++++++++++++- index.js | 6 +++++- style.css | 16 +++++++++++++--- 3 files changed, 36 insertions(+), 5 deletions(-) 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 @@ the nin0dev logo

nin0dev (he/him)

+
+
+ About me + I'm a Canadian self-taught software developer that makes useless things in Python, HTML, JavaScript, and Kotlin. +
+ yeah that's it +
+
+
+ Reach out! + +
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