INIT
@@ -0,0 +1,411 @@
|
||||
/*------------------------------------
|
||||
Documentation
|
||||
------------------------------------*/
|
||||
|
||||
:focus, a:focus, button:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
p, ul li, ol li {
|
||||
color: #c5c8cc;
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 100%/*rtl:14px*/;
|
||||
}
|
||||
|
||||
h1, .h1 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h1, .h1 {
|
||||
font-size: calc(1.26609rem + 0.19312vw) ;
|
||||
}
|
||||
}
|
||||
|
||||
h2, .h2 {
|
||||
font-size: 1.3125rem;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h2, .h2 {
|
||||
font-size: calc(1.25625rem + 0.075vw) ;
|
||||
}
|
||||
}
|
||||
|
||||
h3, .h3 {
|
||||
font-size: 1.14844rem;
|
||||
}
|
||||
|
||||
h4, .h4 {
|
||||
font-size: 0.98438rem;
|
||||
}
|
||||
|
||||
h5, .h5 {
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
h6, .h6 {
|
||||
font-size: 0.76563rem;
|
||||
}
|
||||
|
||||
summary {
|
||||
margin-bottom: .35rem;
|
||||
}
|
||||
|
||||
.tab-content :not(pre) > code[class*="language-"],
|
||||
.tab-content pre[class*="language-"] {
|
||||
border-bottom-right-radius: .3125rem;
|
||||
border-bottom-left-radius: .3125rem;
|
||||
}
|
||||
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
color: #fff;
|
||||
margin: 0;
|
||||
white-space: pre-wrap;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
|
||||
-webkit-hyphens: none;
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
||||
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
||||
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
@media print {
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Code blocks */
|
||||
pre[class*="language-"] {
|
||||
padding: 1.5rem;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
:not(pre) > code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
background: #25282a;
|
||||
}
|
||||
|
||||
/* Light Theme */
|
||||
.prism-light:not(pre) > .prism-light code[class*="language-"],
|
||||
pre.prism-light[class*="language-"] {
|
||||
background: #202325;
|
||||
}
|
||||
|
||||
.prism-light code[class*="language-"],
|
||||
pre.prism-light[class*="language-"] {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Inline code */
|
||||
:not(pre) > code[class*="language-"] {
|
||||
padding: .1em;
|
||||
border-radius: .3em;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.token.comment,
|
||||
.token.prolog,
|
||||
.token.doctype,
|
||||
.token.cdata {
|
||||
color: slategray;
|
||||
}
|
||||
|
||||
.token.punctuation {
|
||||
color: #2f6f9f;
|
||||
}
|
||||
|
||||
.token.namespace {
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
.token.property,
|
||||
.token.tag,
|
||||
.token.boolean,
|
||||
.token.number,
|
||||
.token.constant,
|
||||
.token.symbol,
|
||||
.token.deleted {
|
||||
color: #2f6f9f;
|
||||
}
|
||||
|
||||
.token.selector,
|
||||
.token.attr-name,
|
||||
.token.string,
|
||||
.token.char,
|
||||
.token.builtin,
|
||||
.token.inserted {
|
||||
color: #26a5b5;
|
||||
}
|
||||
|
||||
.token.operator,
|
||||
.token.entity,
|
||||
.token.url,
|
||||
.language-css .token.string,
|
||||
.style .token.string {
|
||||
color: #d09a5c;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.token.atrule,
|
||||
.token.attr-value,
|
||||
.token.keyword {
|
||||
color: #d44950;
|
||||
}
|
||||
|
||||
.token.function,
|
||||
.token.class-name {
|
||||
color: #DD4A68;
|
||||
}
|
||||
|
||||
.token.regex,
|
||||
.token.important,
|
||||
.token.variable {
|
||||
color: #e90;
|
||||
}
|
||||
|
||||
.token.important,
|
||||
.token.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.token.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.token.entity {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
div.code-toolbar {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar {
|
||||
position: absolute;
|
||||
top: 1.0625rem;
|
||||
right: .75rem;
|
||||
transition: opacity 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
div.code-toolbar:hover > .toolbar {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar .toolbar-item {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar button {
|
||||
background: none;
|
||||
border: 0;
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
line-height: normal;
|
||||
overflow: visible;
|
||||
padding: 0;
|
||||
-webkit-user-select: none; /* for button */
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a,
|
||||
div.code-toolbar > .toolbar button,
|
||||
div.code-toolbar > .toolbar span {
|
||||
color: #fff;
|
||||
padding: .5rem 1rem;
|
||||
background-color: rgba(255, 255, 255, .1);
|
||||
border-radius: .3125em;
|
||||
transition: all .2s ease-in-out;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a:hover,
|
||||
div.code-toolbar > .toolbar a:focus,
|
||||
div.code-toolbar > .toolbar button:hover,
|
||||
div.code-toolbar > .toolbar button:focus,
|
||||
div.code-toolbar > .toolbar span:hover,
|
||||
div.code-toolbar > .toolbar span:focus {
|
||||
color: #fff;
|
||||
background-color: #008060;
|
||||
}
|
||||
|
||||
/* Light Theme */
|
||||
div.code-toolbar > .prism-light + .toolbar a,
|
||||
div.code-toolbar > .prism-light + .toolbar button,
|
||||
div.code-toolbar > .prism-light + .toolbar span {
|
||||
color: #E7EAF3;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
div.code-toolbar > .prism-light + .toolbar a:hover,
|
||||
div.code-toolbar > .prism-light + .toolbar a:focus,
|
||||
div.code-toolbar > .prism-light + .toolbar button:hover,
|
||||
div.code-toolbar > .prism-light + .toolbar button:focus,
|
||||
div.code-toolbar > .prism-light + .toolbar span:hover,
|
||||
div.code-toolbar > .prism-light + .toolbar span:focus {
|
||||
color: #21325b;
|
||||
background-color: #008060;
|
||||
}
|
||||
|
||||
/* AnchorJS Link */
|
||||
.hs-docs-heading {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.hs-docs-heading ~ p {
|
||||
margin-top: -.5rem;
|
||||
}
|
||||
|
||||
.hs-docs-heading::before {
|
||||
display: block;
|
||||
height: 6rem;
|
||||
margin-top: -6rem;
|
||||
content: "";
|
||||
}
|
||||
|
||||
[data-anchorjs-icon]::after {
|
||||
content: attr(data-anchorjs-icon);
|
||||
}
|
||||
|
||||
.anchorjs-link {
|
||||
padding-left: .5rem;
|
||||
font-size: 90%;
|
||||
color: rgba(255,255,255, .5) !important;
|
||||
transition: color .16s linear;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.anchorjs-link:hover {
|
||||
color: rgba(255,255,255, 1) !important;
|
||||
}
|
||||
|
||||
.hs-docs-heading:hover .anchorjs-link {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Copy to clipboard style */
|
||||
.hs-docs-copy-to-clipboard-text {
|
||||
font-size: 80%;
|
||||
color: #77838f;
|
||||
}
|
||||
|
||||
.hs-docs-copy-to-clipboard:hover .hs-docs-copy-to-clipboard-text {
|
||||
color: #fff;
|
||||
background-color: #008060;
|
||||
}
|
||||
|
||||
/* Content Divider */
|
||||
.content-divider {
|
||||
padding-bottom: 1.5rem;
|
||||
border-bottom: 1px solid rgba(0,0,0, .1);
|
||||
}
|
||||
|
||||
.content-divider:last-child {
|
||||
padding-bottom: 0;
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Scrollspy */
|
||||
.scrollspy-example {
|
||||
position: relative;
|
||||
height: 200px;
|
||||
margin-top: .5rem;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
|
||||
/* Card */
|
||||
.card-header {
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
|
||||
/* Page Header */
|
||||
.docs-page-header {
|
||||
border-bottom: 0.0625rem solid rgba(255,255,255,.1);
|
||||
padding-bottom: 1.75rem;
|
||||
margin-bottom: 2.25rem;
|
||||
}
|
||||
|
||||
.docs-page-header-title {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.docs-page-header-text {
|
||||
color: #fff;
|
||||
font-size: 1.125rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.docs-page-header-text:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Navbar */
|
||||
.docs-navbar {
|
||||
z-index: auto;
|
||||
}
|
||||
|
||||
/* Navbar Sidebar */
|
||||
@media (min-width: 991px) {
|
||||
.docs-navbar-sidebar-container {
|
||||
max-width: 17rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-light .navbar-nav .nav-link {
|
||||
color: #1e2022;
|
||||
}
|
||||
|
||||
.navbar .container-fluid {
|
||||
padding-right: var(--bs-gutter-x, 0.75rem);
|
||||
padding-left: var(--bs-gutter-x, 0.75rem);
|
||||
}
|
||||
|
||||
/* Text Highlight */
|
||||
[class*=text-highlight-] {
|
||||
background: left 1em/1em 0.2em;
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
|
||||
.text-highlight-warning {
|
||||
background-image: linear-gradient(to bottom, rgba(241, 185, 128, 0.5), rgba(241, 185, 128, 0.5));
|
||||
}
|
||||
|
||||
.table > :not(:first-child) {
|
||||
border-top-color: rgba(255, 255, 255, 0.2) !important;
|
||||
}
|
||||
|
||||
/* Alert */
|
||||
.alert p {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.alert hr {
|
||||
color: rgba(231, 234, 243, 0.7);
|
||||
}
|
||||
@@ -0,0 +1,398 @@
|
||||
/*------------------------------------
|
||||
Documentation
|
||||
------------------------------------*/
|
||||
|
||||
:focus, a:focus, button:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
p, ul li, ol li {
|
||||
color: #1e2022;
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 100%/*rtl:14px*/;
|
||||
}
|
||||
|
||||
h1, .h1 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h1, .h1 {
|
||||
font-size: calc(1.26609rem + 0.19312vw) ;
|
||||
}
|
||||
}
|
||||
|
||||
h2, .h2 {
|
||||
font-size: 1.3125rem;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h2, .h2 {
|
||||
font-size: calc(1.25625rem + 0.075vw) ;
|
||||
}
|
||||
}
|
||||
|
||||
h3, .h3 {
|
||||
font-size: 1.14844rem;
|
||||
}
|
||||
|
||||
h4, .h4 {
|
||||
font-size: 0.98438rem;
|
||||
}
|
||||
|
||||
h5, .h5 {
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
h6, .h6 {
|
||||
font-size: 0.76563rem;
|
||||
}
|
||||
|
||||
summary {
|
||||
margin-bottom: .35rem;
|
||||
}
|
||||
|
||||
.tab-content :not(pre) > code[class*="language-"],
|
||||
.tab-content pre[class*="language-"] {
|
||||
border-bottom-right-radius: .3125rem;
|
||||
border-bottom-left-radius: .3125rem;
|
||||
}
|
||||
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
color: #fff;
|
||||
margin: 0;
|
||||
white-space: pre-wrap;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
|
||||
-webkit-hyphens: none;
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
||||
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
||||
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
@media print {
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Code blocks */
|
||||
pre[class*="language-"] {
|
||||
padding: 1.5rem;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
:not(pre) > code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
background: #142140;
|
||||
}
|
||||
|
||||
/* Light Theme */
|
||||
.prism-light:not(pre) > .prism-light code[class*="language-"],
|
||||
pre.prism-light[class*="language-"] {
|
||||
background: #f9fafc;
|
||||
}
|
||||
|
||||
.prism-light code[class*="language-"],
|
||||
pre.prism-light[class*="language-"] {
|
||||
color: #142140;
|
||||
}
|
||||
|
||||
/* Inline code */
|
||||
:not(pre) > code[class*="language-"] {
|
||||
padding: .1em;
|
||||
border-radius: .3em;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.token.comment,
|
||||
.token.prolog,
|
||||
.token.doctype,
|
||||
.token.cdata {
|
||||
color: slategray;
|
||||
}
|
||||
|
||||
.token.punctuation {
|
||||
color: #2f6f9f;
|
||||
}
|
||||
|
||||
.token.namespace {
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
.token.property,
|
||||
.token.tag,
|
||||
.token.boolean,
|
||||
.token.number,
|
||||
.token.constant,
|
||||
.token.symbol,
|
||||
.token.deleted {
|
||||
color: #2f6f9f;
|
||||
}
|
||||
|
||||
.token.selector,
|
||||
.token.attr-name,
|
||||
.token.string,
|
||||
.token.char,
|
||||
.token.builtin,
|
||||
.token.inserted {
|
||||
color: #26a5b5;
|
||||
}
|
||||
|
||||
.token.operator,
|
||||
.token.entity,
|
||||
.token.url,
|
||||
.language-css .token.string,
|
||||
.style .token.string {
|
||||
color: #d09a5c;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.token.atrule,
|
||||
.token.attr-value,
|
||||
.token.keyword {
|
||||
color: #d44950;
|
||||
}
|
||||
|
||||
.token.function,
|
||||
.token.class-name {
|
||||
color: #DD4A68;
|
||||
}
|
||||
|
||||
.token.regex,
|
||||
.token.important,
|
||||
.token.variable {
|
||||
color: #e90;
|
||||
}
|
||||
|
||||
.token.important,
|
||||
.token.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.token.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.token.entity {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
div.code-toolbar {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar {
|
||||
position: absolute;
|
||||
top: 1.0625rem;
|
||||
right: .75rem;
|
||||
transition: opacity 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
div.code-toolbar:hover > .toolbar {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar .toolbar-item {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar button {
|
||||
background: none;
|
||||
border: 0;
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
line-height: normal;
|
||||
overflow: visible;
|
||||
padding: 0;
|
||||
-webkit-user-select: none; /* for button */
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a,
|
||||
div.code-toolbar > .toolbar button,
|
||||
div.code-toolbar > .toolbar span {
|
||||
color: #fff;
|
||||
padding: .5rem 1rem;
|
||||
background-color: rgba(255, 255, 255, .1);
|
||||
border-radius: .3125em;
|
||||
transition: all .2s ease-in-out;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a:hover,
|
||||
div.code-toolbar > .toolbar a:focus,
|
||||
div.code-toolbar > .toolbar button:hover,
|
||||
div.code-toolbar > .toolbar button:focus,
|
||||
div.code-toolbar > .toolbar span:hover,
|
||||
div.code-toolbar > .toolbar span:focus {
|
||||
color: #fff;
|
||||
background-color: #377dff;
|
||||
}
|
||||
|
||||
/* Light Theme */
|
||||
div.code-toolbar > .prism-light + .toolbar a,
|
||||
div.code-toolbar > .prism-light + .toolbar button,
|
||||
div.code-toolbar > .prism-light + .toolbar span {
|
||||
color: #E7EAF3;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
div.code-toolbar > .prism-light + .toolbar a:hover,
|
||||
div.code-toolbar > .prism-light + .toolbar a:focus,
|
||||
div.code-toolbar > .prism-light + .toolbar button:hover,
|
||||
div.code-toolbar > .prism-light + .toolbar button:focus,
|
||||
div.code-toolbar > .prism-light + .toolbar span:hover,
|
||||
div.code-toolbar > .prism-light + .toolbar span:focus {
|
||||
color: #21325b;
|
||||
background-color: #377dff;
|
||||
}
|
||||
|
||||
/* AnchorJS Link */
|
||||
.hs-docs-heading {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.hs-docs-heading ~ p {
|
||||
margin-top: -.5rem;
|
||||
}
|
||||
|
||||
.hs-docs-heading::before {
|
||||
display: block;
|
||||
height: 6rem;
|
||||
margin-top: -6rem;
|
||||
content: "";
|
||||
}
|
||||
|
||||
[data-anchorjs-icon]::after {
|
||||
content: attr(data-anchorjs-icon);
|
||||
}
|
||||
|
||||
.anchorjs-link {
|
||||
padding-left: .5rem;
|
||||
font-size: 90%;
|
||||
color: rgba(55,125,255, .5) !important;
|
||||
transition: color .16s linear;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.anchorjs-link:hover {
|
||||
color: rgba(55,125,255, 1) !important;
|
||||
}
|
||||
|
||||
.hs-docs-heading:hover .anchorjs-link {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Copy to clipboard style */
|
||||
.hs-docs-copy-to-clipboard-text {
|
||||
font-size: 80%;
|
||||
color: #77838f;
|
||||
}
|
||||
|
||||
.hs-docs-copy-to-clipboard:hover .hs-docs-copy-to-clipboard-text {
|
||||
color: #fff;
|
||||
background-color: #377dff;
|
||||
}
|
||||
|
||||
/* Content Divider */
|
||||
.content-divider {
|
||||
padding-bottom: 1.5rem;
|
||||
border-bottom: 1px solid rgba(0,0,0, .1);
|
||||
}
|
||||
|
||||
.content-divider:last-child {
|
||||
padding-bottom: 0;
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Scrollspy */
|
||||
.scrollspy-example {
|
||||
position: relative;
|
||||
height: 200px;
|
||||
margin-top: .5rem;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
|
||||
/* Card */
|
||||
.card-header {
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
|
||||
/* Page Header */
|
||||
.docs-page-header {
|
||||
border-bottom: 0.0625rem solid #e7eaf3;
|
||||
padding-bottom: 1.75rem;
|
||||
margin-bottom: 2.25rem;
|
||||
}
|
||||
|
||||
.docs-page-header-title {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.docs-page-header-text {
|
||||
color: #21325b;
|
||||
font-size: 1.125rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.docs-page-header-text:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Navbar */
|
||||
.docs-navbar {
|
||||
z-index: auto;
|
||||
}
|
||||
|
||||
/* Navbar Sidebar */
|
||||
@media (min-width: 991px) {
|
||||
.docs-navbar-sidebar-container {
|
||||
max-width: 17rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-light .navbar-nav .nav-link {
|
||||
color: #1e2022;
|
||||
}
|
||||
|
||||
.navbar .container-fluid {
|
||||
padding-right: var(--bs-gutter-x, 0.75rem);
|
||||
padding-left: var(--bs-gutter-x, 0.75rem);
|
||||
}
|
||||
|
||||
/* Text Highlight */
|
||||
[class*=text-highlight-] {
|
||||
background: left 1em/1em 0.2em;
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
|
||||
.text-highlight-warning {
|
||||
background-image: linear-gradient(to bottom, rgba(241, 185, 128, 0.5), rgba(241, 185, 128, 0.5));
|
||||
}
|
||||
@@ -0,0 +1,361 @@
|
||||
/*------------------------------------
|
||||
Snippets
|
||||
------------------------------------*/
|
||||
|
||||
code {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
summary {
|
||||
margin-bottom: .35rem;
|
||||
}
|
||||
|
||||
.tab-content :not(pre) > code[class*="language-"],
|
||||
.tab-content pre[class*="language-"] {
|
||||
border-bottom-right-radius: .3125rem;
|
||||
border-bottom-left-radius: .3125rem;
|
||||
}
|
||||
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
color: #21325b;
|
||||
font-size: .9375em;
|
||||
margin: 0;
|
||||
white-space: pre-wrap;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
|
||||
-webkit-hyphens: none;
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
||||
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
||||
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
@media print {
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Code blocks */
|
||||
pre[class*="language-"] {
|
||||
padding: 1.5rem;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
:not(pre) > code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
background: #E7EAF3;
|
||||
}
|
||||
|
||||
/* Light Theme */
|
||||
.prism-light:not(pre) > .prism-light code[class*="language-"],
|
||||
pre.prism-light[class*="language-"] {
|
||||
background: #f9fafc;
|
||||
}
|
||||
|
||||
.prism-light code[class*="language-"],
|
||||
pre.prism-light[class*="language-"] {
|
||||
color: #E7EAF3;
|
||||
}
|
||||
|
||||
/* Inline code */
|
||||
:not(pre) > code[class*="language-"] {
|
||||
padding: .1em;
|
||||
border-radius: .3em;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.token.comment,
|
||||
.token.prolog,
|
||||
.token.doctype,
|
||||
.token.cdata {
|
||||
color: slategray;
|
||||
}
|
||||
|
||||
.token.punctuation {
|
||||
color: #2f6f9f;
|
||||
}
|
||||
|
||||
.token.namespace {
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
.token.property,
|
||||
.token.tag,
|
||||
.token.boolean,
|
||||
.token.number,
|
||||
.token.constant,
|
||||
.token.symbol,
|
||||
.token.deleted {
|
||||
color: #2f6f9f;
|
||||
}
|
||||
|
||||
.token.selector,
|
||||
.token.attr-name,
|
||||
.token.string,
|
||||
.token.char,
|
||||
.token.builtin,
|
||||
.token.inserted {
|
||||
color: #26a5b5;
|
||||
}
|
||||
|
||||
.token.operator,
|
||||
.token.entity,
|
||||
.token.url,
|
||||
.language-css .token.string,
|
||||
.style .token.string {
|
||||
color: #d09a5c;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.token.atrule,
|
||||
.token.attr-value,
|
||||
.token.keyword {
|
||||
color: #d44950;
|
||||
}
|
||||
|
||||
.token.function,
|
||||
.token.class-name {
|
||||
color: #DD4A68;
|
||||
}
|
||||
|
||||
.token.regex,
|
||||
.token.important,
|
||||
.token.variable {
|
||||
color: #e90;
|
||||
}
|
||||
|
||||
.token.important,
|
||||
.token.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.token.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.token.entity {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
div.code-toolbar {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar {
|
||||
position: absolute;
|
||||
top: 1.0625rem;
|
||||
right: .75rem;
|
||||
transition: opacity 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
div.code-toolbar:hover > .toolbar {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar .toolbar-item {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar button {
|
||||
background: none;
|
||||
border: 0;
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
line-height: normal;
|
||||
overflow: visible;
|
||||
padding: 0;
|
||||
-webkit-user-select: none; /* for button */
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a,
|
||||
div.code-toolbar > .toolbar button,
|
||||
div.code-toolbar > .toolbar span {
|
||||
color: ##fff;
|
||||
padding: .5rem 1rem;
|
||||
background-color: rgba(255, 255, 255, .1);
|
||||
border-radius: .3125em;
|
||||
transition: all .2s ease-in-out;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a:hover,
|
||||
div.code-toolbar > .toolbar a:focus,
|
||||
div.code-toolbar > .toolbar button:hover,
|
||||
div.code-toolbar > .toolbar button:focus,
|
||||
div.code-toolbar > .toolbar span:hover,
|
||||
div.code-toolbar > .toolbar span:focus {
|
||||
color: #fff;
|
||||
background-color: #008060;
|
||||
}
|
||||
|
||||
/* Light Theme */
|
||||
div.code-toolbar > .prism-light + .toolbar a,
|
||||
div.code-toolbar > .prism-light + .toolbar button,
|
||||
div.code-toolbar > .prism-light + .toolbar span {
|
||||
color: #E7EAF3;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
div.code-toolbar > .prism-light + .toolbar a:hover,
|
||||
div.code-toolbar > .prism-light + .toolbar a:focus,
|
||||
div.code-toolbar > .prism-light + .toolbar button:hover,
|
||||
div.code-toolbar > .prism-light + .toolbar button:focus,
|
||||
div.code-toolbar > .prism-light + .toolbar span:hover,
|
||||
div.code-toolbar > .prism-light + .toolbar span:focus {
|
||||
color: #21325b;
|
||||
background-color: #008060;
|
||||
}
|
||||
|
||||
/* AnchorJS Link */
|
||||
.hs-docs-heading {
|
||||
font-size: 1.3125rem;
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h2, .h2 {
|
||||
font-size: calc(1.25625rem + 0.075vw) ;
|
||||
}
|
||||
}
|
||||
|
||||
.hs-docs-heading ~ p {
|
||||
margin-top: -.5rem;
|
||||
}
|
||||
|
||||
.hs-docs-heading::before {
|
||||
display: block;
|
||||
height: 6rem;
|
||||
margin-top: -6rem;
|
||||
content: "";
|
||||
}
|
||||
|
||||
[data-anchorjs-icon]::after {
|
||||
content: attr(data-anchorjs-icon);
|
||||
}
|
||||
|
||||
.anchorjs-link {
|
||||
padding-left: .5rem;
|
||||
font-size: 90%;
|
||||
color: rgba(55,125,255, .5) !important;
|
||||
transition: color .16s linear;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.anchorjs-link:hover {
|
||||
color: rgba(55,125,255, 1) !important;
|
||||
}
|
||||
|
||||
.hs-docs-heading:hover .anchorjs-link {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Copy to clipboard style */
|
||||
.hs-docs-copy-to-clipboard-text {
|
||||
font-size: 80%;
|
||||
color: #77838f;
|
||||
}
|
||||
|
||||
.hs-docs-copy-to-clipboard:hover .hs-docs-copy-to-clipboard-text {
|
||||
color: #fff;
|
||||
background-color: #008060;
|
||||
}
|
||||
|
||||
|
||||
/* Scrollspy */
|
||||
.scrollspy-example {
|
||||
position: relative;
|
||||
height: 200px;
|
||||
margin-top: .5rem;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
|
||||
/* Card */
|
||||
.card-header {
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
.card .card .card-header {
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Page Header */
|
||||
.docs-page-header {
|
||||
border-bottom: 0.0625rem solid #e7eaf3;
|
||||
padding-bottom: 1.75rem;
|
||||
margin-bottom: 2.25rem;
|
||||
}
|
||||
|
||||
.docs-page-header-title {
|
||||
font-size: 1.75rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h1, .h1 {
|
||||
font-size: calc(1.26609rem + 0.19312vw) ;
|
||||
}
|
||||
}
|
||||
|
||||
.docs-page-header-text {
|
||||
font-size: 1.125rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.docs-page-header-text:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Navbar */
|
||||
.docs-navbar {
|
||||
z-index: auto;
|
||||
}
|
||||
|
||||
/* Navbar Sidebar */
|
||||
@media (min-width: 991px) {
|
||||
.docs-navbar-sidebar-container {
|
||||
max-width: 17rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 767.98px) {
|
||||
.docs-navbar-sidebar-aside-body {
|
||||
padding-top: 8.5rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Snippets */
|
||||
@media (min-width: 992px) {
|
||||
.hs-snippets-main-img-height {
|
||||
height: calc(100vh - 8rem);
|
||||
}
|
||||
}
|
||||
|
||||
/* Card */
|
||||
.card-nav-tab-content-height .tab-pane {
|
||||
max-height: 40rem;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 301 KiB |
|
After Width: | Height: | Size: 530 KiB |
|
After Width: | Height: | Size: 478 KiB |
|
After Width: | Height: | Size: 218 KiB |
|
After Width: | Height: | Size: 318 KiB |
|
After Width: | Height: | Size: 224 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 117 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 206 KiB |
|
After Width: | Height: | Size: 229 KiB |
|
After Width: | Height: | Size: 180 KiB |
|
After Width: | Height: | Size: 191 KiB |
|
After Width: | Height: | Size: 214 KiB |
|
After Width: | Height: | Size: 238 KiB |
|
After Width: | Height: | Size: 210 KiB |
|
After Width: | Height: | Size: 241 KiB |
|
After Width: | Height: | Size: 229 KiB |
|
After Width: | Height: | Size: 250 KiB |
|
After Width: | Height: | Size: 180 KiB |
|
After Width: | Height: | Size: 215 KiB |
|
After Width: | Height: | Size: 180 KiB |
|
After Width: | Height: | Size: 205 KiB |
|
After Width: | Height: | Size: 218 KiB |
|
After Width: | Height: | Size: 226 KiB |
|
After Width: | Height: | Size: 211 KiB |
|
After Width: | Height: | Size: 255 KiB |
|
After Width: | Height: | Size: 206 KiB |
|
After Width: | Height: | Size: 227 KiB |
|
After Width: | Height: | Size: 239 KiB |
|
After Width: | Height: | Size: 156 KiB |
|
After Width: | Height: | Size: 171 KiB |
|
After Width: | Height: | Size: 140 KiB |
|
After Width: | Height: | Size: 156 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 7.1 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 7.1 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 63 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 20 KiB |
@@ -0,0 +1,27 @@
|
||||
<svg width="300" height="150" viewBox="0 0 300 150" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.18" d="M300 0H0V150H300V0Z" fill="#5A77AD"/>
|
||||
<rect x="25" y="36" width="71" height="82" rx="4" fill="white"/>
|
||||
<rect x="25.5" y="36.5" width="70" height="81" rx="3.5" stroke="#7D869C" stroke-opacity="0.5"/>
|
||||
<rect x="33" y="77" width="55" height="6.27078" rx="2" fill="#7D869C" fill-opacity="0.5"/>
|
||||
<rect x="45.019" y="86.4062" width="30.962" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<rect x="39.728" y="92.677" width="41.5439" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<rect x="42.0143" y="98.9477" width="36.9715" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<rect x="51.8123" y="105.219" width="17.3753" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<path d="M26 40C26 38.3431 27.3431 37 29 37H92C93.6569 37 95 38.3431 95 40V68H26V40Z" fill="#0077CC"/>
|
||||
<rect x="114" y="36" width="71" height="82" rx="4" fill="white"/>
|
||||
<rect x="114.5" y="36.5" width="70" height="81" rx="3.5" stroke="#7D869C" stroke-opacity="0.5"/>
|
||||
<rect x="122" y="77" width="55" height="6.27078" rx="2" fill="#7D869C" fill-opacity="0.5"/>
|
||||
<rect x="134.019" y="86.4062" width="30.962" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<rect x="128.728" y="92.677" width="41.5439" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<rect x="131.014" y="98.9477" width="36.9715" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<rect x="140.812" y="105.219" width="17.3753" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<path d="M115 40C115 38.3431 116.343 37 118 37H181C182.657 37 184 38.3431 184 40V68H115V40Z" fill="#00BFB3"/>
|
||||
<rect x="203" y="36" width="71" height="82" rx="4" fill="white"/>
|
||||
<rect x="203.5" y="36.5" width="70" height="81" rx="3.5" stroke="#7D869C" stroke-opacity="0.5"/>
|
||||
<rect x="211" y="77" width="55" height="6.27078" rx="2" fill="#7D869C" fill-opacity="0.5"/>
|
||||
<rect x="223.019" y="86.4062" width="30.962" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<rect x="217.728" y="92.677" width="41.5439" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<rect x="220.014" y="98.9477" width="36.9715" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<rect x="229.812" y="105.219" width="17.3753" height="3.13539" rx="1.5677" fill="#D3DAE6"/>
|
||||
<path d="M204 40C204 38.3431 205.343 37 207 37H270C271.657 37 273 38.3431 273 40V68H204V40Z" fill="#F04E98"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 573 KiB |
|
After Width: | Height: | Size: 559 KiB |
|
After Width: | Height: | Size: 509 KiB |
|
After Width: | Height: | Size: 507 KiB |
|
After Width: | Height: | Size: 146 KiB |
|
After Width: | Height: | Size: 128 KiB |
|
After Width: | Height: | Size: 323 KiB |
|
After Width: | Height: | Size: 356 KiB |