blob: bfe6a6a6e8570b74a6b12483d7f56ae976a8b643 (
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
|
/* 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;
}
/* 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: "";
vertical-align: top;
font-size: 70%;
margin: 0 .2em;
}
|