forked from prometheus/client_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
39 lines (36 loc) · 932 Bytes
/
custom.css
File metadata and controls
39 lines (36 loc) · 932 Bytes
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
/*
* Didn't find much time to create a theme yet,
* so there are just a few non-default settings for now.
*/
:root,
:root[color-theme="light"] {
--header-background: #222222;
--footer-background: #e6522c;
--footer-link-color: #ffffff;
--footer-link-color-visited: #ffffff;
}
@media (prefers-color-scheme: light) {
:root {
--header-background: #222222;
--footer-background: #e6522c;
--footer-link-color: #ffffff;
--footer-link-color-visited: #ffffff;
}
}
:root[color-theme="dark"]
{
--header-background: #111c24;
--body-background: #1f1f21;
--footer-background: #e6522c;
--footer-link-color: #ffffff;
--footer-link-color-visited: #ffffff;
}
@media (prefers-color-scheme: dark) {
:root {
--header-background: #111c24;
--body-background: #1f1f21;
--footer-background: #e6522c;
--footer-link-color: #ffffff;
--footer-link-color-visited: #ffffff;
}
}