Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Draft Forbes Group Website (Build by Nikola). The official site is hosted at:

https://labs.wsu.edu/forbes

6076 views
License: GPL3
ubuntu2004
1
/* Minimal style sheet for the HTML output of Docutils. */
2
/* */
3
/* :Author: Günter Milde, based on html4css1.css by David Goodger */
4
/* :Id: $Id: minimal.css 8642 2021-03-26 13:51:14Z milde $ */
5
/* :Copyright: © 2015 Günter Milde. */
6
/* :License: Released under the terms of the `2-Clause BSD license`_, */
7
/* in short: */
8
/* */
9
/* Copying and distribution of this file, with or without modification, */
10
/* are permitted in any medium without royalty provided the copyright */
11
/* notice and this notice are preserved. */
12
/* */
13
/* This file is offered as-is, without any warranty. */
14
/* */
15
/* .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause */
16
17
/* This CSS2.1_ stylesheet defines rules for Docutils elements without */
18
/* HTML equivalent. It is required to make the document semantic visible. */
19
/* */
20
/* .. _CSS2.1: http://www.w3.org/TR/CSS2 */
21
/* .. _validates: http://jigsaw.w3.org/css-validator/validator$link */
22
23
/* titles */
24
p.topic-title,
25
p.admonition-title,
26
p.system-message-title {
27
font-weight: bold;
28
}
29
p.sidebar-title,
30
p.rubric {
31
font-weight: bold;
32
font-size: larger;
33
}
34
p.rubric {
35
color: maroon;
36
}
37
p.subtitle,
38
p.section-subtitle,
39
p.sidebar-subtitle {
40
font-weight: bold;
41
margin-top: -0.5em;
42
}
43
h1 + p.subtitle {
44
font-size: 1.6em;
45
}
46
h2 + p.section-subtitle, a.toc-backref {
47
color: black;
48
text-decoration: none;
49
}
50
51
/* Warnings, Errors */
52
.system-messages h2,
53
.system-message-title,
54
span.problematic {
55
color: red;
56
}
57
58
/* Inline Literals */
59
.docutils.literal {
60
font-family: monospace;
61
white-space: pre-wrap;
62
}
63
/* do not wrap at hyphens and similar: */
64
.literal > span.pre { white-space: nowrap; }
65
66
/* Lists */
67
68
/* compact and simple lists: no margin between items */
69
.simple li, .simple ul, .simple ol,
70
.compact li, .compact ul, .compact ol,
71
.simple > li p, dl.simple > dd,
72
.compact > li p, dl.compact > dd {
73
margin-top: 0;
74
margin-bottom: 0;
75
}
76
77
/* Table of Contents */
78
.topic.contents { margin: 0.5em 0; }
79
.topic.contents ul.auto-toc {
80
list-style-type: none;
81
padding-left: 1.5em;
82
}
83
84
/* Enumerated Lists */
85
ol.arabic { list-style: decimal }
86
ol.loweralpha { list-style: lower-alpha }
87
ol.upperalpha { list-style: upper-alpha }
88
ol.lowerroman { list-style: lower-roman }
89
ol.upperroman { list-style: upper-roman }
90
91
/* Definition Lists and Derivatives */
92
dt .classifier { font-style: italic }
93
dt .classifier:before {
94
font-style: normal;
95
margin: 0.5em;
96
content: ":";
97
}
98
/* Field Lists and similar */
99
/* bold field name, content starts on the same line */
100
dl.field-list > dt,
101
dl.option-list > dt,
102
dl.docinfo > dt,
103
dl.footnote > dt,
104
dl.citation > dt {
105
font-weight: bold;
106
clear: left;
107
float: left;
108
margin: 0;
109
padding: 0;
110
padding-right: 0.5em;
111
}
112
/* Offset for field content (corresponds to the --field-name-limit option) */
113
dl.field-list > dd,
114
dl.option-list > dd,
115
dl.docinfo > dd {
116
margin-left: 9em; /* ca. 14 chars in the test examples, fit all Docinfo fields */
117
}
118
/* start field-body on a new line after long field names */
119
dl.field-list > dd > *:first-child,
120
dl.option-list > dd > *:first-child
121
{
122
display: inline-block;
123
width: 100%;
124
margin: 0;
125
}
126
127
/* Bibliographic Fields (docinfo) */
128
dl.docinfo pre.address {
129
font: inherit;
130
margin: 0.5em 0;
131
}
132
dl.docinfo > dd.authors > p { margin: 0; }
133
134
/* Option Lists */
135
dl.option-list > dt { font-weight: normal; }
136
span.option { white-space: nowrap; }
137
138
139
/* Footnotes and Citations */
140
141
.footnote, .citation { margin: 1em 0; } /* default paragraph skip (Firefox) */
142
/* hanging indent */
143
.citation { padding-left: 2em; }
144
.footnote { padding-left: 1.7em; }
145
.footnote.superscript { padding-left: 1.0em; }
146
.citation > .label { margin-left: -2em; }
147
.footnote > .label { margin-left: -1.7em; }
148
.footnote.superscript > .label { margin-left: -1.0em; }
149
150
.footnote > .label + *,
151
.citation > .label + * {
152
display: inline-block;
153
margin-top: 0;
154
vertical-align: top;
155
}
156
.footnote > .backrefs + *,
157
.citation > .backrefs + * {
158
margin-top: 0;
159
}
160
.footnote > .label + p, .footnote > .backrefs + p,
161
.citation > .label + p, .citation > .backrefs + p {
162
display: inline;
163
vertical-align: inherit;
164
}
165
166
.backrefs { user-select: none; }
167
.backrefs > a { font-style: italic; }
168
169
/* superscript footnotes */
170
a[role="doc-noteref"].superscript,
171
.footnote.superscript > .label,
172
.footnote.superscript > .backrefs {
173
vertical-align: super;
174
font-size: smaller;
175
line-height: 1;
176
}
177
a[role="doc-noteref"].superscript > .fn-bracket,
178
.footnote.superscript > .label > .fn-bracket {
179
/* hide brackets in display but leave for copy/paste */
180
display: inline-block;
181
width: 0;
182
overflow: hidden;
183
}
184
[role="doc-noteref"].superscript + [role="doc-noteref"].superscript {
185
padding-left: 0.15em; /* separate consecutive footnote references */
186
/* TODO: unfortunately, "+" also selects with text between the references. */
187
}
188
189
/* Legacy Footnotes and Citations */
190
dl.footnote.superscript > dd { margin-left: 1em; }
191
dl.footnote.brackets > dd { margin-left: 2em; }
192
dl.footnote > dt { font-weight: normal; }
193
dt.label > span.brackets:before { content: "["; }
194
dt.label > span.brackets:after { content: "]"; }
195
a.footnote-reference.superscript,
196
dl.footnote.superscript > dt.label {
197
vertical-align: super;
198
font-size: small;
199
}
200
dt.label > span.fn-backref {
201
margin-left: 0.2em;
202
font-weight: normal;
203
}
204
dt.label > span.fn-backref > a { font-style: italic; }
205
206
/* Alignment */
207
.align-left {
208
text-align: left;
209
margin-right: auto;
210
}
211
.align-center {
212
clear: both;
213
text-align: center;
214
margin-left: auto;
215
margin-right: auto;
216
}
217
.align-right {
218
text-align: right;
219
margin-left: auto;
220
}
221
.align-top { vertical-align: top; }
222
.align-middle { vertical-align: middle; }
223
.align-bottom { vertical-align: bottom; }
224
225
/* reset inner alignment in figures and tables */
226
figure.align-left, figure.align-right,
227
table.align-left, table.align-center, table.align-right {
228
text-align: inherit;
229
}
230
231
/* Text Blocks */
232
blockquote,
233
div.topic,
234
aside.topic {
235
margin: 1em 2em;
236
}
237
.sidebar,
238
.admonition,
239
.system-message {
240
border: thin solid;
241
margin: 1em 2em;
242
padding: 0.5em 1em;
243
}
244
.sidebar {
245
width: 30%;
246
max-width: 26em;
247
float: right;
248
clear: right;
249
}
250
div.line-block { display: block; }
251
div.line-block div.line-block, pre { margin-left: 2em; }
252
253
/* Code line numbers: dropped when copying text from the page */
254
pre.code .ln { display: none; }
255
pre.code code:before {
256
content: attr(data-lineno); /* …, none) fallback not supported by any browser */
257
color: gray;
258
}
259
260
/* Tables */
261
262
td > p:first-child, th > p:first-child { margin-top: 0; }
263
td > p, th > p { margin-bottom: 0; }
264
265
.borderless td, .borderless th {
266
border: 0;
267
padding: 0;
268
padding-right: 0.5em /* separate table cells */
269
}
270
271
/* CSS31_ style sheet for the output of Docutils HTML writers. */
272
/* Rules for easy reading and pre-defined style variants. */
273
/* */
274
/* :Author: Günter Milde, based on html4css1.css by David Goodger */
275
/* :Id: $Id: plain.css 8636 2021-03-19 00:23:33Z milde $ */
276
/* :Copyright: © 2015 Günter Milde. */
277
/* :License: Released under the terms of the `2-Clause BSD license`_, */
278
/* in short: */
279
/* */
280
/* Copying and distribution of this file, with or without modification, */
281
/* are permitted in any medium without royalty provided the copyright */
282
/* notice and this notice are preserved. */
283
/* */
284
/* This file is offered as-is, without any warranty. */
285
/* */
286
/* .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause */
287
/* .. _CSS3: http://www.w3.org/TR/CSS3 */
288
289
290
/* Document Structure */
291
/* ****************** */
292
293
/* Transitions */
294
hr.docutils {
295
width: 80%;
296
margin-top: 1em;
297
margin-bottom: 1em;
298
clear: both;
299
}
300
301
dl > dd {
302
margin-bottom: 0.5em;
303
}
304
305
/* Lists */
306
/* ===== */
307
308
/* Separate list entries in compound lists */
309
dl > dd, ol > li,
310
311
/* Definition Lists */
312
/* Indent lists nested in definition lists */
313
/* (:only-child is new in CSS 3) */
314
dd > ul:only-child, dd > ol:only-child { padding-left: 1em; }
315
316
/* Description Lists */
317
/* styled like in most dictionaries, encyclopedias etc. */
318
dl.description > dt {
319
font-weight: bold;
320
clear: left;
321
float: left;
322
margin: 0;
323
padding: 0;
324
padding-right: 0.5em;
325
}
326
327
/* Field Lists */
328
329
/* example for custom field-name width */
330
dl.field-list.narrow > dd {
331
margin-left: 5em;
332
}
333
/* run-in: start field-body on same line after long field names */
334
dl.field-list.run-in > dd p {
335
display: block;
336
}
337
338
/* Bibliographic Fields */
339
340
/* generally, bibliographic fields use special definition list dl.docinfo */
341
/* but dedication and abstract are placed into "topic" divs */
342
div.abstract p.topic-title {
343
text-align: center;
344
}
345
div.dedication {
346
margin: 2em 5em;
347
text-align: center;
348
font-style: italic;
349
}
350
div.dedication p.topic-title {
351
font-style: normal;
352
}
353
354
/* Text Blocks */
355
/* =========== */
356
357
/* Literal Blocks */
358
pre.literal-block, pre.doctest-block,
359
pre.math, pre.code {
360
font-family: monospace;
361
}
362
363
/* Block Quotes */
364
blockquote > table,
365
div.topic > table {
366
margin-top: 0;
367
margin-bottom: 0;
368
}
369
blockquote p.attribution,
370
div.topic p.attribution {
371
text-align: right;
372
margin-left: 20%;
373
}
374
375
/* Tables */
376
/* ====== */
377
378
/* th { vertical-align: bottom; } */
379
380
table tr { text-align: left; }
381
382
/* "booktabs" style (no vertical lines) */
383
table.booktabs {
384
border: 0;
385
border-top: 2px solid;
386
border-bottom: 2px solid;
387
border-collapse: collapse;
388
}
389
table.booktabs * {
390
border: 0;
391
}
392
table.booktabs th {
393
border-bottom: thin solid;
394
}
395
396
/* numbered tables (counter defined in div.document) */
397
table.numbered > caption:before {
398
counter-increment: table;
399
content: "Table " counter(table) ": ";
400
font-weight: bold;
401
}
402
403
/* Explicit Markup Blocks */
404
/* ====================== */
405
406
/* Footnotes and Citations */
407
/* ----------------------- */
408
409
/* line on the left */
410
.footnote-list {
411
border-left: solid thin;
412
padding-left: 0.25em;
413
}
414
415
/* same thing for old docutils versions */
416
dl.footnote {
417
padding-left: 1ex;
418
border-left: solid;
419
border-left-width: thin;
420
}
421
422
/* Directives */
423
/* ---------- */
424
425
/* Body Elements */
426
/* ~~~~~~~~~~~~~ */
427
428
/* Images and Figures */
429
430
/* let content flow to the side of aligned images and figures */
431
figure.align-left,
432
img.align-left,
433
video.align-left,
434
object.align-left {
435
clear: left;
436
float: left;
437
margin-right: 1em;
438
}
439
figure.align-right,
440
img.align-right,
441
video.align-right,
442
object.align-right {
443
clear: right;
444
float: right;
445
margin-left: 1em;
446
}
447
448
/* Numbered figures */
449
figure.numbered > figcaption > p:before {
450
counter-increment: figure;
451
content: "Figure " counter(figure) ": ";
452
font-weight: bold;
453
}
454
455
/* Admonitions and System Messages */
456
.caution p.admonition-title,
457
.attention p.admonition-title,
458
.danger p.admonition-title,
459
.error p.admonition-title,
460
.warning p.admonition-title,
461
div.error {
462
color: red;
463
}
464
465
/* Sidebar */
466
/* Move right. In a layout with fixed margins, */
467
/* it can be moved into the margin. */
468
aside.sidebar {
469
width: 30%;
470
max-width: 26em;
471
margin-left: 1em;
472
margin-right: -2%;
473
background-color: #ffffee;
474
}
475
476