-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 72b8988 with MkDocs version: 1.6.1
- Loading branch information
0 parents
commit e9b8a56
Showing
276 changed files
with
32,186 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
|
||
/* Avoid breaking parameter names, etc. in table cells. */ | ||
.doc-contents td code { | ||
word-break: normal !important; | ||
} | ||
|
||
/* No line break before first paragraph of descriptions. */ | ||
.doc-md-description, | ||
.doc-md-description>p:first-child { | ||
display: inline; | ||
} | ||
|
||
/* Max width for docstring sections tables. */ | ||
.doc .md-typeset__table, | ||
.doc .md-typeset__table table { | ||
display: table !important; | ||
width: 100%; | ||
} | ||
|
||
.doc .md-typeset__table tr { | ||
display: table-row; | ||
} | ||
|
||
/* Defaults in Spacy table style. */ | ||
.doc-param-default { | ||
float: right; | ||
} | ||
|
||
/* Parameter headings must be inline, not blocks. */ | ||
.doc-heading-parameter { | ||
display: inline; | ||
} | ||
|
||
/* Prefer space on the right, not the left of parameter permalinks. */ | ||
.doc-heading-parameter .headerlink { | ||
margin-left: 0 !important; | ||
margin-right: 0.2rem; | ||
} | ||
|
||
/* Backward-compatibility: docstring section titles in bold. */ | ||
.doc-section-title { | ||
font-weight: bold; | ||
} | ||
|
||
/* Symbols in Navigation and ToC. */ | ||
:root, :host, | ||
[data-md-color-scheme="default"] { | ||
--doc-symbol-parameter-fg-color: #df50af; | ||
--doc-symbol-attribute-fg-color: #953800; | ||
--doc-symbol-function-fg-color: #8250df; | ||
--doc-symbol-method-fg-color: #8250df; | ||
--doc-symbol-class-fg-color: #0550ae; | ||
--doc-symbol-module-fg-color: #5cad0f; | ||
|
||
--doc-symbol-parameter-bg-color: #df50af1a; | ||
--doc-symbol-attribute-bg-color: #9538001a; | ||
--doc-symbol-function-bg-color: #8250df1a; | ||
--doc-symbol-method-bg-color: #8250df1a; | ||
--doc-symbol-class-bg-color: #0550ae1a; | ||
--doc-symbol-module-bg-color: #5cad0f1a; | ||
} | ||
|
||
[data-md-color-scheme="slate"] { | ||
--doc-symbol-parameter-fg-color: #ffa8cc; | ||
--doc-symbol-attribute-fg-color: #ffa657; | ||
--doc-symbol-function-fg-color: #d2a8ff; | ||
--doc-symbol-method-fg-color: #d2a8ff; | ||
--doc-symbol-class-fg-color: #79c0ff; | ||
--doc-symbol-module-fg-color: #baff79; | ||
|
||
--doc-symbol-parameter-bg-color: #ffa8cc1a; | ||
--doc-symbol-attribute-bg-color: #ffa6571a; | ||
--doc-symbol-function-bg-color: #d2a8ff1a; | ||
--doc-symbol-method-bg-color: #d2a8ff1a; | ||
--doc-symbol-class-bg-color: #79c0ff1a; | ||
--doc-symbol-module-bg-color: #baff791a; | ||
} | ||
|
||
code.doc-symbol { | ||
border-radius: .1rem; | ||
font-size: .85em; | ||
padding: 0 .3em; | ||
font-weight: bold; | ||
} | ||
|
||
code.doc-symbol-parameter { | ||
color: var(--doc-symbol-parameter-fg-color); | ||
background-color: var(--doc-symbol-parameter-bg-color); | ||
} | ||
|
||
code.doc-symbol-parameter::after { | ||
content: "param"; | ||
} | ||
|
||
code.doc-symbol-attribute { | ||
color: var(--doc-symbol-attribute-fg-color); | ||
background-color: var(--doc-symbol-attribute-bg-color); | ||
} | ||
|
||
code.doc-symbol-attribute::after { | ||
content: "attr"; | ||
} | ||
|
||
code.doc-symbol-function { | ||
color: var(--doc-symbol-function-fg-color); | ||
background-color: var(--doc-symbol-function-bg-color); | ||
} | ||
|
||
code.doc-symbol-function::after { | ||
content: "func"; | ||
} | ||
|
||
code.doc-symbol-method { | ||
color: var(--doc-symbol-method-fg-color); | ||
background-color: var(--doc-symbol-method-bg-color); | ||
} | ||
|
||
code.doc-symbol-method::after { | ||
content: "meth"; | ||
} | ||
|
||
code.doc-symbol-class { | ||
color: var(--doc-symbol-class-fg-color); | ||
background-color: var(--doc-symbol-class-bg-color); | ||
} | ||
|
||
code.doc-symbol-class::after { | ||
content: "class"; | ||
} | ||
|
||
code.doc-symbol-module { | ||
color: var(--doc-symbol-module-fg-color); | ||
background-color: var(--doc-symbol-module-bg-color); | ||
} | ||
|
||
code.doc-symbol-module::after { | ||
content: "mod"; | ||
} | ||
|
||
.doc-signature .autorefs { | ||
color: inherit; | ||
border-bottom: 1px dotted currentcolor; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/* Indentation. */ | ||
div.doc-contents:not(.first) { | ||
padding-left: 25px; | ||
border-left: .05rem solid var(--md-typeset-table-color); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
html { | ||
overscroll-behavior-y: none; | ||
} | ||
|
||
.md-typeset h5 { | ||
text-transform: none; /* undo uppercasing of h5 applied by theme */ | ||
} | ||
|
||
/* Branded header styles */ | ||
.md-header, | ||
.md-tabs { | ||
background-image: url('../images/background.svg'); | ||
background-size: cover; | ||
} | ||
.md-tabs { | ||
background-position-y: -48px; /* exact height of .md-header on medium-width viewports */ | ||
} | ||
@media screen and (min-width: 1600px) { | ||
.md-tabs { | ||
background-position-y: -52.8px; /* exact height of .md-header on wide viewports */ | ||
} | ||
} | ||
@media screen and (min-width: 2000px) { | ||
.md-tabs { | ||
background-position-y: -57.6px; /* exact height of .md-header on ultrawide viewports */ | ||
} | ||
} | ||
|
||
/* Nav styling */ | ||
.md-nav__link { | ||
align-items: center; | ||
} | ||
.md-nav__link svg { | ||
height: 1em; | ||
} | ||
.md-nav__link:not(:hover, .md-nav__link--active) > svg { | ||
color: var(--md-default-fg-color--light); /* slightly muted nav icons */ | ||
} | ||
@media screen and (min-width: 76.25em) { | ||
.md-nav__item--section { | ||
margin: 2em 0; | ||
} | ||
} | ||
|
||
/* smaller figcaptions */ | ||
figcaption { | ||
font-size: 0.8em; | ||
} | ||
|
||
/* Disable interactivity styles on grid cards, which are not interactive */ | ||
.md-typeset .grid.cards>ul>li:hover { | ||
border: .05rem solid var(--md-default-fg-color--lightest); /* copy from base grid card styles */ | ||
box-shadow: unset; | ||
} | ||
|
||
/* hide math overflow */ | ||
.md-typeset div.arithmatex { | ||
overflow-y: hidden; | ||
} | ||
|
||
/* Apply IBM branding colors on top of 'default' scheme */ | ||
[data-md-color-scheme="default"] { | ||
--md-primary-fg-color: #0F62FE; | ||
--md-primary-fg-color--dark: #452485; | ||
--md-primary-fg-color--light: #d4e3ff; | ||
|
||
--md-typeset-a-color: #0F62FE; /* manually set link color to indigo */ | ||
|
||
--md-mg-positive-color: #008e10; | ||
--md-mg-negative-color: #ac0000; | ||
|
||
--md-mg-substitution-color: #008e10; | ||
--md-mg-deletion-color: #ac0000; | ||
--md-mg-insertion-color: #3e57d3; | ||
} | ||
|
||
/* Apply IBM branding on top of 'slate' (dark) scheme */ | ||
@media screen { | ||
[data-md-color-scheme="slate"] { | ||
--md-primary-fg-color: #0F62FE; | ||
--md-primary-fg-color--dark: #332362; | ||
--md-primary-fg-color--light: #835dcd; | ||
|
||
--md-typeset-a-color: #5f72ff; /* manually set link color to indigo */ | ||
|
||
--md-hue: 216; | ||
|
||
--md-default-fg-color: hsla(var(--md-hue), 25%, 95%, 1); | ||
--md-default-fg-color--light: hsla(var(--md-hue), 25%, 90%, 0.62); | ||
--md-default-fg-color--lighter: hsla(var(--md-hue), 25%, 90%, 0.32); | ||
--md-default-fg-color--lightest: hsla(var(--md-hue), 25%, 90%, 0.12); | ||
--md-default-bg-color: hsla(var(--md-hue), 7%, 13%, 1); | ||
--md-default-bg-color--light: hsla(var(--md-hue), 7%, 13%, 0.54); | ||
--md-default-bg-color--lighter: hsla(var(--md-hue), 7%, 13%, 0.26); | ||
--md-default-bg-color--lightest: hsla(var(--md-hue), 7%, 13%, 0.07); | ||
|
||
--md-code-fg-color: hsla(var(--md-hue), 7%, 90%, 1); | ||
--md-code-bg-color: hsla(var(--md-hue), 7%, 17%, 1); | ||
--md-code-bg-color--light: hsla(var(--md-hue), 7%, 17%, 0.75); | ||
--md-code-bg-color--lighter: hsla(var(--md-hue), 7%, 17%, 0.5); | ||
|
||
--md-footer-bg-color: hsla(var(--md-hue), 7%, 10%, 0.87); | ||
--md-footer-bg-color--dark: hsla(var(--md-hue), 7%, 8%, 1); | ||
|
||
--md-mg-positive-color: #b6ffc4; | ||
--md-mg-negative-color: #ffbcbf; | ||
|
||
--md-mg-substitution-color: #b6ffc4; | ||
--md-mg-deletion-color: #ffbcbf; | ||
--md-mg-insertion-color: #948aff; | ||
} | ||
} | ||
|
||
/* custom admonition type for FAQ */ | ||
:root { | ||
--md-admonition-icon--faq: url('data:image/svg+xml;charset=utf-8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><g id="flag_1_"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.99,2.99c-0.55,0-1,0.45-1,1v11c0,0.55,0.45,1,1,1s1-0.45,1-1v-11C3.99,3.44,3.54,2.99,2.99,2.99z M2.99-0.01c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S3.54-0.01,2.99-0.01z M4.99,3.02v7.23c2.07-2.11,5.92,1.75,9,0V3.02C10.99,5.09,7.05,0.99,4.99,3.02z"/></g></svg>'); | ||
--md-tip-border-color: #0F62FE; | ||
--md-tip-bg-color: #0F62FE; | ||
--md-tip-text-color: #edf3ff; | ||
} | ||
|
||
[data-md-color-scheme="dark"] { | ||
--md-tip-text-color: var(--md-default-fg-color--lighter); | ||
} | ||
|
||
.md-typeset .admonition.tip, | ||
.md-typeset details.tip { | ||
border-color: var(--md-tip-border-color); | ||
} | ||
|
||
.md-typeset .tip > .admonition-title, | ||
.md-typeset .tip > summary { | ||
background-color: var(--md-tip-bg-color); | ||
color: var(--md-tip-text-color); | ||
} | ||
|
||
.md-typeset .tip > .admonition-title::before, | ||
.md-typeset .tip > summary::before { | ||
background-color: #edf3ff; | ||
-webkit-mask-image: var(--md-admonition-icon--tip); | ||
mask-image: var(--md-admonition-icon--tip); | ||
} | ||
|
||
.md-typeset .admonition.faq, | ||
.md-typeset details.faq { | ||
border-color: var(--md-typeset-table-color); | ||
} | ||
.md-typeset .faq > .admonition-title, | ||
.md-typeset .faq > summary { | ||
background-color: var(--md-typeset-table-color--light); | ||
} | ||
.md-typeset .faq > .admonition-title::before, | ||
.md-typeset .faq > summary::before { | ||
background-color: var(--md-accent-fg-color); | ||
-webkit-mask-image: var(--md-admonition-icon--faq); | ||
mask-image: var(--md-admonition-icon--faq); | ||
} | ||
.mg-cell-color-positive { | ||
color: var(--md-mg-positive-color); | ||
} | ||
.mg-cell-color-negative { | ||
color: var(--md-mg-negative-color); | ||
} | ||
|
||
.mg-color-substitution { | ||
color: var(--md-mg-substitution-color); | ||
} | ||
.mg-color-deletion { | ||
color: var(--md-mg-deletion-color); | ||
} | ||
.mg-color-insertion { | ||
color: var(--md-mg-insertion-color); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.