blob: 78b23ac6ff74962fb141a16e723d3936504d6ea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Add maximum height for content's images */
.rst-content img {
max-height: 30rem;
}
/* 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;
}
|