From 6427036d852cd97fb42a64f03f0f4f733d600a71 Mon Sep 17 00:00:00 2001 From: Sara Date: Sun, 28 Dec 2025 16:46:30 +0100 Subject: [PATCH 1/3] added favicon --- objectionable.solutions/favicon.svg | 181 ++++++++++++++++++++++ objectionable.solutions/index.html | 5 +- objectionable.solutions/the-big-list.html | 1 + 3 files changed, 185 insertions(+), 2 deletions(-) create mode 100644 objectionable.solutions/favicon.svg diff --git a/objectionable.solutions/favicon.svg b/objectionable.solutions/favicon.svg new file mode 100644 index 0000000..dfc86d2 --- /dev/null +++ b/objectionable.solutions/favicon.svg @@ -0,0 +1,181 @@ + + + + diff --git a/objectionable.solutions/index.html b/objectionable.solutions/index.html index 5c8bcf2..42f45b0 100644 --- a/objectionable.solutions/index.html +++ b/objectionable.solutions/index.html @@ -3,8 +3,9 @@ Solutions no one asked for - + +
diff --git a/objectionable.solutions/the-big-list.html b/objectionable.solutions/the-big-list.html index b8c6519..f926466 100644 --- a/objectionable.solutions/the-big-list.html +++ b/objectionable.solutions/the-big-list.html @@ -5,6 +5,7 @@ +
From 4aac8e2b7dd05b3352a8854361ea781760a3341d Mon Sep 17 00:00:00 2001 From: Sara Date: Sun, 28 Dec 2025 16:47:30 +0100 Subject: [PATCH 2/3] adjusted about me section --- objectionable.solutions/index.html | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/objectionable.solutions/index.html b/objectionable.solutions/index.html index 42f45b0..12c7216 100644 --- a/objectionable.solutions/index.html +++ b/objectionable.solutions/index.html @@ -13,28 +13,21 @@
-

- I'm a Dutch Game Development student and programmer. This particular site is just a personal page to throw ideas and thingamabobs onto. -

-

- When it comes to programming I love working on graphical applications. Preferably some kind of GUI or simulation or game. I write mostly in C, or C++ (written as if it's C with templates). - I prefer using libre and open source software where I can. - -

-
-
- Reject Convenience -
-

Myself

-
    +
    + +

    + I'm a Dutch Game Development student and programmer. This particular site is just a personal page to throw ideas and thingamabobs onto. When it comes to programming I love working on graphical applications. Preferably some kind of GUI or simulation or game. I prefer using libre and open source software where I can. +

    +
    +
    • Nouns: Sara / Saar / She / They / Woman / Girl (no preference)
    • Honorifics: Hx / Mg / Ms (no preference)
    • Age: Born in 2004 (so an adult)
    • Gender: Some kind of woman or other
    • Languages: Dutch (native) and English (fluent)
    • Romantic Orientation: Them
    • -
    +

My Friends around the web

@@ -96,6 +89,9 @@ The idea is that in the current age of the internet, one where search engines barely work and are filled with adverts and LLM-generated bullshit. By sharing what we like and trust, we can help others find new sources they like and trust more easily.

+
+ Reject Convenience +

Look At My Stupid Cat

From a1092a0fbbfda3b26c8484fb99ffa4ea5d871219 Mon Sep 17 00:00:00 2001 From: Sara Date: Sun, 28 Dec 2025 16:48:17 +0100 Subject: [PATCH 3/3] redid colors --- objectionable.solutions/style.css | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/objectionable.solutions/style.css b/objectionable.solutions/style.css index a12f85d..070aa57 100644 --- a/objectionable.solutions/style.css +++ b/objectionable.solutions/style.css @@ -1,11 +1,15 @@ :root { - --foreground-color: #EEE; - --background-color: #4443; + --color-background: #451284; + --color-panels: #220842; + --color-br-border: #A188C1; + --color-tl-border: #624881; + --color-links: #A188C1; + --color-text: white; } body { - background-color: #000020; - color: var(--foreground-color); + background-color: var(--color-background); + color: var(--color-text); font-family: system-ui; margin-right: auto; margin-left: auto; @@ -13,17 +17,23 @@ body { } a { - color: #844dff; + color: var(--color-links); +} + +a:hover { + color: color-mix(in hsl, var(--color-links), white 50%); + border: solid var(--color-tl-border) 1px; } section { - border-radius: 1px; - border: solid var(--foreground-color) 1px; - background-color: var(--background-color); + border-radius: 5px; + border: solid black 1px; + background-color: color-mix(in srgb, var(--color-panels), transparent 10%); padding: 0.5em; margin: 10px; margin-top: 25px; - border-color: #999; + border-color: var(--color-tl-border) var(--color-br-border) + var(--color-br-border) var(--color-tl-border); } footer {