2019-12-04 14:27:27 +00:00
|
|
|
@import url("pocoo.css");
|
|
|
|
|
|
|
|
a, a.reference, a.footnote-reference {
|
|
|
|
color: #004b6b;
|
|
|
|
border-color: #004b6b;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #6d4100;
|
|
|
|
border-color: #6d4100;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.version-warning {
|
|
|
|
background-color: #004b6b;
|
|
|
|
}
|
2019-12-13 13:58:13 +00:00
|
|
|
|
|
|
|
div.sidebar {
|
|
|
|
background-color: whitesmoke;
|
|
|
|
border-color: lightsteelblue;
|
|
|
|
border-radius: 3pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.sidebar-title, .sidebar p {
|
|
|
|
margin: 6pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar li {
|
|
|
|
list-style-type: disclosure-closed;
|
|
|
|
}
|
|
|
|
|
2019-12-19 16:05:50 +00:00
|
|
|
|
2019-12-19 22:36:53 +00:00
|
|
|
div.admonition,
|
|
|
|
div.topic {
|
|
|
|
background-color: #fafafa;
|
|
|
|
margin: 8px 0px;
|
|
|
|
padding: 1em;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2019-12-19 16:05:50 +00:00
|
|
|
/* admonitions with (rendered) reST markup examples (:class: rst-example)
|
|
|
|
*
|
|
|
|
* .. admonition:: title of the example
|
|
|
|
* :class: rst-example
|
|
|
|
* ....
|
|
|
|
/* navigation menu: use sans font and select light/dark colors for better
|
|
|
|
* contrast.
|
|
|
|
*/
|
|
|
|
|
|
|
|
div.rst-example {
|
|
|
|
padding-left: 12px;
|
|
|
|
padding-right: 12px;
|
|
|
|
background-color: white;
|
|
|
|
transform: scale(0.9);
|
|
|
|
transition: transform 1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* div.rst-example > .admonition-title { */
|
|
|
|
/* background-color: inherit; */
|
|
|
|
/* color: inherit; */
|
|
|
|
/* } */
|
|
|
|
|
|
|
|
/* div.rst-example > .admonition-title:after{ */
|
|
|
|
/* font-family: inherit; */
|
|
|
|
/* font-style: italic; */
|
|
|
|
/* content: " // hover mouse over .."; */
|
|
|
|
/* } */
|
|
|
|
|
|
|
|
@media screen {
|
|
|
|
div.rst-example:hover {
|
|
|
|
transform: scale(1);
|
|
|
|
background-color: inherit;
|
|
|
|
padding-left: inherit;
|
|
|
|
padding-right: inherit;
|
|
|
|
border-left: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.rst-example:hover > .admonition-title {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|