mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
35 lines
687 B
CSS
35 lines
687 B
CSS
|
/*
|
||
|
* Sphinx doesn't have support for section dividers like we do in
|
||
|
* MkDocs, this styles the section titles in the nav
|
||
|
*
|
||
|
* https://github.com/tomchristie/mkdocs/issues/175
|
||
|
*/
|
||
|
.wy-menu-vertical span {
|
||
|
line-height: 18px;
|
||
|
padding: 0.4045em 0.809em;
|
||
|
display: block;
|
||
|
position: relative;
|
||
|
font-size: 90%;
|
||
|
color: #838383;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Long navigations run off the bottom of the screen as the nav
|
||
|
* area doesn't scroll.
|
||
|
*
|
||
|
* https://github.com/tomchristie/mkdocs/pull/202
|
||
|
*/
|
||
|
.wy-nav-side {
|
||
|
height: 100%;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Fix wrapping in the code highlighting
|
||
|
*
|
||
|
* https://github.com/tomchristie/mkdocs/issues/233
|
||
|
*/
|
||
|
code {
|
||
|
white-space: pre;
|
||
|
}
|