summaryrefslogtreecommitdiff
path: root/global/.local/share/qutebrowser/greasemonkey/npr-text.css.js
blob: 6f5020f3121dfd1577fee3f8e88d636f46e4445c (plain)
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
26
27
28
29
30
31
32
33
// ==UserScript==
// @name        NPR Text-Only
// @include     *://text.npr.org*
// ==/UserScript==

/* ~/.config/qutebrowser/greasemonkey/npr-text.css.js :: */

GM_addStyle(`
    body {
        background: var(--color-bg) !important;
        color: var(--color-fg) !important;
        max-width: 750px !important;
    }

    u {
        text-decoration: none !important
    }

    a {
        color: var(--color-heading) !important;
        text-decoration: none !important;
    }
    a:visited {
        color: var(--color-link) !important;
    }
    a:hover {
        color: var(--color-active) !important;
    }

    .hr-line {
        display: none !important;
    }
`);