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
|
@import url("pyramid.css");
/* Defaults for entire page */
body {
color: #3f3f3f;
font-family: "Open Sans", sans-serif;
font-size: 11pt;
font-weight: 400;
line-height: 1.65;
}
/* Strip at top of page */
div.related {
line-height: 1.65;
color: #3f3f3f;
font-size: 10pt;
background-color: #fff;
border-bottom: solid 4px #00b2e2;
font-family: "Roboto Slab", serif;
}
div.related a {
color: #1d2429;
}
div.related ul {
padding-left: 1em;
}
/* Sidebar */
div.bodywrapper {
/* The final value must match the sidebarwidth theme option */
margin: 0 0 0 230px;
}
div.sphinxsidebar {
color: #1d2429;
background-color: #f5f6f7;
font-family: "Roboto Slab", serif;
font-size: 0.9em;
line-height: 1.65;
letter-spacing: 0.075em;
/*text-transform: uppercase;*/
}
div.sphinxsidebar h3,
div.sphinxsidebar h4 {
font-family: "Roboto Slab", serif;
color: #1d2429;
font-size: 1.4em;
font-weight: 700;
border-bottom: 3px solid #00b2e2;
line-height: 1.5;
letter-spacing: 0.075em;
background-color: #f5f6f7;
}
div.sphinxsidebar p,
div.sphinxsidebar ul,
div.sphinxsidebar h3 a,
div.sphinxsidebar a {
color: #1d2429;
}
/* Main text */
div.body {
color: #3f3f3f;
font-size: 11pt;
border: none;
}
div.body h1,
div.body h2,
div.body h3,
div.body h4,
div.body h5,
div.body h6 {
font-family: "Roboto Slab", serif;
font-weight: 700;
color: #1d2429;
font-variant: none;
line-height: 1.5;
}
div.body h1 {
border-top: none;
font-size: 3.5em;
background-color: #fff;
border-bottom: solid 3px #00b2e2;
}
div.body h2 {
font-size: 1.75em;
background-color: #fff;
border-bottom: solid 2px #00b2e2;
}
div.body h3 {
font-size: 1.5em;
background-color: #fff;
border-bottom: solid 1px #00b2e2;
}
div.body p,
div.body dd,
div.body li {
line-height: 1.65;
}
pre {
font-family: "Lucida Console", Monaco, monospace;
font-size: 0.9em;
line-height: 1.5;
background-color: #f5f6f7;
color: #1d2429;
border: none;
border-radius: 11px;
box-shadow: 0px 2px 5px #aaaaaa inset;
}
code {
font-family: "Lucida Console", Monaco, monospace;
font-size: 0.9em;
background-color: #f5f6f7;
color: #1d2429;
border: none;
border-radius: 0.25em;
padding: 0.125em 0.25em;
}
.viewcode-back,
.download {
font-family: "Open Sans", sans-serif;
}
/* The pyramid theme uses an exclamation point for "note", and nothing (not
* even a background shade) for "important", and it supplies a light bulb icon
* but doesn't use it. Rearrange that a bit: use the light bulb for note, and
* the exclamation point (with the usual shading) for important.
*/
div.note {
background: #e1ecfe url(dialog-topic.png) no-repeat 10px 8px;
}
div.important {
border: 2px solid #7a9eec;
border-right-style: none;
border-left-style: none;
padding: 10px 20px 10px 60px;
background: #e1ecfe url(dialog-note.png) no-repeat 10px 8px;
}
|