forked from aminomancer/uc.css.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
root.css
69 lines (57 loc) · 1.8 KB
/
root.css
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
/* fundamental content styles, e.g. plaintext pages. */
@media (prefers-color-scheme: dark) {
::selection {
background-color: var(--global-selection-bgcolor) !important;
color: var(--global-selection-color) !important;
}
::-moz-selection {
background-color: var(--global-selection-bgcolor) !important;
color: var(--global-selection-color) !important;
}
}
:-moz-focusring:focus:not(:focus-visible) {
outline: unset !important;
outline-offset: unset !important;
}
@-moz-document plain-text-document(), media-document(all) {
@font-face {
font-family: "Overpass Mono";
font-style: normal;
font-weight: 100;
src: local("Overpass Mono"), local("Overpass Mono Light"), local("OverpassMono-Light");
}
:root {
font-family: Overpass Mono, -moz-fixed;
font-size: 12;
}
xmp,
pre,
plaintext {
font-family: Overpass Mono, -moz-fixed;
font-size: 12;
}
img.transparent {
background: var(--transparent-img-background) !important;
}
@media (prefers-color-scheme: dark) {
:root {
color: var(--plaintext-color) !important;
background-color: var(--in-content-bg-dark) !important;
}
body:not([style*="background"], [class], [id]) {
background-color: transparent !important;
}
::selection {
color: var(--content-selection-color) !important;
background-color: var(--content-selection-bgcolor) !important;
}
::-moz-selection {
color: var(--content-selection-color) !important;
background-color: var(--content-selection-bgcolor) !important;
}
}
}
:root,
menupopup {
--in-content-category-outline-focus: transparent !important;
}