aboutsummaryrefslogtreecommitdiff
path: root/.config/qutebrowser/user.css
blob: b790a5a2c9e16070e844b079a277db3dbd547dbe (plain) (blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
:root {
	--bg: #282c34;
	--bg-sel: #3e4451;
	--fg: #abb2bf;
	--hl: #b6bdca;
}

/* General style */
*:not(svg) {
	background: var(--bg) !important;
	background-color: var(--bg) !important;
	border-color: var(--bg-sel) !important;
	color: var(--fg) !important;	
}

*:before:not(svg) {
	background: var(--bg) !important;
	background-color: var(--bg) !important;
	border-color: var(--bg-sel) !important;
	color: var(--fg) !important;	
}

*:after:not(svg) {
	background: var(--bg) !important;
	background-color: var(--bg) !important;
	border-color: var(--bg-sel) !important;
	color: var(--fg) !important;	
}

*:hover:not(svg) {
	background: var(--bg) !important;
	background-color: var(--bg) !important;
	border-color: var(--bg-sel) !important;
	color: var(--fg) !important;	
}

*:focus:not(svg) {
	background: var(--bg) !important;
	background-color: var(--bg) !important;
	border-color: var(--bg-sel) !important;
	color: var(--fg) !important;	
}

a {
	color: var(--hl) !important;	
	text-decoration: none !important;
}

a:hover {
	color: var(--hl) !important;	
	text-decoration: underline !important;
}

hr {
	color: var(--bg-sel) !important;
	z-index: 99;
}

/* Specific fixes */
.bg-gray, .bg-gray-light { background: var(--bg) !important; } /* GH */
.link-gray-dark, .text-gray { color: var(--fg) !important; } /* GH */
.mb-4.js-notice { display: none !important; } /* GH */

.w3-light-grey, .w3-white { background: var(--bg) !important; } /* W3 */

.-main a.-logo, ol.list-reset.grid.gs4, #left-sidebar.ps-relative { display: none !important; } /* SO */

.RNNXgb { border: none !important; } /* Google */

.ytp-gradient-bottom { display: none !important; } /* YT */
.ytp-preview, .ytp-tooltip *, .ytp-chrome-bottom *, .ytp-chrome-bottom, .ytp-chrome-bottom:hover, .ytp-chrome-controls:hover, .ytp-progress-bar-padding:hover { background-color: transparent !important; } /* YT */
.ytp-swatch-background-color { background: var(--fg) !important; } /* YT */

/* Scrollbar */
::-webkit-scrollbar {
    height: 12px;
    width: 12px;
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-sel);
}

::-webkit-scrollbar-corner {
    background: var(--bg);
}