Created
July 28, 2026 06:32
-
-
Save cmdr2/8c5e90c49fa185c1ecf4f28e4994640c to your computer and use it in GitHub Desktop.
Focused reader bookmarklet - columns
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:(function(){var d=document;var elms=d.querySelectorAll('style,link[rel="stylesheet"]');for(var i=0;i<elms.length;i++){elms[i].parentNode.removeChild(elms[i]);}var s=d.createElement('style');s.innerHTML='* { background: #181a1b !important; color: rgb(232, 230, 227) !important; font-family: monospace !important; font-size: 12pt !important; line-height: 1.4 !important; border: none !important; } body { column-width: 550px !important; column-gap: 40px !important; max-width: 100% !important; margin: 0 auto !important; padding: 40px !important; h1, h2, h3 { column-span: all !important; display: inline; } } a { color: rgb(232, 230, 227) !important; text-decoration: underline !important; } a:visited { color: rgb(232, 230, 227) !important; } img, svg, canvas { filter: invert(1) hue-rotate(180deg) opacity(0.6) !important; max-width: 100% !important; height: auto !important; }';d.head.appendChild(s);})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment