Spaces:
Configuration error
Configuration error
File size: 1,151 Bytes
a01ef8c |
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 |
/* allow the page to use more of the window width */
.wy-nav-content {
max-width: 1100px;
}
/* allow text wrapping in a table to avoid table horizontal scrolling */
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: normal !important;
}
/* center all images */
.rst-content img {
margin-left: auto;
margin-right: auto;
display: block;
}
/* add an underline to title headings and wrap long API headings
* Note: we use JavaScript to add a ​ after the dot
* in really long H1 titles created automatically from the code */
.rst-content h1,h2,h3,h4,h5 {
text-decoration: underline;
word-wrap: break-word;
}
/* add link color to module xref generated by autodoc */
.rst-content a.internal code.xref span.pre {
color: #2980b9;
}
/* change red text color to dark gray in code literals */
.rst-content code.literal, .rst-content tt.literal {
color: #404040;
}
/* change background color of search area/site title to increase contrast */
.wy-side-nav-search {
background-color: #2f71b2;
}
/* change href link color to increase contrast */
a {
color: #2f71b2;
}
|