2020-06-06 10:43:50 +02:00
|
|
|
:root {
|
|
|
|
--background-color: #fff;
|
|
|
|
--timestamp-color: #b8c2cc;
|
|
|
|
--link-color: #2779bd;
|
|
|
|
--font-color: #000;
|
|
|
|
--ref-symbol-color: #dae1e7;
|
|
|
|
--ref-symbol-hover-color: #b8c2cc;
|
|
|
|
--title-bottom-line-color: #f1f5f8;
|
|
|
|
--footer-top-line-color: #f1f5f8;
|
|
|
|
--footer-font-color: #616161;
|
|
|
|
--code-signature-border-color: #a0aec0;
|
|
|
|
--menu-background-color: #4b6c88;
|
|
|
|
--menu-font-color: #fff;
|
|
|
|
--menu-indent-line-color: #3b3b3b66;
|
|
|
|
--menu-indent-line-active-color: #00000066;
|
|
|
|
--menu-scrollbar-color: #a0aec0;
|
|
|
|
--menu-toggle-icon-color: #fff;
|
|
|
|
--menu-toggle-icon-hover-color: #00000044;
|
|
|
|
--menu-search-background-color: #00000044;
|
|
|
|
--menu-search-font-color: #fff;
|
|
|
|
--toc-font-color: #2779bd;
|
|
|
|
--toc-indent-line-color: #dae1e7;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root.dark .dark-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root:not(.dark) .light-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark body {
|
|
|
|
--background-color: #1a202c;
|
|
|
|
--timestamp-color: #b8c2cc;
|
|
|
|
--font-color: #fff;
|
|
|
|
--link-color: #90cdf4;
|
|
|
|
--ref-symbol-color: #2d3748;
|
|
|
|
--ref-symbol-hover-color: #4a5568;
|
|
|
|
--title-bottom-line-color: #2d3748;
|
|
|
|
--footer-top-line-color: #2d3748;
|
|
|
|
--footer-font-color: #bbd3e1;
|
|
|
|
--code-signature-border-color: #4a5568;
|
|
|
|
--menu-background-color: #2d3748;
|
|
|
|
--menu-font-color: #fff;
|
|
|
|
--menu-indent-line-color: #4a5568;
|
|
|
|
--menu-indent-line-active-color: #90cdf4;
|
|
|
|
--menu-scrollbar-color: #4a5568;
|
|
|
|
--menu-toggle-icon-color: #fff;
|
|
|
|
--menu-search-background-color: #4a5568;
|
|
|
|
--menu-search-font-color: #fff;
|
|
|
|
--toc-font-color: #90cdf4;
|
|
|
|
--toc-indent-line-color: #1a202c;
|
|
|
|
}
|
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
|
|
html {
|
|
|
|
line-height: 1.15;
|
|
|
|
-webkit-text-size-adjust: 100%;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
body {
|
|
|
|
margin: 0;
|
2020-06-06 10:43:50 +02:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
|
|
background-color: #fff;
|
|
|
|
background-color: var(--background-color);
|
|
|
|
color: #000;
|
|
|
|
color: var(--font-color);
|
2020-06-06 07:56:17 +02:00
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
main {
|
|
|
|
display: block;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
margin: 0.67em 0;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
hr {
|
|
|
|
box-sizing: content-box;
|
|
|
|
height: 0;
|
|
|
|
overflow: visible;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
pre {
|
|
|
|
font-family: monospace, monospace;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
a {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
abbr[title] {
|
|
|
|
border-bottom: none;
|
|
|
|
text-decoration: underline;
|
|
|
|
text-decoration: underline dotted;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
b,
|
|
|
|
strong {
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
code,
|
|
|
|
kbd,
|
|
|
|
samp {
|
|
|
|
font-family: monospace, monospace;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
small {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
sub,
|
|
|
|
sup {
|
|
|
|
font-size: 75%;
|
|
|
|
line-height: 0;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
sub {
|
|
|
|
bottom: -0.25em;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
sup {
|
|
|
|
top: -0.5em;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
img {
|
|
|
|
border-style: none;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
button,
|
|
|
|
input,
|
|
|
|
optgroup,
|
|
|
|
select,
|
|
|
|
textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 100%;
|
|
|
|
line-height: 1.15;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
button,
|
|
|
|
input {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
button,
|
|
|
|
select {
|
|
|
|
text-transform: none;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
button,
|
|
|
|
[type="button"],
|
|
|
|
[type="reset"],
|
|
|
|
[type="submit"] {
|
|
|
|
-webkit-appearance: button;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
button::-moz-focus-inner,
|
|
|
|
[type="button"]::-moz-focus-inner,
|
|
|
|
[type="reset"]::-moz-focus-inner,
|
|
|
|
[type="submit"]::-moz-focus-inner {
|
|
|
|
border-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
button:-moz-focusring,
|
|
|
|
[type="button"]:-moz-focusring,
|
|
|
|
[type="reset"]:-moz-focusring,
|
|
|
|
[type="submit"]:-moz-focusring {
|
|
|
|
outline: 1px dotted ButtonText;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
fieldset {
|
|
|
|
padding: 0.35em 0.75em 0.625em;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
legend {
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: inherit;
|
|
|
|
display: table;
|
|
|
|
max-width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
progress {
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
textarea {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
[type="checkbox"],
|
|
|
|
[type="radio"] {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
[type="number"]::-webkit-inner-spin-button,
|
|
|
|
[type="number"]::-webkit-outer-spin-button {
|
|
|
|
height: auto;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
[type="search"] {
|
|
|
|
-webkit-appearance: textfield;
|
|
|
|
outline-offset: -2px;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
[type="search"]::-webkit-search-decoration {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
::-webkit-file-upload-button {
|
|
|
|
-webkit-appearance: button;
|
|
|
|
font: inherit;
|
|
|
|
}
|
2020-06-06 10:43:50 +02:00
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
summary {
|
|
|
|
display: list-item;
|
|
|
|
}
|
|
|
|
|
2020-06-06 10:43:50 +02:00
|
|
|
template {
|
2020-06-06 07:56:17 +02:00
|
|
|
display: none;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-06 10:43:50 +02:00
|
|
|
[hidden] {
|
2020-06-06 07:56:17 +02:00
|
|
|
display: none;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Reset for menus */
|
2020-06-06 07:56:17 +02:00
|
|
|
.doc-nav ul,
|
|
|
|
.doc-toc ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav {
|
2020-06-06 07:56:17 +02:00
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
display: flex;
|
|
|
|
background-color: #4b6c88;
|
|
|
|
background-color: var(--menu-background-color);
|
|
|
|
color: #fff;
|
|
|
|
color: var(--menu-font-color);
|
|
|
|
flex-direction: column;
|
|
|
|
overflow-y: auto;
|
|
|
|
height: 100vh;
|
|
|
|
z-index: 10;
|
|
|
|
scrollbar-width: thin;
|
|
|
|
scrollbar-color: #a0aec0 transparent;
|
|
|
|
scrollbar-color: var(--menu-scrollbar-color) transparent;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
*::-webkit-scrollbar {
|
2020-06-06 07:56:17 +02:00
|
|
|
width: 8px;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
*::-webkit-scrollbar-track {
|
2020-06-06 07:56:17 +02:00
|
|
|
background: transparent;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
*::-webkit-scrollbar-thumb {
|
2020-06-06 07:56:17 +02:00
|
|
|
background-color: #a0aec0;
|
|
|
|
background-color: var(--menu-scrollbar-color);
|
|
|
|
border: 3px solid transparent;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-nav li {
|
2020-06-06 07:56:17 +02:00
|
|
|
line-height: 1.8;
|
|
|
|
font-weight: 300;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-nav .content.show {
|
2020-06-06 07:56:17 +02:00
|
|
|
display: flex;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-nav .content.hidden {
|
2020-06-06 07:56:17 +02:00
|
|
|
display: none;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-nav #toggle-menu {
|
2020-06-06 07:56:17 +02:00
|
|
|
cursor: pointer;
|
|
|
|
padding: 0.3rem;
|
|
|
|
fill: #fff;
|
|
|
|
fill: var(--menu-toggle-icon-color);
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-nav #toggle-menu:active {
|
2020-06-06 07:56:17 +02:00
|
|
|
background-color: #00000044;
|
|
|
|
background-color: var(--menu-toggle-icon-hover-color);
|
|
|
|
border-radius: 5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.heading-container {
|
|
|
|
position: relative;
|
|
|
|
/* IE11 */
|
|
|
|
position: sticky;
|
|
|
|
position: -webkit-sticky;
|
|
|
|
top: 0;
|
|
|
|
background-color: #4b6c88;
|
|
|
|
background-color: var(--menu-background-color);
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.heading-container>.heading {
|
|
|
|
display: flex;
|
|
|
|
padding: 0 2rem;
|
|
|
|
height: 56px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.heading-container>.heading>.module {
|
|
|
|
font-size: 1.6rem;
|
|
|
|
font-weight: 500;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.heading-container>.heading>.toggle-version-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.heading-container>.heading>.toggle-version-container>#dark-mode-toggle {
|
|
|
|
cursor: pointer;
|
|
|
|
fill: #fff;
|
|
|
|
display: flex;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.heading-container>.heading>.toggle-version-container>#dark-mode-toggle>svg {
|
|
|
|
width: 1.2rem;
|
|
|
|
height: 1.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.heading-container>.heading>#search {
|
|
|
|
margin-top: 1rem;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0.2rem;
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
outline: none;
|
|
|
|
background-color: #00000044;
|
|
|
|
background-color: var(--menu-search-background-color);
|
|
|
|
color: #fff;
|
|
|
|
color: var(--menu-search-font-color);
|
|
|
|
margin-left: -0.6rem;
|
|
|
|
margin-right: -0.6rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.heading-container>.heading>#search::placeholder {
|
|
|
|
color: #edf2f7;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.heading-container>.heading>#search:-ms-input-placeholder {
|
|
|
|
color: #edf2f7;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content {
|
|
|
|
padding: 0 2rem 2rem 2rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content>ul>li.active {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content>ul>li.open ul {
|
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content>ul>li.open>.menu-row>.dropdown-arrow {
|
|
|
|
transform: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content>ul>li>.menu-row {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content>ul>li>.menu-row>.dropdown-arrow {
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
height: 18px;
|
|
|
|
width: 18px;
|
|
|
|
margin-left: calc(-18px - 0.3rem);
|
|
|
|
margin-right: 0.3rem;
|
|
|
|
cursor: pointer;
|
|
|
|
fill: #fff;
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content>ul>li>ul {
|
|
|
|
margin: 0.4rem 0;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content>ul>li>ul>li {
|
|
|
|
border-color: #ffffff66;
|
|
|
|
border-color: var(--menu-indent-line-color);
|
|
|
|
border-left-width: 1.7px;
|
|
|
|
border-left-style: solid;
|
|
|
|
padding-left: 0.7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content>ul>li>ul>li.active {
|
|
|
|
border-color: #00000066;
|
|
|
|
border-color: var(--menu-indent-line-active-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content a {
|
|
|
|
color: #fff;
|
|
|
|
color: var(--menu-font-color);
|
|
|
|
text-decoration: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-nav>.content a:hover {
|
|
|
|
text-decoration: underline;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.doc-container {
|
2020-06-06 07:56:17 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
margin-top: 56px;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content {
|
2020-06-06 10:43:50 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-06-06 07:56:17 +02:00
|
|
|
padding: 1rem 2rem;
|
|
|
|
overflow: hidden;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-content a {
|
2020-06-06 07:56:17 +02:00
|
|
|
color: var(--link-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.doc-node:not(:last-child) {
|
|
|
|
padding: 1rem 0 3rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.timestamp {
|
|
|
|
font-size: 0.8rem;
|
|
|
|
color: #b8c2cc;
|
|
|
|
color: var(--timestamp-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.doc-node>.title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
border-bottom: 1px solid #f1f5f8;
|
|
|
|
border-bottom: 1px solid var(--title-bottom-line-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.doc-node>.title>.link {
|
|
|
|
margin-left: auto;
|
|
|
|
fill: #dae1e7;
|
|
|
|
fill: var(--ref-symbol-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.doc-node>.title>.link:hover {
|
|
|
|
fill: var(--ref-symbol-hover-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.doc-node h1 {
|
|
|
|
font-size: 2.5rem;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.doc-node .signature {
|
|
|
|
border-color: #a0aec0;
|
|
|
|
border-color: var(--code-signature-border-color);
|
|
|
|
border-left-width: 3px;
|
|
|
|
border-left-style: solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.doc-node>ul>li .task-list-item-checkbox {
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.doc-node>.title h1,
|
|
|
|
.doc-content>.doc-node>.title h2,
|
|
|
|
.doc-content>.doc-node>.title h3,
|
|
|
|
.doc-content>.doc-node>.title h4,
|
|
|
|
.doc-content>.doc-node>.title h5,
|
|
|
|
.doc-content>.doc-node>.title h6 {
|
|
|
|
font-weight: 400;
|
|
|
|
padding-bottom: 0.8rem;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.doc-node>.title h1 a,
|
|
|
|
.doc-content>.doc-node>.title h2 a,
|
|
|
|
.doc-content>.doc-node>.title h3 a,
|
|
|
|
.doc-content>.doc-node>.title h4 a,
|
|
|
|
.doc-content>.doc-node>.title h5 a,
|
|
|
|
.doc-content>.doc-node>.title h6 a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #dae1e7;
|
|
|
|
color: var(--ref-symbol-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-content>.doc-node>.title h1 a:hover,
|
|
|
|
.doc-content>.doc-node>.title h2 a:hover,
|
|
|
|
.doc-content>.doc-node>.title h3 a:hover,
|
|
|
|
.doc-content>.doc-node>.title h4 a:hover,
|
|
|
|
.doc-content>.doc-node>.title h5 a:hover,
|
|
|
|
.doc-content>.doc-node>.title h6 a:hover {
|
|
|
|
color: var(--ref-symbol-hover-color);
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
|
|
|
|
2020-06-06 10:43:50 +02:00
|
|
|
.doc-content .footer {
|
|
|
|
padding-top: 1rem;
|
|
|
|
margin-top: auto;
|
|
|
|
bottom: 1rem;
|
|
|
|
color: var(--footer-font-color);
|
|
|
|
border-top: 1px solid var(--footer-top-line-color);
|
|
|
|
}
|
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-toc {
|
2020-06-06 07:56:17 +02:00
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding: 2rem;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
scrollbar-width: none;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-toc::-webkit-scrollbar {
|
2020-06-06 07:56:17 +02:00
|
|
|
display: none;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-toc li {
|
2020-06-06 07:56:17 +02:00
|
|
|
line-height: 1.5;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-toc a {
|
2020-06-06 07:56:17 +02:00
|
|
|
color: #2779bd;
|
|
|
|
color: var(--toc-font-color);
|
|
|
|
font-size: 0.9rem;
|
|
|
|
font-weight: 600;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-toc a:hover {
|
2020-06-06 07:56:17 +02:00
|
|
|
text-decoration: underline;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-toc li ul {
|
2020-06-06 07:56:17 +02:00
|
|
|
border-color: #dae1e7;
|
|
|
|
border-color: var(--toc-indent-line-color);
|
|
|
|
border-left-width: 2px;
|
|
|
|
border-left-style: solid;
|
|
|
|
padding-left: 0.8rem;
|
|
|
|
margin: 0.2rem 0 0.2rem;
|
|
|
|
font-size: 0.7rem;
|
|
|
|
list-style: none;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
.doc-toc li ul a {
|
2020-06-06 07:56:17 +02:00
|
|
|
font-weight: 400;
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
|
|
|
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
/* Medium screen and up */
|
2020-06-06 07:56:17 +02:00
|
|
|
|
2020-06-04 23:50:59 +02:00
|
|
|
@media (min-width: 768px) {
|
2020-06-06 07:56:17 +02:00
|
|
|
.doc-container {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
.doc-content {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.doc-toc {
|
|
|
|
padding: 1rem 1rem 0 1rem;
|
|
|
|
position: relative;
|
|
|
|
/* IE11 */
|
|
|
|
position: sticky;
|
|
|
|
position: -webkit-sticky;
|
|
|
|
align-self: flex-start;
|
|
|
|
top: 56px;
|
|
|
|
height: auto;
|
|
|
|
height: 100vh;
|
|
|
|
min-width: 200px;
|
|
|
|
width: auto;
|
|
|
|
max-width: 300px;
|
|
|
|
}
|
|
|
|
.doc-toc>ul {
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
}
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1023px) {
|
2020-06-06 07:56:17 +02:00
|
|
|
.doc-nav.hidden {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.doc-nav>.heading-container>.heading {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.doc-nav>.heading-container>.heading>.toggle-version-container {
|
|
|
|
flex-grow: 1;
|
|
|
|
padding: 0 1rem;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.doc-nav>.heading-container>.heading>#search {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-06-04 23:50:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 1024px) {
|
2020-06-06 07:56:17 +02:00
|
|
|
.doc-nav {
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
.doc-nav #toggle-menu {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.doc-nav>.heading-container>.heading {
|
|
|
|
height: auto;
|
|
|
|
padding-top: 1rem;
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.doc-nav>.heading-container>.heading>.toggle-version-container {
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 0.2rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
}
|
|
|
|
.doc-nav>.heading-container>.heading>.toggle-version-container>#dark-mode-toggle {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.doc-nav .content.show,
|
|
|
|
.doc-nav .content.hidden {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.doc-container {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-left: 300px;
|
|
|
|
}
|
|
|
|
.doc-toc {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|