forked from tobinus/python-podgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
61 lines (58 loc) · 1.23 KB
/
custom.css
File metadata and controls
61 lines (58 loc) · 1.23 KB
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
body {
background-color: #fffded;
}
div.documentwrapper, div.body {
background: initial;
}
pre {
background-color: #ebebeb;
}
div.sphinxsidebar a:link.current, div.sphinxsidebar a:visited.current {
color: rgba(0, 0, 0, 0.9);
text-decoration: none;
border-bottom: none;
font-weight: bold;
cursor: text;
}
div.body {
min-width: auto;
}
div.document, div.footer {
width: auto;
max-width: 1000px;
}
a:link,
div.sphinxsidebar a:link {
color: #004B6B;
}
a:visited, div.sphinxsidebar a:visited {
color: #56006B;
}
a.current + ul a[href*="#"] {
color: rgba(0, 0, 0, 0.9);
}
div.toctree-wrapper a[href*="#"]
{
color: rgba(0, 28, 40, 0.65);
}
/* Don't hide logo when viewed on mobile, just invert its colors */
@media screen and (max-width: 875px) {
div.sphinxsidebar p.logo {
display: block;
filter: invert(100%);
width: 60%;
margin: auto;
}
/* Different link colors */
div.sphinxsidebar a:link {
color: #BFD2DA;
}
div.sphinxsidebar a:visited {
color: #C09FC7;
}
a.current + ul a[href*="#"],
div.sphinxsidebar a:link.current,
div.sphinxsidebar a:visited.current {
color: rgba(255, 255, 255, 0.95);
}
}