From ed62041e65fd3cf18fea84fd9ec1a2a4f3c84485 Mon Sep 17 00:00:00 2001 From: Bingus_Violet Date: Thu, 8 Feb 2024 18:28:33 -0600 Subject: [PATCH] idk --- config.json | 11 ++++++++--- pageUpdater.js | 3 +++ static/index.html | 27 +++++++++++++++++++++++++-- static/style.css | 37 +++++++++++++++++++++++++++++++++++-- 4 files changed, 71 insertions(+), 7 deletions(-) diff --git a/config.json b/config.json index 0f11480..78ac5f0 100644 --- a/config.json +++ b/config.json @@ -7,7 +7,6 @@ "Remember the 14th commandment: Thou shalt always clean thy plate and not waste anything, whether thy stomach is full, or not.", "Remember son, dying is gay!", "Your friendly neighborhood queer", - "Boykisser", "I hate javascript!!!", "Don't fuck with this senator!", "Crazy? I was crazy once!", @@ -41,7 +40,11 @@ "PROUD OWNER OF: univerter.dev!", "These birds are Pissing me off... I'm the original        Starwalker" ], - + "titles": [ + "Boykisser", + "World's Worst Developer", + "Least optimized optimizer" + ], "thumborInstances": [ "https://thumbor-production-0e82.up.railway.app/", "https://enormous-book-production.up.railway.app/", @@ -53,6 +56,8 @@ "Pissing": "yellow", "Starwalker": "yellow", "word highlighting": "yellow", - "replaceAll": "limegreen" + "replaceAll": "limegreen", + "Godot Engine": "#64B5F6", + "javascript": "yellow" } } \ No newline at end of file diff --git a/pageUpdater.js b/pageUpdater.js index cd00735..36e096c 100644 --- a/pageUpdater.js +++ b/pageUpdater.js @@ -5,6 +5,7 @@ var config = JSON.parse(fs.readFileSync(path.join(__dirname, 'config.json'))) var highlightedWords = config.highlightedWords var quotes = config.quotes +var titles = config.titles var commitCount = "300+" @@ -59,6 +60,8 @@ function converter(html) { html = html.replaceAll("{QUOTE_COUNT}", quotes.length) + html = html.replaceAll("{RANDOM_TITLE}", titles[Math.floor(Math.random() * titles.length)]) + return html } diff --git a/static/index.html b/static/index.html index 19cd7e7..d2fbc45 100644 --- a/static/index.html +++ b/static/index.html @@ -22,11 +22,34 @@ -

Welcome to Violet's PurgatoryCommit {COMMIT_COUNT}

+

Welcome to Violet's PurgatoryCommit + {COMMIT_COUNT}

{BG_EFFECT}
+

{RANDOM_QUOTE}


- {RANDOM_QUOTE} +

Hi! I'm Violet, a 15 year old web and game developer.
+ I aspire to make fast and javascript free websites! I'm currently learning the Godot Engine, and have been + becoming quote fluent in NodeJS.
+ Although my site is pretty barebones at the moment due to a recent rewrite, I hope to continue with this + passion and update this website along with it. +

+ +
+

Violet

+
+ +
+
+

+ They/Them
+ {RANDOM_TITLE} +

+
+
+

As is probably very obvious, I'm not great at graphic design at the moment, but I hope to improve upon that + as time goes on.
I'm sure you can tell I have a pretty low self esteem too... +

diff --git a/static/style.css b/static/style.css index cb5cc32..17b4563 100644 --- a/static/style.css +++ b/static/style.css @@ -17,7 +17,7 @@ body { background-color: black; overflow-x: hidden; - + padding: 25px; animation: hideContent 2.5s; @@ -39,10 +39,43 @@ main { } hr { - border: 2px rgba(100, 0, 150, 0.5) solid; + border: 2px gray solid; margin: 20px; } +p { + font-size: 1.25rem; +} + +#card { + background-color: rgb(75, 0, 125); + border: 2px lightgray solid; + border-radius: 15px; + max-width: 600px; + margin: auto; +} + +div.sides { + display: inline-block; + width: max(20%, 175px); + padding: 0; + margin: auto; + vertical-align: middle; +} + +.pfp { + width: 125px; + height: 125px; + border: 2px white solid; + border-radius: 50%; + + margin: 25px; +} + +h2 { + font-size: 1.8rem; +} + .rainDrop { position: fixed; z-index: -2;