File size: 3,115 Bytes
fc0f7bd | 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
.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;
}
|