substack.user.js (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
// ==UserScript==
// @name Substack (Clay-Witch)
// @description the clay-witch theme for Substack
// @version 0.1.0
// @downloadURL https://codeberg.org/trickyni/clay-witch.userscript/raw/branch/main/substack.user.js
// @updateURL https://codeberg.org/trickyni/clay-witch.userscript/raw/branch/main/substack.user.js
// @run-at document-end
// @homepageURL https://codeberg.org/trickyni/clay-witch.userscript
// @grant GM_addStyle
// @match https://*.substack.com/*
// @match https://www.erininthemorning.com/*
// ==/UserScript==
GM_addStyle(`
*, h3, .single-post-container {
font-family: "serif" !important;
color :#3b3228 !important;
background-color: #bca782 !important;
}
a { color: #15156b !important; }
a:visited { color: #842310 !important; }
.post-header {border-color: #bca782 !important;}
.button-wrapper, .subscription-widget-wrap, .subscribe-widget, .main-menu, button { display: none !important; }
div.pc-justifyContent-space-between:nth-child(2) {height:0; display: none;}
`);
|