Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Side by Side Diff: tools/telemetry/third_party/coverage/doc/_static/neds.css

Issue 1366913004: Add coverage Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /* neds.css: a copy of default.css, so that the HTML output looks kind of
2 like nedbatchelder.com.
3 */
4
5 @import url("basic.css");
6
7 /* ---------------------------- */
8
9 /**
10 * Sphinx stylesheet -- default theme
11 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12 */
13
14
15 /* -- page layout ----------------------------------------------------------- */
16
17 body {
18 font-family: verdana, sans-serif;
19 font-size: 10pt;
20 background-color: #11303d;
21 color: #000;
22 margin: 0;
23 padding: 0;
24 }
25
26 div.document {
27 background-color: #808080;
28 }
29
30 div.body {
31 background-color: #ffffff;
32 color: #000000;
33 padding: 0 20px 30px 20px;
34 max-width: 650px;
35 margin-left: 150px;
36 }
37
38 div.footer {
39 color: #ffffff;
40 width: 100%;
41 padding: 9px 0 9px 0;
42 text-align: center;
43 font-size: 75%;
44 }
45
46 div.footer a {
47 color: #ffffff;
48 text-decoration: underline;
49 }
50
51 div.related {
52 background-color: #133f52;
53 line-height: 30px;
54 color: #ffffff;
55 }
56
57 div.related a {
58 color: #ffffff;
59 }
60
61 div.sphinxsidebar {
62 }
63
64 div.sphinxsidebar h3 {
65 color: #ffffff;
66 font-size: 1.4em;
67 font-weight: normal;
68 margin: 0;
69 padding: 0;
70 }
71
72 div.sphinxsidebar h3 a {
73 color: #ffffff;
74 }
75
76 div.sphinxsidebar h4 {
77 color: #ffffff;
78 font-size: 1.3em;
79 font-weight: normal;
80 margin: 5px 0 0 0;
81 padding: 0;
82 }
83
84 div.sphinxsidebar p {
85 color: #ffffff;
86 }
87
88 div.sphinxsidebar p.topless {
89 margin: 5px 10px 10px 10px;
90 }
91
92 div.sphinxsidebar ul {
93 margin: 10px;
94 padding: 0;
95 color: #ffffff;
96 }
97
98 div.sphinxsidebar a {
99 color: #98dbcc;
100 }
101
102 div.sphinxsidebar input {
103 border: 1px solid #98dbcc;
104 font-family: sans-serif;
105 font-size: 1em;
106 }
107
108 /* -- body styles ----------------------------------------------------------- */
109
110 a {
111 color: #355f7c;
112 text-decoration: none;
113 }
114
115 a:hover {
116 text-decoration: underline;
117 }
118
119 div.body p, div.body dd, div.body li {
120 line-height: 130%;
121 }
122
123 div.body h1,
124 div.body h2,
125 div.body h3,
126 div.body h4,
127 div.body h5,
128 div.body h6 {
129 font-size: 1em;
130 border-bottom: 1px solid silver;
131 margin: 1em 0;
132 }
133
134 div.body h1 { margin-top: 0; padding-top: 1em; font-size: 150%; }
135 div.body h2 { font-size: 100%; }
136 /* H3's are run-in with the text. */
137 div.body h3 {
138 font-size: 100%; display: inline; line-height: 1.35em;
139 float: left;
140 margin: 0 1.5em 0 0;
141 }
142
143
144 div.body h4 { font-size: 120%; }
145 div.body h5 { font-size: 110%; }
146 div.body h6 { font-size: 100%; }
147
148 table.field-list {
149 margin-left: 300px;
150 color: #888;
151 font-style: italic;
152 font-size: 80%;
153 }
154
155 a.headerlink {
156 color: #c60f0f;
157 font-size: 0.8em;
158 padding: 0 4px 0 4px;
159 text-decoration: none;
160 }
161
162 a.headerlink:hover {
163 background-color: #c60f0f;
164 color: white;
165 }
166
167 div.body p, div.body dd, div.body li {
168 line-height: 130%;
169 }
170
171 div.admonition p.admonition-title + p {
172 display: inline;
173 }
174
175 div.note {
176 background-color: #eee;
177 border: 1px solid #ccc;
178 }
179
180 div.seealso {
181 background-color: #ffc;
182 border: 1px solid #ff6;
183 }
184
185 div.topic {
186 background-color: #eee;
187 }
188
189 div.warning {
190 background-color: #ffe4e4;
191 border: 1px solid #f66;
192 }
193
194 p.admonition-title {
195 display: inline;
196 }
197
198 p.admonition-title:after {
199 content: ":";
200 }
201
202 pre {
203 padding: 5px;
204 background-color: #eeffcc;
205 color: #333333;
206 line-height: 120%;
207 border: 1px solid #ac9;
208 border-left: none;
209 border-right: none;
210 }
211
212 tt {
213 background-color: #ecf0f3;
214 padding: 0 1px 0 1px;
215 font-size: 0.95em;
216 }
217
218 li {
219 margin-bottom: 0.4em;
220 }
221 ul {
222 list-style-type: square;
223 }
224
225 .external.reference em {
226 font-style: normal;
227 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698