reth

the display name is my initials

experimenting and all that.
chief executive dysfunction officer. few of my posts are high-effort, but at least they're funny.
current avatar is an old art by fireflufferz because i'm bored with having michiru pfps.
.-.-.-.-.-.

lastfm listening



userstyle
li#n-randompage {
	text-shadow: 0 0 20px rgb(92, 152, 214), 0 0 30px rgb(92, 152, 214), 0 0 40px rgb(92, 152, 214), 0 0 50px rgb(92, 152, 214), 0 0 60px rgb(92, 152, 214), 0 0 70px rgb(92, 152, 214), 0 0 80px rgb(92, 152, 214)
}

You must log in to comment.

in reply to @reth's post:

Here's a TamperMonkey userscript in case any one else wants it...

// ==UserScript==
// @name         Highligt 'Random Page' link
// @version      0.1
// @description  Injects CSS that highlights the 'Random Page' link on Wikipedia
// @author       Me, Bender!
// @match        *://*.wikipedia.org/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=wikipedia.org
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    "use strict";

    const elt = GM_addStyle(`
       li#n-randompage {
	       text-shadow: 0 0 20px rgb(92, 152, 214),
                        0 0 30px rgb(92, 152, 214),
                        0 0 40px rgb(92, 152, 214),
                        0 0 50px rgb(92, 152, 214),
                        0 0 60px rgb(92, 152, 214),
                        0 0 70px rgb(92, 152, 214),
                        0 0 80px rgb(92, 152, 214);
       }
    `);
    console.debug("Added highlight styles: %o", elt);
})();