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