blob: cdcb831f52f91ec5143640e42e8829b3c59d5bb6 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* Add maximum height for content's images */
.rst-content img {
max-height: 30rem;
}
/* Override blockquotes style */
.rst-content blockquote {
border-left: #bbb solid 4px;
color: #555;
margin-left: 0;
padding-left: 20px;
}
/* Style links on hover */
a:not(.btn):hover {
text-decoration: underline solid 1px;
}
/* Fix underline for links with icon */
a.fa::before, a.icon::before, a button.toctree-expand::before {
display: initial;
text-decoration: initial !important;
}
/* Specific styles for links to glossary terms */
.rst-content .xref.std-term {
text-decoration: underline dotted 1px;
}
/* Specific styles for external links */
.rst-content a.reference.external::after {
font-family: FontAwesome;
content: "";
display: inline-block;
vertical-align: top;
font-size: 70%;
margin-left: .2rem;
}
/* Highlight version selector on hover */
.rst-current-version:hover {
background: rgba(255,255,255,0.1);
}
/* Fix navbar scroll until bottom */
.rst-current-version {height: 2.5rem; /* lock version selector's height */}
.wy-nav-side {padding-bottom: 2.5rem; /* set correct padding for the nav */}
/* Disable scroll in version selector */
.rst-versions.shift-up {
overflow-y: auto;
}
|