blob: 8c2c507bb279fb305a11cf379357a5b395bbeb39 (
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
|
// ==UserScript==
// @name CNN Lite
// @include *://lite.cnn.com*
// ==/UserScript==
/* ~/.config/qutebrowser/greasemonkey/cnn-lite.css.js :: */
GM_addStyle(`
body {
color: var(--color-fg) !important;
background: var(--color-bg) !important;
}
a, footer a:visited, header a:visited {
color: var(--color-heading) !important;
text-decoration: none !important;
}
a:visited {
color: var(--color-link) !important;
}
a:hover, footer a:hover, header a:hover {
color: var(--color-active) !important;
}
ul {
list-style-type: none !important;
padding-inline-start: unset !important;
}
`);
|