173 lines
3.0 KiB
CSS
173 lines
3.0 KiB
CSS
|
|
.field-name {
|
|
/* Fix for https://github.com/bitprophet/alabaster/issues/95 */
|
|
-moz-hyphens: manual;
|
|
-ms-hyphens: manual;
|
|
-webkit-hyphens: manual;
|
|
hyphens: manual;
|
|
|
|
width: 110px; /* Prevent "Return type:" from wrapping. */
|
|
}
|
|
|
|
table.field-list th, table.field-list td {
|
|
padding-top: 1em;
|
|
}
|
|
|
|
code.docutils.literal {
|
|
background-color: rgba(0, 0, 0, 0.06);
|
|
padding: 2px 5px 1px 5px;
|
|
font-size: 0.88em;
|
|
}
|
|
|
|
code.xref.docutils.literal {
|
|
background-color: transparent;
|
|
padding: 0;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
a.reference.internal:hover code {
|
|
color: #6D4100;
|
|
border-bottom: 1px solid #6D4100;
|
|
}
|
|
|
|
a code.literal {
|
|
color: #004B6B;
|
|
}
|
|
|
|
.field-body cite {
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Hide theme's default logo section */
|
|
.logo a {
|
|
display: none;
|
|
}
|
|
|
|
#logo {
|
|
position: relative;
|
|
}
|
|
|
|
#logo a,
|
|
#logo a:hover {
|
|
border-bottom: none;
|
|
}
|
|
|
|
#logo img {
|
|
margin: -32px 0 0 2px;
|
|
padding: 0;
|
|
}
|
|
|
|
#gh-buttons {
|
|
margin-top: 2em;
|
|
}
|
|
|
|
#logo-text {
|
|
font-family: "Amethysta", "goudy old style", serif;
|
|
font-weight: bold;
|
|
|
|
font-size: 16pt;
|
|
color: #444;
|
|
position: absolute;
|
|
|
|
left: 10px;
|
|
top: -14px;
|
|
/*margin: -4px -4px 0 0;*/
|
|
}
|
|
|
|
#dev-warning {
|
|
background-color: #ffe;
|
|
border: 1px solid #ccc;
|
|
padding: 10px;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
div.warning {
|
|
background-color: #ffe;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
div.body h1,
|
|
div.body h2,
|
|
div.body h3,
|
|
div.body h4,
|
|
div.body h5,
|
|
div.body h6,
|
|
div.sphinxsidebar h3 {
|
|
font-family: "Amethysta", "goudy old style", serif;
|
|
font-weight: bold;
|
|
color: #444;
|
|
}
|
|
|
|
div.sphinxsidebar h3 {
|
|
margin: 1.5em 0 0 0;
|
|
}
|
|
|
|
div.admonition p.admonition-title {
|
|
display: block;
|
|
line-height: 1.4em;
|
|
}
|
|
|
|
/* Fix notes not aligning with the left side of the property text. */
|
|
dd .highlight pre, dd div.admonition {
|
|
margin-left: -29px;
|
|
padding-left: 29px;
|
|
}
|
|
|
|
.highlight pre {
|
|
font-size: smaller;
|
|
}
|
|
|
|
/* Fix drifting to the left in some parameters lists. */
|
|
li .highlight pre {
|
|
float: right;
|
|
}
|
|
|
|
|
|
div.admonition {
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
div input[type="text"] {
|
|
padding: 5px;
|
|
margin: 0 0 0.5em 0;
|
|
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
|
|
}
|
|
|
|
div input[type="submit"] {
|
|
font-size: 12px;
|
|
width: 64px;
|
|
height: 27px;
|
|
font-weight: 600;
|
|
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
|
|
|
|
border: 1px solid #d5d5d5;
|
|
border-radius: 3px;
|
|
padding: 0 10px;
|
|
|
|
color: #333;
|
|
background-color: #eee;
|
|
background-image: linear-gradient(to bottom,#fcfcfc,#eee);
|
|
}
|
|
|
|
div input[type="submit"]:hover {
|
|
background-color: #ddd;
|
|
background-image: linear-gradient(to bottom,#eee,#ddd);
|
|
border-color: #ccc;
|
|
}
|
|
|
|
div input[type="submit"]:active, #searchbox input[type="submit"]:active {
|
|
background-color: #dcdcdc;
|
|
background-image: none;
|
|
border-color: #b5b5b5;
|
|
box-shadow: inset 0 2px 4px rgba(0,0,0,.15);
|
|
}
|
|
|
|
div input[type="submit"]:focus {
|
|
outline: none;
|
|
}
|
|
|
|
input[type=text]:focus {
|
|
outline: 1px solid #999;
|
|
}
|