diff --git a/website/assets/style.css b/website/assets/style.css index 4886312..28f9ca6 100644 --- a/website/assets/style.css +++ b/website/assets/style.css @@ -140,4 +140,26 @@ webring-container { #oneko { display: none; } + .include88x31 { + display: none; + } + .results { + margin-top: 20px !important; + } + #lastfm > img { + width: 50px; + height: 50px; + } + #lastfm > div > h1 { + font-size: 30px; + } + #lastfm > div > span:nth-child(2) { + font-size: 20px !important; + } + #lastfm > div > span:nth-child(3) { + font-size: 17px !important; + } + .repeating-bg { + background: white; + } } diff --git a/website/index.html b/website/index.html index 12a421d..5c6e5c5 100644 --- a/website/index.html +++ b/website/index.html @@ -38,13 +38,26 @@ __TEMPLATE_HEAD__ 106, 97, 64, 100, 117, 99, 107, 46, 99, 111, 109]))

Signing PGP key downloadable here. - -

Include my 88x31 into your website! (hotlinking allowed!)

-
+            
+

Include my 88x31 into your website! (hotlinking allowed!)

+
 <a href="https://sad.ovh">
 <img src="https://sad.ovh/assets/binkies/sadovh.png">
 </a>
             
+
+
+

This page is protected by a

+

TAPIR

+ TAPIR +

Tapirs have changed very little over the past 20 million years.

+ + Want your own? Visit + hekate.neocities.org! + +

donations

@@ -92,7 +105,8 @@ __TEMPLATE_HEAD__ unnick - + eightyeightthirty.one
@@ -105,7 +119,8 @@ __TEMPLATE_HEAD__ - diff --git a/website/scripts/particles.ts b/website/scripts/particles.ts index 432a0fe..cd5e7de 100644 --- a/website/scripts/particles.ts +++ b/website/scripts/particles.ts @@ -93,3 +93,18 @@ document.documentElement.addEventListener("mousemove", (event) => { const particle = new Particle(event.pageX, event.pageY); particles.push(particle); }); + +document.documentElement.addEventListener("touchmove", function(e) { + for(let i = 0; i < e.touches.length; i++) { + if (Date.now() - lastMoveTimestamp < 50) { + return; + } + + lastMoveTimestamp = Date.now(); + const touch = e.touches.item(i); + if(!touch) return; + + const particle = new Particle(touch.pageX, touch.pageY); + particles.push(particle); + } +}, false); diff --git a/website/templates/head.html b/website/templates/head.html index a9f13ea..87ab44b 100644 --- a/website/templates/head.html +++ b/website/templates/head.html @@ -25,7 +25,9 @@ \ No newline at end of file