From 757f94caecbd56dc8a826568dd8a9b29acb1d5e1 Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Thu, 5 Oct 2023 15:59:43 -0400 Subject: [PATCH] Add paragraph about sitestat to index.html --- index.html | 6 ++++-- styles/style.css | 10 ++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 3e3f75b..43acea4 100644 --- a/index.html +++ b/index.html @@ -51,8 +51,10 @@

As you can see, I'm a fan of the "plain HTML is responsive" school of thought. This website is intentionally very simple in its structure, styling, and interactivity. This is because I believe that the vast majority of the internet's most popular websites sacrifice usability and accessibility to make a flashier product. By using a simpler design, we can help to make the internet more accessible to all, regardless of their physical ability or device's processing power.

-

- This website doesn't use any third-party scripts or cookies to track you, and barely uses any javascript at all! It uses a script to allow you to change the site's color theme, but this is entirely optional. +

+ Sitestat is included on most pages of this website, which is a simple, anonymous, open-source analytics tracker that works by opening a websocket connection and transmitting anonymized, limited data about your visit to this site. I use this just out of curiosity, to see if people actually visit and read the stuff I write here. No data is ever sent to third-parties. Contact me if you have any questions about it! + +

diff --git a/styles/style.css b/styles/style.css index f29fb51..9223bcb 100644 --- a/styles/style.css +++ b/styles/style.css @@ -143,3 +143,13 @@ code { .article-card p { margin: 0.5em 0 0 0; } + +/* Stuff related to sitestat settings */ +#sitestat-toggle { + color: var(--text-color-2); + cursor: pointer; +} + +#sitestat-toggle:hover { + text-decoration: underline; +} \ No newline at end of file