Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzzossig <zzossig@gmail.com>2020-10-17 04:43:58 +0300
committerzzossig <zzossig@gmail.com>2020-10-17 04:43:58 +0300
commit4e0ff9dba43882c8e24b6afe75d4811e5df09e90 (patch)
tree84b598b85859c3bc74c5755562bead07a43000c0
parent885938ae5617a255fb491286d36d2bc4d27f8cea (diff)
search fixes, add more shortcodes, css edit, bug fixes, new param, blog ui update,
search fixes - don't include fuse.js file when search disabled - search indexing - search url shortcode - codetab - tab css edit - tab border bug fixes - toggle wide mode new param - enableWideBlogSwitch - wideViewAsDefault blog - add tag cloud - ui changed - wide button added - image header support
-rw-r--r--README.md2
-rw-r--r--assets/sass/components/_breadcrumb.scss2
-rw-r--r--assets/sass/components/_button.scss2
-rw-r--r--assets/sass/components/_codetab.scss59
-rw-r--r--assets/sass/components/_summary.scss4
-rw-r--r--assets/sass/components/_switch.scss77
-rw-r--r--assets/sass/components/_tab.scss57
-rw-r--r--assets/sass/components/_tag.scss34
-rw-r--r--assets/sass/layout/_grid.scss18
-rw-r--r--assets/sass/main.scss2
-rw-r--r--assets/sass/pages/_list.scss12
-rw-r--r--assets/sass/pages/_single.scss10
-rw-r--r--exampleSite/resources/_gen/assets/scss/sass/main.scss_b4f67ac5085b89b62b54c1923e5a9145.content2
-rw-r--r--i18n/en.toml2
-rw-r--r--i18n/ko.toml2
-rw-r--r--layouts/_default/list.searchindex.json8
-rw-r--r--layouts/_default/single.searchindex.json8
-rw-r--r--layouts/_default/taxonomy.html56
-rw-r--r--layouts/_default/terms.searchindex.json8
-rw-r--r--layouts/blog/section.html53
-rw-r--r--layouts/blog/single.html44
-rw-r--r--layouts/partials/head/scripts.html112
-rw-r--r--layouts/partials/header/blog-header-img.html8
-rw-r--r--layouts/partials/header/blog-header-text.html18
-rw-r--r--layouts/partials/header/taxo-header.html5
-rw-r--r--layouts/partials/main/component/breadcrumb.html3
-rw-r--r--layouts/partials/main/component/tag-cloud.html18
-rw-r--r--layouts/partials/main/component/toggle-menu.html25
-rw-r--r--layouts/partials/main/component/toggle-sidebar.html29
-rw-r--r--layouts/partials/main/header.html1
-rw-r--r--layouts/partials/main/landing/section-card.html4
-rw-r--r--layouts/partials/main/list.html8
-rw-r--r--layouts/partials/main/single.html65
-rw-r--r--layouts/shortcodes/boxmd.html1
-rw-r--r--layouts/shortcodes/code.html4
-rw-r--r--layouts/shortcodes/codes.html47
-rw-r--r--layouts/shortcodes/tab.html4
-rw-r--r--layouts/shortcodes/tabs.html47
38 files changed, 636 insertions, 225 deletions
diff --git a/README.md b/README.md
index cd6f8ba..34d65d0 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
## Zdoc theme for Hugo
-Thank you for click me!. Zdoc theme is a simple documentation theme powered by Hugo
+I'll document all the updates soon.
## Table of contents
diff --git a/assets/sass/components/_breadcrumb.scss b/assets/sass/components/_breadcrumb.scss
index 2905473..af01663 100644
--- a/assets/sass/components/_breadcrumb.scss
+++ b/assets/sass/components/_breadcrumb.scss
@@ -1,4 +1,6 @@
.breadcrumb {
+ position: relative;
+
&[data-is-blog="true"] {
margin: 1.5rem 1rem 0 1rem;
padding-bottom: 1.5rem;
diff --git a/assets/sass/components/_button.scss b/assets/sass/components/_button.scss
index d189e02..f7bd581 100644
--- a/assets/sass/components/_button.scss
+++ b/assets/sass/components/_button.scss
@@ -41,7 +41,7 @@
border: none;
outline: none;
padding: 0.75rem;
- margin: 0 0.95rem;
+ margin: 0 0.5rem;
text-decoration: none;
cursor: pointer;
font-family: $title-font;
diff --git a/assets/sass/components/_codetab.scss b/assets/sass/components/_codetab.scss
new file mode 100644
index 0000000..43c1ade
--- /dev/null
+++ b/assets/sass/components/_codetab.scss
@@ -0,0 +1,59 @@
+.codetab {
+ position: relative;
+
+ &__links {
+ position: absolute;
+ top: 0;
+ left: 0;
+ height: 27px;
+ z-index: z('clipboard');
+ border-top-left-radius: 0.25rem;
+
+ @include flexbox();
+ @include align-items(center);
+ @include justify-content(flex-start);
+ @include themify($codeblock) {
+ background-color: themed('content-pre-header-background-color');
+ }
+ }
+
+ &__link {
+ height: 27px;
+ border: none;
+ outline: none;
+ cursor: pointer;
+ font-size: 13.8px;
+ font-family: $title-font;
+ text-transform: capitalize;
+ padding: 0.25rem 0.5rem;
+
+ &:first-child {
+ border-top-left-radius: 0.25rem;
+ }
+
+ @include transition(all, 0.2s, ease-in);
+ @include themify($themes) {
+ color: themed('navbar-title-color');
+ border-top: 1px solid transparent;
+ &.active {
+ border-top: 1px solid themed('content-pre-header-background-color');
+ }
+ }
+
+ @include themify($codeblock) {
+ background-color: themed('content-pre-header-background-color');
+
+ &.active {
+ background-color: themed('content-pre-background-color');
+ }
+
+ @include on-event {
+ background-color: themed('content-pre-background-color');
+ }
+ }
+ }
+
+ &__content {
+ display: none;
+ }
+} \ No newline at end of file
diff --git a/assets/sass/components/_summary.scss b/assets/sass/components/_summary.scss
index 83100c4..1eb92fa 100644
--- a/assets/sass/components/_summary.scss
+++ b/assets/sass/components/_summary.scss
@@ -1,12 +1,11 @@
.summary-card {
padding: 1rem;
padding-bottom: 0;
- margin: 1.5rem 0;
+ margin: 2.5rem 0 2rem 0;
position: relative;
@include themify($themes) {
background-color: themed('body-background-color');
- border-bottom: 1px solid themed('hr-color');
}
.title {
@@ -43,6 +42,7 @@
@include flex-wrap(wrap);
@include themify($themes) {
background-color: themed('body-background-color');
+ border-bottom: 1px solid themed('hr-color');
}
}
diff --git a/assets/sass/components/_switch.scss b/assets/sass/components/_switch.scss
index c8e196a..8b1c806 100644
--- a/assets/sass/components/_switch.scss
+++ b/assets/sass/components/_switch.scss
@@ -1,12 +1,41 @@
/* The switch - the box around the slider */
.switch {
- position: absolute;
- right: -2rem;
- top: 1.75rem;
- display: inline-block;
- width: 30px;
- height: 16px;
- z-index: z('gtt');
+ cursor: pointer;
+
+ @include flexbox();
+ @include align-items(center);
+ @include justify-content(center);
+
+ &__rel {
+ position: relative;
+ height: auto;
+ padding: 0 6px;
+
+ @include themify($themes) {
+ color: themed('landing-button-default');
+ @include on-event {
+ color: themed('body-color');
+ background-color: themed('dropdown-hover-background-color');
+ }
+ }
+ }
+
+ &__abs {
+ position: absolute;
+ left: -75px;
+ top: -16px;
+ z-index: z('menu');
+ width: 50px;
+ height: 50px;
+ margin: auto 0;
+
+ @include themify($themes) {
+ color: themed('landing-button-default');
+ @include on-event {
+ color: themed('body-color');
+ }
+ }
+ }
}
/* Hide default HTML checkbox */
@@ -18,44 +47,18 @@
/* The slider */
.slider {
- position: absolute;
- cursor: pointer;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
background-color: transparent;
-webkit-transition: .2s;
transition: .2s;
- &:before {
- position: absolute;
- content: "";
- height: 12px;
- width: 13px;
- left: 2px;
- bottom: 2px;
- -webkit-transition: .2s;
- transition: .2s;
- }
-
&__icon {
- padding: 0.5rem;
+ svg {
+ @include flexbox();
+ @include align-items(center);
+ }
}
}
-// input:checked + .slider {
-// @include themify($themes) {
-// background-color: transparent;
-// }
-// }
-
-// input:focus + .slider {
-// @include themify($themes) {
-// background-color: transparent;
-// }
-// }
-
input:checked + .slider:before {
-webkit-transform: translateX(13px);
-ms-transform: translateX(13px);
diff --git a/assets/sass/components/_tab.scss b/assets/sass/components/_tab.scss
new file mode 100644
index 0000000..6190358
--- /dev/null
+++ b/assets/sass/components/_tab.scss
@@ -0,0 +1,57 @@
+.tab {
+ position: relative;
+ padding: 0.5rem 0;
+ margin: 2rem 0;
+
+ &__links {
+ height: 30px;
+ border-top-left-radius: 0.25rem;
+
+ @include flexbox();
+ @include align-items(center);
+ @include justify-content(flex-start);
+ @include flex-wrap(wrap);
+ }
+
+ &__link {
+ outline: none;
+ border: none;
+ cursor: pointer;
+ font-size: 13.8px;
+ font-family: $title-font;
+ text-transform: capitalize;
+ padding: 0.5rem 0.75rem;
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem;
+
+ @include themify($themes) {
+ color: themed('navbar-title-color');
+ background-color: themed('body-background-color');
+ border: none;
+ border-bottom: 1px solid themed('hr-color');
+
+ &.active {
+ background-color: themed('body-background-color');
+ border: 1px solid themed('hr-color');
+ border-bottom: none;
+ }
+
+ @include on-event {
+ color: themed('navbar-title-hover-color');
+ background-color: themed('content-pre-header-background-color');
+ }
+ }
+ }
+
+ &__content {
+ display: none;
+ padding: 0 0.5rem;
+ border-radius: 0.25rem;
+ border-top-left-radius: 0;
+
+ @include themify($themes) {
+ border: 1px solid themed('hr-color');
+ background-color: themed('body-background-color');
+ }
+ }
+} \ No newline at end of file
diff --git a/assets/sass/components/_tag.scss b/assets/sass/components/_tag.scss
index f1c9590..e499a74 100644
--- a/assets/sass/components/_tag.scss
+++ b/assets/sass/components/_tag.scss
@@ -1,6 +1,7 @@
.tag {
display: inline-block;
- margin: 0.25rem 0.4rem;
+ padding: 0.2rem 0;
+ width: 100%;
text-decoration: none !important;
@include themify($themes) {
@@ -16,14 +17,37 @@
}
&__text {
- font-size: 0.95rem;
- font-weight: bold;
color: inherit;
}
&__num {
- font-size: 0.75rem;
- font-weight: bold;
color: inherit;
}
+
+ &-cloud {
+ position: relative;
+
+ &__label {
+ font-family: $title-font;
+ font-size: 1rem;
+ margin: 3.5rem 0 0 0;
+ margin-left: 1.25rem;
+ padding-left: 2.5rem;
+
+ @include themify($themes) {
+ color: themed('toc-label-color');
+ }
+ }
+
+ &__tags {
+ // position: -webkit-sticky;
+ // position: sticky;
+ top: $grid-nav-height;
+ padding: 1rem;
+ padding-left: 3rem;
+ height: calc(100vh - $grid-nav-height);
+ overflow-y: auto;
+ z-index: z('menu');
+ }
+ }
} \ No newline at end of file
diff --git a/assets/sass/layout/_grid.scss b/assets/sass/layout/_grid.scss
index 5b3154d..ab284f7 100644
--- a/assets/sass/layout/_grid.scss
+++ b/assets/sass/layout/_grid.scss
@@ -56,20 +56,18 @@
.sv { // single view
display: grid;
+ grid-template-columns: minmax(630px, 1fr) minmax(125px, 325px);
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
- &[data-view="full"] {
- grid-template-columns: 769px;
- }
-
- &[data-view="mobile"] {
- width: 100%;
- grid-template-columns: 1fr;
+ @media only screen and (max-width: 769px) {
+ grid-template-columns: minmax(200px, 1fr);
}
}
-.blog {
- grid-area: 1 / 1 / 2 / 2;
-} \ No newline at end of file
+.blog-post { grid-area: 1 / 1 / 2 / 2; } // left
+
+.blog-tags { grid-area: 1 / 2 / 2 / 3; } // right
+
+.blog-total { grid-area: 1 / 1 / 2 / 3; } // left right \ No newline at end of file
diff --git a/assets/sass/main.scss b/assets/sass/main.scss
index 85c935f..e79d637 100644
--- a/assets/sass/main.scss
+++ b/assets/sass/main.scss
@@ -49,6 +49,8 @@ $light-nav-icon-color: {{ .Site.Data.color.light_nav_icon_color }};
@import 'components/switch';
@import 'components/notice';
@import 'components/alert';
+@import 'components/tab';
+@import 'components/codetab';
@import 'layout/grid';
@import 'layout/footer';
diff --git a/assets/sass/pages/_list.scss b/assets/sass/pages/_list.scss
index d132f00..f676f8a 100644
--- a/assets/sass/pages/_list.scss
+++ b/assets/sass/pages/_list.scss
@@ -8,26 +8,18 @@
&[data-dir="ltr"] {
border-right: 1px solid themed('border-line-color');
+ border-left: 1px solid themed('border-line-color');
}
&[data-dir="rtl"] {
border-left: 1px solid themed('border-line-color');
+ border-right: 1px solid themed('border-line-color');
}
}
}
#list-menu {
position: relative;
-
- @include themify($themes) {
- &[data-dir="ltr"] {
- border-right: 1px solid themed('border-line-color');
- }
-
- &[data-dir="rtl"] {
- border-left: 1px solid themed('border-line-color');
- }
- }
}
#list-side {
diff --git a/assets/sass/pages/_single.scss b/assets/sass/pages/_single.scss
index 115f3ab..57e0262 100644
--- a/assets/sass/pages/_single.scss
+++ b/assets/sass/pages/_single.scss
@@ -1,13 +1,5 @@
#single-menu {
- @include themify($themes) {
- &[data-dir="ltr"] {
- border-right: 1px solid themed('border-line-color');
- }
-
- &[data-dir="rtl"] {
- border-left: 1px solid themed('border-line-color');
- }
- }
+ position: relative;
}
.single {
diff --git a/exampleSite/resources/_gen/assets/scss/sass/main.scss_b4f67ac5085b89b62b54c1923e5a9145.content b/exampleSite/resources/_gen/assets/scss/sass/main.scss_b4f67ac5085b89b62b54c1923e5a9145.content
index 0f2eac0..16e5774 100644
--- a/exampleSite/resources/_gen/assets/scss/sass/main.scss_b4f67ac5085b89b62b54c1923e5a9145.content
+++ b/exampleSite/resources/_gen/assets/scss/sass/main.scss_b4f67ac5085b89b62b54c1923e5a9145.content
@@ -1 +1 @@
-.theme__light .chroma{background-color:#f5f2f0}.theme__light .chroma .err{color:#a61717;background-color:#e3d2d2}.theme__light .chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.theme__light .chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:auto;overflow:auto;display:block}.theme__light .chroma .hl{display:block;width:100%;background-color:#ffc}.theme__light .chroma .lnt{padding:0 .4em;color:#728fcb}.theme__light .chroma .ln{padding:0 .4em;color:#728fcb}.theme__light .chroma .k{color:#728fcb;font-weight:700}.theme__light .chroma .kc{color:#728fcb;font-weight:700}.theme__light .chroma .kd{color:#728fcb;font-weight:700}.theme__light .chroma .kn{color:#728fcb;font-weight:700}.theme__light .chroma .kp{color:#728fcb;font-weight:700}.theme__light .chroma .kr{color:#728fcb;font-weight:700}.theme__light .chroma .kt{color:#458;font-weight:700}.theme__light .chroma .na{color:#896724}.theme__light .chroma .nb{color:#0086b3}.theme__light .chroma .bp{color:#b6ad9a}.theme__light .chroma .nc{color:#458;font-weight:700}.theme__light .chroma .no{color:#896724}.theme__light .chroma .nd{color:#3c5d5d;font-weight:700}.theme__light .chroma .ni{color:#728fcb}.theme__light .chroma .ne{color:#b29762;font-weight:700}.theme__light .chroma .nf{color:#b29762;font-weight:700}.theme__light .chroma .nl{color:#b29762;font-weight:700}.theme__light .chroma .nn{color:#555}.theme__light .chroma .nt{color:#063289}.theme__light .chroma .nv{color:#896724}.theme__light .chroma .vc{color:#896724}.theme__light .chroma .vg{color:#896724}.theme__light .chroma .vi{color:#896724}.theme__light .chroma .s{color:#728fcb}.theme__light .chroma .sa{color:#728fcb}.theme__light .chroma .sb{color:#728fcb}.theme__light .chroma .sc{color:#728fcb}.theme__light .chroma .dl{color:#728fcb}.theme__light .chroma .sd{color:#728fcb}.theme__light .chroma .s2{color:#728fcb}.theme__light .chroma .se{color:#728fcb}.theme__light .chroma .sh{color:#728fcb}.theme__light .chroma .si{color:#728fcb}.theme__light .chroma .sx{color:#728fcb}.theme__light .chroma .sr{color:#009926}.theme__light .chroma .s1{color:#728fcb}.theme__light .chroma .ss{color:#990073}.theme__light .chroma .m{color:#099}.theme__light .chroma .mb{color:#099}.theme__light .chroma .mf{color:#099}.theme__light .chroma .mh{color:#099}.theme__light .chroma .mi{color:#099}.theme__light .chroma .il{color:#099}.theme__light .chroma .mo{color:#099}.theme__light .chroma .o{color:#728fcb;font-weight:700}.theme__light .chroma .ow{color:#728fcb;font-weight:700}.theme__light .chroma .c{color:#b6ad9a;font-style:italic}.theme__light .chroma .ch{color:#b6ad9a;font-style:italic}.theme__light .chroma .cm{color:#b6ad9a;font-style:italic}.theme__light .chroma .c1{color:#b6ad9a;font-style:italic}.theme__light .chroma .cs{color:#b6ad9a;font-weight:700;font-style:italic}.theme__light .chroma .cp{color:#b6ad9a;font-weight:700;font-style:italic}.theme__light .chroma .cpf{color:#b6ad9a;font-weight:700;font-style:italic}.theme__light .chroma .gd{color:#728fcb;background-color:#fdd}.theme__light .chroma .ge{color:#728fcb;font-style:italic}.theme__light .chroma .gr{color:#a00}.theme__light .chroma .gh{color:#b6ad9a}.theme__light .chroma .gi{color:#728fcb;background-color:#dfd}.theme__light .chroma .go{color:#888}.theme__light .chroma .gp{color:#555}.theme__light .chroma .gs{font-weight:700}.theme__light .chroma .gu{color:#aaa}.theme__light .chroma .gt{color:#a00}.theme__light .chroma .gl{text-decoration:underline}.theme__light .chroma .w{color:#bbb}.theme__light .chroma .p{color:#b6ad9a}.theme__dark .chroma{color:#f8f8f2;background-color:#282a36}.theme__dark .chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.theme__dark .chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:auto;overflow:auto;display:block}.theme__dark .chroma .hl{display:block;width:100%;background-color:#000}.theme__dark .chroma .lnt{padding:0 .4em;color:#7f7f7f}.theme__dark .chroma .ln{padding:0 .4em;color:#7f7f7f}.theme__dark .chroma .k{color:#ff79c6}.theme__dark .chroma .kc{color:#ff79c6}.theme__dark .chroma .kd{color:#8be9fd;font-style:italic}.theme__dark .chroma .kn{color:#ff79c6}.theme__dark .chroma .kp{color:#ff79c6}.theme__dark .chroma .kr{color:#ff79c6}.theme__dark .chroma .kt{color:#8be9fd}.theme__dark .chroma .na{color:#50fa7b}.theme__dark .chroma .nb{color:#8be9fd;font-style:italic}.theme__dark .chroma .nc{color:#50fa7b}.theme__dark .chroma .nf{color:#50fa7b}.theme__dark .chroma .nl{color:#8be9fd;font-style:italic}.theme__dark .chroma .nt{color:#ff79c6}.theme__dark .chroma .nv{color:#8be9fd;font-style:italic}.theme__dark .chroma .vc{color:#8be9fd;font-style:italic}.theme__dark .chroma .vg{color:#8be9fd;font-style:italic}.theme__dark .chroma .vi{color:#8be9fd;font-style:italic}.theme__dark .chroma .s{color:#f1fa8c}.theme__dark .chroma .sa{color:#f1fa8c}.theme__dark .chroma .sb{color:#f1fa8c}.theme__dark .chroma .sc{color:#f1fa8c}.theme__dark .chroma .dl{color:#f1fa8c}.theme__dark .chroma .sd{color:#f1fa8c}.theme__dark .chroma .s2{color:#f1fa8c}.theme__dark .chroma .se{color:#f1fa8c}.theme__dark .chroma .sh{color:#f1fa8c}.theme__dark .chroma .si{color:#f1fa8c}.theme__dark .chroma .sx{color:#f1fa8c}.theme__dark .chroma .sr{color:#f1fa8c}.theme__dark .chroma .s1{color:#f1fa8c}.theme__dark .chroma .ss{color:#f1fa8c}.theme__dark .chroma .m{color:#bd93f9}.theme__dark .chroma .mb{color:#bd93f9}.theme__dark .chroma .mf{color:#bd93f9}.theme__dark .chroma .mh{color:#bd93f9}.theme__dark .chroma .mi{color:#bd93f9}.theme__dark .chroma .il{color:#bd93f9}.theme__dark .chroma .mo{color:#bd93f9}.theme__dark .chroma .o{color:#ff79c6}.theme__dark .chroma .ow{color:#ff79c6}.theme__dark .chroma .c{color:#6272a4}.theme__dark .chroma .ch{color:#6272a4}.theme__dark .chroma .cm{color:#6272a4}.theme__dark .chroma .c1{color:#6272a4}.theme__dark .chroma .cs{color:#6272a4}.theme__dark .chroma .cp{color:#ff79c6}.theme__dark .chroma .cpf{color:#ff79c6}.theme__dark .chroma .gd{color:#8b080b}.theme__dark .chroma .ge{text-decoration:underline}.theme__dark .chroma .gh{font-weight:700}.theme__dark .chroma .gi{font-weight:700}.theme__dark .chroma .go{color:#44475a}.theme__dark .chroma .gu{font-weight:700}.theme__dark .chroma .gl{text-decoration:underline}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}.theme__dark a{text-decoration:none;color:#ffd866}.theme__dark a:hover,.theme__dark a:active,.theme__dark a:focus{color:#ff6188;text-decoration:underline}.theme__light a{text-decoration:none;color:#007d9c}.theme__light a:hover,.theme__light a:active,.theme__light a:focus{color:#00acd7;text-decoration:underline}/*!minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css*/html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}ul{list-style:none}hr{border:0}button,input,select,textarea{margin:0}img,video{height:auto;max-width:100%;object-fit:inherit}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:left}b,strong{font-weight:700}dfn{font-style:italic}figcaption{font-style:italic;font-size:.9rem;margin:.5rem 1rem 1rem}pre{white-space:pre;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}/*!Generated by Font Squirrel (https://www.fontsquirrel.com) on October 26, 2019*/@font-face{font-family:montserrat;src:url(../fonts/montserrat-regular.woff2)format("woff2"),url(../fonts/montserrat-regular.woff)format("woff");font-weight:400;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:montserrat;src:url(../fonts/montserrat-bold.woff2)format("woff2"),url(../fonts/montserrat-bold.woff)format("woff");font-weight:700;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:montserrat;src:url(../fonts/montserrat-black.woff2)format("woff2"),url(../fonts/montserrat-black.woff)format("woff");font-weight:900;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:200;src:local("Muli Extra Light "),local("Muli-Extra Light"),url(../fonts/muli-latin-200.woff2)format("woff2"),url(../fonts/muli-latin-200.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:200;src:local("Muli Extra Light italic"),local("Muli-Extra Lightitalic"),url(../fonts/muli-latin-200italic.woff2)format("woff2"),url(../fonts/muli-latin-200italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:300;src:local("Muli Light "),local("Muli-Light"),url(../fonts/muli-latin-300.woff2)format("woff2"),url(../fonts/muli-latin-300.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:300;src:local("Muli Light italic"),local("Muli-Lightitalic"),url(../fonts/muli-latin-300italic.woff2)format("woff2"),url(../fonts/muli-latin-300italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:400;src:local("Muli Regular "),local("Muli-Regular"),url(../fonts/muli-latin-400.woff2)format("woff2"),url(../fonts/muli-latin-400.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:400;src:local("Muli Regular italic"),local("Muli-Regularitalic"),url(../fonts/muli-latin-400italic.woff2)format("woff2"),url(../fonts/muli-latin-400italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:600;src:local("Muli SemiBold "),local("Muli-SemiBold"),url(../fonts/muli-latin-600.woff2)format("woff2"),url(../fonts/muli-latin-600.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:600;src:local("Muli SemiBold italic"),local("Muli-SemiBolditalic"),url(../fonts/muli-latin-600italic.woff2)format("woff2"),url(../fonts/muli-latin-600italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:700;src:local("Muli Bold "),local("Muli-Bold"),url(../fonts/muli-latin-700.woff2)format("woff2"),url(../fonts/muli-latin-700.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:700;src:local("Muli Bold italic"),local("Muli-Bolditalic"),url(../fonts/muli-latin-700italic.woff2)format("woff2"),url(../fonts/muli-latin-700italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:800;src:local("Muli ExtraBold "),local("Muli-ExtraBold"),url(../fonts/muli-latin-800.woff2)format("woff2"),url(../fonts/muli-latin-800.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:800;src:local("Muli ExtraBold italic"),local("Muli-ExtraBolditalic"),url(../fonts/muli-latin-800italic.woff2)format("woff2"),url(../fonts/muli-latin-800italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:900;src:local("Muli Black "),local("Muli-Black"),url(../fonts/muli-latin-900.woff2)format("woff2"),url(../fonts/muli-latin-900.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:900;src:local("Muli Black italic"),local("Muli-Blackitalic"),url(../fonts/muli-latin-900italic.woff2)format("woff2"),url(../fonts/muli-latin-900italic.woff)format("woff")}.clearfix::after{clear:both;content:'';display:table}.capitalize{text-transform:capitalize}.hide{display:none}.grow{-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.flexcolumn{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.jc-center{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.ai-center{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.flex-wrap{-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{font-size:1rem;font-family:muli,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif}code,pre{font-size:.85rem;font-family:Consolas,Monaco,Menlo,dejavu sans mono,bitstream vera sans mono,courier new,lucida console,lucida sans typewriter,liberation mono,nimbus mono l,Monaco,Courier,monospace}.h1{font-size:4rem}.h2{font-size:3.5rem}.h3{font-size:3rem}.h4{font-size:2.5rem}.h5{font-size:2rem}.h6{font-size:1.5rem}.p1{font-size:1.2rem}.p2{font-size:1rem}.caption{font-size:.8rem}@-webkit-keyframes slide-in-down{0%{transform:translate(0,-12%);opacity:0}100%{transform:translate(0,0);opacity:1}}@-moz-keyframes slide-in-down{0%{transform:translate(0,-12%);opacity:0}100%{transform:translate(0,0);opacity:1}}@-ms-keyframes slide-in-down{0%{transform:translate(0,-12%);opacity:0}100%{transform:translate(0,0);opacity:1}}@-o-keyframes slide-in-down{0%{transform:translate(0,-12%);opacity:0}100%{transform:translate(0,0);opacity:1}}@keyframes slide-in-down{0%{transform:translate(0,-12%);opacity:0}100%{transform:translate(0,0);opacity:1}}@-webkit-keyframes slide-in-left{0%{transform:translate(-12%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}@-moz-keyframes slide-in-left{0%{transform:translate(-12%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}@-ms-keyframes slide-in-left{0%{transform:translate(-12%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}@-o-keyframes slide-in-left{0%{transform:translate(-12%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}@keyframes slide-in-left{0%{transform:translate(-12%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}.menu{position:-webkit-sticky;position:sticky;top:50px;padding:.5rem;margin:.5rem;margin-top:0;padding-top:.85rem;height:calc(100vh - $grid-nav-height);overflow-y:auto;z-index:9}@media only screen and (max-width:600px){.menu{top:0}}.menu__label{font-family:montserrat,sans-serif;font-size:1rem;margin:.65rem 0;padding-bottom:.5rem;text-transform:capitalize}@media only screen and (max-width:600px){.menu__label{text-align:center;font-size:1.125rem}}.menu__title{cursor:pointer;position:relative;word-break:break-word;font-size:.925rem;height:30px;margin:.25rem 0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.menu__title[data-depth="1"]{font-size:.925rem;margin-left:1.25rem}.menu__title[data-depth="2"]{font-size:.925rem;margin-left:2.5rem}.menu__title[data-depth="3"]{font-size:.925rem;margin-left:3.75rem}.menu__title[data-depth="4"]{font-size:.925rem;margin-left:5rem}.theme__dark .menu__title{color:#fcfcfa}.theme__dark .menu__title.active{font-weight:700;color:#aed581}.theme__light .menu__title{color:#242729}.theme__light .menu__title.active{font-weight:700;color:#007d9c}.menu__title--collapse{cursor:pointer;word-break:break-word;font-size:16px;height:30px;margin:.25rem 0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.menu__title--collapse[data-depth="1"]{font-size:.925rem;margin-left:1.25rem}.menu__title--collapse[data-depth="2"]{font-size:.925rem;margin-left:2.5rem}.menu__title--collapse[data-depth="3"]{font-size:.925rem;margin-left:3.75rem}.menu__title--collapse[data-depth="4"]{font-size:.925rem;margin-left:5rem}.theme__dark .menu__title--collapse{color:#fcfcfa}.theme__dark .menu__title--collapse.active svg{color:#aed581}.theme__light .menu__title--collapse{color:#242729}.theme__light .menu__title--collapse.active svg{color:#007d9c}.theme__dark .menu__title--collapse:hover,.theme__dark .menu__title--collapse:active,.theme__dark .menu__title--collapse:focus{color:#ff6188}.theme__dark .menu__title--collapse:hover svg,.theme__dark .menu__title--collapse:active svg,.theme__dark .menu__title--collapse:focus svg{color:#ff6188;-webkit-transform:translateX(.125rem);-moz-transform:translateX(.125rem);-ms-transform:translateX(.125rem);transform:translateX(.125rem)}.theme__light .menu__title--collapse:hover,.theme__light .menu__title--collapse:active,.theme__light .menu__title--collapse:focus{color:#00acd7}.theme__light .menu__title--collapse:hover svg,.theme__light .menu__title--collapse:active svg,.theme__light .menu__title--collapse:focus svg{color:#00acd7;-webkit-transform:translateX(.125rem);-moz-transform:translateX(.125rem);-ms-transform:translateX(.125rem);transform:translateX(.125rem)}.menu__title--icon{margin-top:2px}.theme__dark .menu__title--icon{color:#fcfcfa}.theme__light .menu__title--icon{color:#535a61}.menu__title--icon.down{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.menu__title--icon.downrtl{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.menu__title--icon.right{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.menu__title--icon svg{display:block;margin:auto 0;-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.menu__alone{cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.menu__list{max-height:0;overflow:hidden;word-wrap:break-word;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.menu__list li{margin-left:1.25rem}.menu__list li.active{font-weight:700}.menu .active{max-height:100%}.theme__dark .menu li.active a{font-weight:700}.theme__light .menu li.active a{font-weight:700}.toc{position:-webkit-sticky;position:sticky;top:50px;padding:.5rem;margin:.5rem;margin-top:0;padding-top:1.25rem;height:calc(100vh - $grid-nav-height);overflow-y:auto;font-size:.85rem;z-index:4;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.toc #TableOfContents{position:relative}.toc__label{font-family:montserrat,sans-serif;font-size:1rem;margin-top:.65rem;margin-bottom:1rem;margin-left:1.25rem;padding-bottom:.5rem}.theme__dark .toc a{color:#aaa;position:relative}.theme__dark .toc a:hover,.theme__dark .toc a:active,.theme__dark .toc a:focus{color:#ff6188}.theme__dark .toc a.active{color:#aed581}.theme__dark .toc a.active::before{background-color:#aed581;content:'';height:11px;left:-8px;margin:.25rem 0;position:absolute;width:2px}.theme__dark .toc a.active::before:last-child{background-color:transparent}.theme__light .toc a{color:#919191;position:relative}.theme__light .toc a:hover,.theme__light .toc a:active,.theme__light .toc a:focus{color:#00acd7}.theme__light .toc a.active{color:#007d9c}.theme__light .toc a.active::before{background-color:#007d9c;content:'';height:11px;left:-8px;margin:.25rem 0;position:absolute;width:2px}.theme__light .toc a.active::before:last-child{background-color:transparent}.toc ul li li{margin-left:.85rem}.expand__content #TableOfContents ul{list-style-type:circle}.search{height:30px;width:240px;position:relative;border-radius:.175rem;z-index:10;margin:0 .75rem;-webkit-box-shadow:0 0 0 3px transparent;-moz-box-shadow:0 0 0 3px transparent;box-shadow:0 0 0 3px transparent;-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;-ms-transition:all .2s ease-in;-o-transition:all .2s ease-in;transition:all .2s ease-in;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.theme__dark .search[data-bgimg=true]{border:2px solid transparent;background-color:transparent}.theme__dark .search[data-bgimg=true]:focus-within{background-color:#4d4a4e;border:2px solid #424242;-webkit-box-shadow:0 0 0 3px rgba(166,166,166,.45);-moz-box-shadow:0 0 0 3px rgba(166,166,166,.45);box-shadow:0 0 0 3px rgba(166,166,166,.45)}.theme__light .search[data-bgimg=true]{border:2px solid transparent;background-color:transparent}.theme__light .search[data-bgimg=true]:focus-within{background-color:#fff;border:2px solid #b0bec5;-webkit-box-shadow:0 0 0 3px rgba(207,216,220,.6);-moz-box-shadow:0 0 0 3px rgba(207,216,220,.6);box-shadow:0 0 0 3px rgba(207,216,220,.6)}.theme__dark .search[data-bgimg=false]{border:2px solid #383838;background-color:#4d4a4e}.theme__dark .search[data-bgimg=false]:focus-within{border:2px solid #424242;-webkit-box-shadow:0 0 0 3px rgba(166,166,166,.45);-moz-box-shadow:0 0 0 3px rgba(166,166,166,.45);box-shadow:0 0 0 3px rgba(166,166,166,.45)}.theme__light .search[data-bgimg=false]{border:2px solid #e0e0e0;background-color:#fff}.theme__light .search[data-bgimg=false]:focus-within{border:2px solid #b0bec5;-webkit-box-shadow:0 0 0 3px rgba(207,216,220,.6);-moz-box-shadow:0 0 0 3px rgba(207,216,220,.6);box-shadow:0 0 0 3px rgba(207,216,220,.6)}@media only screen and (max-width:1280px){.search{width:170px}}@media only screen and (max-width:960px){.search{display:none}}.search .icon{padding:.45rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.theme__dark .search .icon{color:#999}.theme__light .search .icon{color:#aaa}.search .input{width:100%;font-size:.9rem;border:none;outline:none;padding-right:1rem}.theme__dark .search .input{color:#fcfcfa;background-color:inherit}.theme__dark .search .input.placeholder{color:#999}.theme__dark .search .input:-moz-placeholder{color:#999}.theme__dark .search .input::-moz-placeholder{color:#999}.theme__dark .search .input:-ms-input-placeholder{color:#999}.theme__dark .search .input::-webkit-input-placeholder{color:#999}.theme__light .search .input{color:#242729;background-color:inherit}.theme__light .search .input.placeholder{color:#aaa}.theme__light .search .input:-moz-placeholder{color:#aaa}.theme__light .search .input::-moz-placeholder{color:#aaa}.theme__light .search .input:-ms-input-placeholder{color:#aaa}.theme__light .search .input::-webkit-input-placeholder{color:#aaa}.search-content{margin-top:.25rem;max-height:350px;width:325px;overflow:auto}.search-content a{text-decoration:none!important}.theme__dark .search__highlight{color:#ff6188}.theme__light .search__highlight{color:#ff6188}.search-result{position:absolute;width:100%;height:calc(100% - 8px);z-index:16;margin:4px 0}.theme__dark .search-result{background-color:#2d2a2e}.theme__light .search-result{background-color:#fff}.search-result[data-display=block]{display:block}.search-result[data-display=none]{display:none}.search-result__close{position:absolute;right:.25rem;top:.25rem;cursor:pointer}.theme__dark .search-result__close{color:#fcfcfa}.theme__dark .search-result__close:hover,.theme__dark .search-result__close:active,.theme__dark .search-result__close:focus{color:#aed581}.theme__light .search-result__close{color:#242729}.theme__light .search-result__close:hover,.theme__light .search-result__close:active,.theme__light .search-result__close:focus{color:#007d9c}.search-result__body{margin-top:2.25rem;padding:0 1rem;position:relative;display:block;overflow:auto;height:calc(100% - 3rem)}.theme__dark .search-result__body{scrollbar-width:thin;scrollbar-color:#888 #eee}.theme__dark .search-result__body::-webkit-scrollbar{width:.45em;height:.45em}.theme__dark .search-result__body::-webkit-scrollbar-thumb{background:#888}.theme__dark .search-result__body::-webkit-scrollbar-track{background:#eee}.theme__light .search-result__body{scrollbar-width:thin;scrollbar-color:#cfd8dc #fcfcfa}.theme__light .search-result__body::-webkit-scrollbar{width:.45em;height:.45em}.theme__light .search-result__body::-webkit-scrollbar-thumb{background:#cfd8dc}.theme__light .search-result__body::-webkit-scrollbar-track{background:#fcfcfa}.search-result__item{padding:1rem 0}.theme__dark .search-result__item{border-bottom:2px dashed #595b5c}.theme__dark .search-result__item--title{font-family:montserrat,sans-serif;font-size:1rem;margin:.25rem 0;color:#fcfcfa}.theme__dark .search-result__item--title::before{content:"📋 "}.theme__dark .search-result__item--desc{font-size:.9rem;margin:.25rem 0;color:#fcfcfa}.theme__light .search-result__item{border-bottom:2px dashed #bdbdbd}.theme__light .search-result__item--title{font-family:montserrat,sans-serif;font-size:1rem;margin:.25rem 0;color:#424242}.theme__light .search-result__item--title::before{content:"📋 "}.theme__light .search-result__item--desc{font-size:.9rem;margin:.25rem 0;color:#242729}.menu-item{padding:.25rem}.menu-item__title{font-size:1rem}.theme__dark .menu-item__title{color:#fcfcfa}.theme__light .menu-item__title{color:#242729}.menu-item__desc{font-size:.8rem;padding:.25rem .5rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:325px}#search-results.dd{display:none;z-index:16}#search-results.dd.is-active{display:inline-block;position:absolute;top:40px;right:0;width:325px;border-radius:.175rem;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);-moz-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);box-shadow:0 1px 3px 0 rgba(0,0,0,.4)}.theme__dark #search-results.dd.is-active{background-color:#212121}.theme__light #search-results.dd.is-active{background-color:#f7f8f9}#search-results .dd-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.theme__dark #search-results .dd-content{background-color:#4d4a4e;scrollbar-width:thin;scrollbar-color:#888 #eee}.theme__dark #search-results .dd-content::-webkit-scrollbar{width:.45em;height:.45em}.theme__dark #search-results .dd-content::-webkit-scrollbar-thumb{background:#888}.theme__dark #search-results .dd-content::-webkit-scrollbar-track{background:#eee}.theme__light #search-results .dd-content{background-color:#f1f1f1;scrollbar-width:thin;scrollbar-color:#cfd8dc #fcfcfa}.theme__light #search-results .dd-content::-webkit-scrollbar{width:.45em;height:.45em}.theme__light #search-results .dd-content::-webkit-scrollbar-thumb{background:#cfd8dc}.theme__light #search-results .dd-content::-webkit-scrollbar-track{background:#fcfcfa}#search-results .dd-item{width:100%;font-size:1rem;padding:.35rem .6rem}#search-results .dd-item:hover,#search-results .dd-item:active,#search-results .dd-item:focus{border-bottom-left-radius:.1rem;border-bottom-right-radius:.1rem}.theme__dark #search-results .dd-item:hover,.theme__dark #search-results .dd-item:active,.theme__dark #search-results .dd-item:focus{background-color:#403e41}.theme__light #search-results .dd-item:hover,.theme__light #search-results .dd-item:active,.theme__light #search-results .dd-item:focus{background-color:#eaeaea}.theme__dark #search-results .dd-item.is-active{background-color:#403e41}.theme__light #search-results .dd-item.is-active{background-color:#eaeaea}.mobile-search{position:absolute;left:0;top:0;width:100%;z-index:18;overflow:hidden}.theme__dark .mobile-search ::-webkit-scrollbar{width:.45em;height:.45em}.theme__dark .mobile-search ::-webkit-scrollbar-thumb{background:#888}.theme__dark .mobile-search ::-webkit-scrollbar-track{background:#eee}.theme__light .mobile-search ::-webkit-scrollbar{width:.45em;height:.45em}.theme__light .mobile-search ::-webkit-scrollbar-thumb{background:#cfd8dc}.theme__light .mobile-search ::-webkit-scrollbar-track{background:#fcfcfa}.mobile-search__top{width:100%;text-align:right;position:relative;height:50px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.theme__dark .mobile-search__top{background-color:#403e41}.theme__light .mobile-search__top{background-color:#fafafa}.mobile-search__top--icon{width:50px;cursor:pointer;position:absolute;right:0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .mobile-search__top--icon:hover,.theme__dark .mobile-search__top--icon:active,.theme__dark .mobile-search__top--icon:focus{color:#aed581}.theme__light .mobile-search__top--icon:hover,.theme__light .mobile-search__top--icon:active,.theme__light .mobile-search__top--icon:focus{color:#007d9c}.mobile-search__top--input{width:calc(100% - 70px);height:70%;outline:none;border:none;border-radius:.25rem;padding:0 1rem;font-size:1.1rem}.theme__dark .mobile-search__top--input{color:#fcfcfa;background-color:#403e41}.theme__dark .mobile-search__top--input.placeholder{color:#999}.theme__dark .mobile-search__top--input:-moz-placeholder{color:#999}.theme__dark .mobile-search__top--input::-moz-placeholder{color:#999}.theme__dark .mobile-search__top--input:-ms-input-placeholder{color:#999}.theme__dark .mobile-search__top--input::-webkit-input-placeholder{color:#999}.theme__light .mobile-search__top--input{color:#242729;background-color:#fafafa}.theme__light .mobile-search__top--input.placeholder{color:#aaa}.theme__light .mobile-search__top--input:-moz-placeholder{color:#aaa}.theme__light .mobile-search__top--input::-moz-placeholder{color:#aaa}.theme__light .mobile-search__top--input:-ms-input-placeholder{color:#aaa}.theme__light .mobile-search__top--input::-webkit-input-placeholder{color:#aaa}.mobile-search__body{width:100%;height:calc(100vh - $grid-nav-height);overflow:auto}.theme__dark .mobile-search__body{color:#fcfcfa;background-color:#2d2a2e;scrollbar-width:thin;scrollbar-color:#888 #eee}.theme__light .mobile-search__body{color:#242729;background-color:#fff;scrollbar-width:thin;scrollbar-color:#cfd8dc #fcfcfa}.mobile-search__btn{width:100%;z-index:11;background-color:transparent;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .mobile-search__btn:hover,.theme__dark .mobile-search__btn:active,.theme__dark .mobile-search__btn:focus{color:#aed581}.theme__light .mobile-search__btn:hover,.theme__light .mobile-search__btn:active,.theme__light .mobile-search__btn:focus{color:#007d9c}.theme__dark .mobile-search__content{background-color:#4d4a4e}.theme__light .mobile-search__content{background-color:#f1f1f1}.mobile-search__content a{text-decoration:none!important}.mobile-search__item{padding:.5rem;list-style-type:none}.mobile-search__item--title{font-size:1.2rem}.theme__dark .mobile-search__item--title{color:#fcfcfa}.theme__light .mobile-search__item--title{color:#242729}.mobile-search__item--title::before{content:"📋 "}.mobile-search__item--desc{font-size:.9rem;padding:.25rem .5rem}.theme__dark .mobile-search__item:hover,.theme__dark .mobile-search__item:active,.theme__dark .mobile-search__item:focus{background-color:#403e41}.theme__light .mobile-search__item:hover,.theme__light .mobile-search__item:active,.theme__light .mobile-search__item:focus{background-color:#eaeaea}.dropdown{position:relative;display:inline-block;height:100%}.dropdown-content{display:none;position:absolute;z-index:17}.dropdown-content a{padding:.3rem .5rem;text-decoration:none;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:120px}.dropdown:hover .dropdown-content{display:block}.drawer{position:fixed;top:0;left:-100%;z-index:19;width:240px;height:100%;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-ms-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.theme__dark .drawer{background-color:#2d2a2e}.theme__light .drawer{background-color:#fff}.drawer__header{height:50px;width:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.theme__dark .drawer__header{background-color:#403e41;box-shadow:0 1px 0 rgba(12,13,14,.1),0 1px 6px rgba(60,65,70,.1)}.theme__light .drawer__header{background-color:#fafafa;box-shadow:0 1px 0 rgba(12,13,14,.1),0 1px 6px rgba(60,65,70,.1)}.drawer__header--text{width:100%;height:100%;padding:1rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;-ms-flex-pack:flex-start}.theme__dark .drawer__header--text{color:#fcfcfa}.theme__light .drawer__header--text{color:#424242}.drawer__body{height:100%;width:100%;overflow-y:auto}.drawer__close{width:50px;height:100%;cursor:pointer;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .drawer__close{color:#fcfcfa}.theme__dark .drawer__close:hover,.theme__dark .drawer__close:active,.theme__dark .drawer__close:focus{color:#aed581}.theme__light .drawer__close{color:#242729}.theme__light .drawer__close:hover,.theme__light .drawer__close:active,.theme__light .drawer__close:focus{color:#007d9c}.modal{position:fixed;z-index:18;left:-100%;top:0;right:0;bottom:0;width:100%;height:100%;overflow:hidden;opacity:0;background:rgba(0,0,0,.6);-webkit-transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-ms-transition:opacity .25s ease-in-out;-o-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}.lang{width:100%;font-size:17.2px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.lang__dropdown{outline:none;cursor:pointer;border:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.lang__dropdown--content{padding:.25rem 0;max-width:120px;border-radius:.175rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:120px;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);-moz-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);box-shadow:0 1px 3px 0 rgba(0,0,0,.4)}.theme__dark .lang__dropdown--content{background-color:#595b5c}.theme__dark .lang__dropdown--content a{text-decoration:none;color:#fcfcfa}.theme__dark .lang__dropdown--content a:hover,.theme__dark .lang__dropdown--content a:active,.theme__dark .lang__dropdown--content a:focus{color:inherit;background-color:#727072}.theme__dark .lang__dropdown--content a.active{font-weight:700;color:#aed581;background-color:#424242}.theme__light .lang__dropdown--content{background-color:#fff}.theme__light .lang__dropdown--content a{text-decoration:none;color:#242729}.theme__light .lang__dropdown--content a:hover,.theme__light .lang__dropdown--content a:active,.theme__light .lang__dropdown--content a:focus{color:inherit;background-color:rgba(225,225,225,.4)}.theme__light .lang__dropdown--content a.active{font-weight:700;color:#007d9c;background-color:#e0e0e0}.lang__dropdown--item{padding:.25rem .75rem;width:100%;height:100%;text-decoration:none;display:block;font-size:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:120px}.breadcrumb[data-is-blog=true]{margin:1.5rem 1rem 0;padding-bottom:1.5rem}.theme__dark .breadcrumb[data-is-blog=true]{border-bottom:1px solid #595b5c;background-color:#2d2a2e}.theme__light .breadcrumb[data-is-blog=true]{border-bottom:1px solid #bdbdbd;background-color:#fff}.breadcrumb[data-is-blog=false]{margin:auto 1rem;padding:.5rem 0}.breadcrumb ol{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.breadcrumb li{display:inline;font-size:.9rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:300px}.theme__dark .breadcrumb li a:hover,.theme__dark .breadcrumb li a:active,.theme__dark .breadcrumb li a:focus{color:#ff6188}.theme__light .breadcrumb li a:hover,.theme__light .breadcrumb li a:active,.theme__light .breadcrumb li a:focus{color:#00acd7}.breadcrumb li+li:before{padding:.5rem;content:"»"}.pagination{border-radius:.25rem;margin:2rem 1rem;padding:.5rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.pagination li{border-radius:.25rem}.theme__dark .pagination li.disabled a:hover,.theme__dark .pagination li.disabled a:active,.theme__dark .pagination li.disabled a:focus{color:#fcfcfa;text-decoration:none}.theme__light .pagination li.disabled a:hover,.theme__light .pagination li.disabled a:active,.theme__light .pagination li.disabled a:focus{color:#757575;text-decoration:none}.pagination li.active{font-weight:700}.theme__dark .pagination li.active a{color:#ff6188;border-bottom:5px solid #fcfcfa}.theme__light .pagination li.active a{color:#00acd7;border-bottom:5px solid #757575}.pagination a{font-size:1.25rem;padding:.5rem .75rem}.theme__dark .pagination a{color:#fcfcfa}.theme__dark .pagination a:hover,.theme__dark .pagination a:active,.theme__dark .pagination a:focus{color:#ff6188}.theme__light .pagination a{color:#757575}.theme__light .pagination a:hover,.theme__light .pagination a:active,.theme__light .pagination a:focus{color:#00acd7}.pagination-single{margin:1rem 0;padding-top:.75rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.pagination-single__left,.pagination-single__right{padding:.25rem;border-radius:.125rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:769px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .pagination-single__left,.theme__dark .pagination-single__right{color:#fcfcfa}.theme__light .pagination-single__left,.theme__light .pagination-single__right{color:#535a61}.pagination-single__left-title,.pagination-single__right-title{font-size:16.8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:769px}.pagination-single__icon{border-radius:100%;margin:0 .5rem;color:inherit}.pagination-single__icon svg{display:block;margin:auto}.button{border:none;outline:none;padding:.75rem;border-radius:.25rem;text-decoration:none;cursor:pointer;-webkit-transition:all .15s ease-in;-moz-transition:all .15s ease-in;-ms-transition:all .15s ease-in;-o-transition:all .15s ease-in;transition:all .15s ease-in}.theme__dark .button[data-color=default]{color:#2d2a2e;border:1px solid #a6a6a6;background-color:#ccc}.theme__dark .button[data-color=default]:hover,.theme__dark .button[data-color=default]:active,.theme__dark .button[data-color=default]:focus{color:#2d2a2e;border:1px solid #a6a6a6;background-color:#e0e0e0}.theme__light .button[data-color=default]{color:#fff;border:1px solid #303438;background-color:#535a61}.theme__light .button[data-color=default]:hover,.theme__light .button[data-color=default]:active,.theme__light .button[data-color=default]:focus{color:#fff;border:1px solid #303438;background-color:#666e77}.theme__dark .button[data-color=primary]{color:#2d2a2e;border:1px solid #89c248;background-color:#aed581}.theme__dark .button[data-color=primary]:hover,.theme__dark .button[data-color=primary]:active,.theme__dark .button[data-color=primary]:focus{color:#2d2a2e;border:1px solid #89c248;background-color:#c2dfa0}.theme__light .button[data-color=primary]{color:#fff;border:1px solid #004050;background-color:#007d9c}.theme__light .button[data-color=primary]:hover,.theme__light .button[data-color=primary]:active,.theme__light .button[data-color=primary]:focus{color:#fff;border:1px solid #004050;background-color:#009ec5}.editBtn{border:none;outline:none;padding:.75rem;margin:0 .95rem;text-decoration:none;cursor:pointer;font-family:montserrat,sans-serif;background-color:transparent}.theme__dark .editBtn{color:#ccc}.theme__dark .editBtn:hover,.theme__dark .editBtn:active,.theme__dark .editBtn:focus{color:#fcfcfa;background-color:#727072}.theme__light .editBtn{color:#535a61}.theme__light .editBtn:hover,.theme__light .editBtn:active,.theme__light .editBtn:focus{color:#242729;background-color:rgba(225,225,225,.4)}@media only screen and (max-width:600px){.editBtn{display:none}}.summary-card{padding:1rem;padding-bottom:0;margin:1.5rem 0;position:relative}.theme__dark .summary-card{background-color:#2d2a2e;border-bottom:1px solid #595b5c}.theme__light .summary-card{background-color:#fff;border-bottom:1px solid #bdbdbd}.summary-card .title{text-align:center}.summary-card .title a{font-family:montserrat,sans-serif;font-weight:700;word-break:break-word}.theme__dark .summary-card .title a{color:#ffd866}.theme__dark .summary-card .title a:hover,.theme__dark .summary-card .title a:active,.theme__dark .summary-card .title a:focus{color:#ff6188}.theme__light .summary-card .title a{color:#007d9c}.theme__light .summary-card .title a:hover,.theme__light .summary-card .title a:active,.theme__light .summary-card .title a:focus{color:#00acd7}.summary-card .subtitle{padding:1rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.summary-card__links{font-size:.8rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.theme__dark .summary-card__links{background-color:#2d2a2e}.theme__light .summary-card__links{background-color:#fff}.summary-card__tag{margin-right:.5rem;margin-bottom:.35rem;padding:.125rem .25rem;border-top-left-radius:.15rem;border-top-right-radius:.15rem;cursor:pointer}.theme__dark .summary-card__tag{border:1px solid #595b5c;border-bottom:none}.theme__light .summary-card__tag{border:1px solid #bdbdbd;border-bottom:none}.summary-card__content{margin-bottom:1rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.summary-card__text{margin-top:1rem;line-height:1.7rem}.summary-card__image{width:100%;height:100%}.summary-card__image-wrapper{height:100%;width:auto;margin:0 auto;padding:1rem 0;padding-bottom:0}.summary-card__video{width:100%;max-height:500px;object-fit:contain}.summary-card__video-wrapper{padding:1rem;padding-bottom:0}.summary-card hr{margin-top:1.5rem}.theme__dark .summary-card hr{border-top:1px solid #595b5c}.theme__light .summary-card hr{border-top:1px solid #bdbdbd}.summary-card:not(:last-child) hr{margin-bottom:4rem}.summary-card:last-child hr{margin-bottom:2rem}.expand{position:relative;border-radius:.25rem}.expand__content{overflow:hidden;max-height:0;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-ms-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.expand__content li{font-size:15.2px;margin:0 0 .525rem 2rem!important}.expand__content li:first-child{margin-top:.25rem!important}.expand__content li li{font-size:14.4px;margin:0 0 .25rem 1.25rem!important}.expand__content--toc{font-family:montserrat,sans-serif;font-size:15.2px}.expand__content--toc li{list-style-type:'📂 '}.expand__content--toc li li{list-style-type:'📄 '}.expand__button{cursor:pointer;width:100%;padding:.5rem;text-align:left;outline:none;border:none;font-size:1rem;font-family:montserrat,sans-serif;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.theme__dark .expand__button{color:inherit;border-top:1px solid rgba(243,242,241,.1);background-color:#282529}.theme__dark .expand__button:hover,.theme__dark .expand__button:active,.theme__dark .expand__button:focus{background-color:#212121}.theme__light .expand__button{color:inherit;border-top:1px solid rgba(12,13,14,.1);background-color:#f7f8f9}.theme__light .expand__button:hover,.theme__light .expand__button:active,.theme__light .expand__button:focus{background-color:#eef0f2}.expand-label{cursor:pointer;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.expand-icon{padding-top:.125rem;padding-right:.5rem}.expand-icon__down{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.expand-icon__right{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.theme__dark .bgcolor__header{background-color:#212121}.theme__dark .bgcolor__breadcrumb{background-color:#2d2a2e}.theme__light .bgcolor__header{background-color:#eee}.theme__light .bgcolor__breadcrumb{background-color:#fff}.tag{display:inline-block;margin:.25rem .4rem;text-decoration:none!important}.theme__dark .tag{color:#e9e9da}.theme__dark .tag:hover,.theme__dark .tag:active,.theme__dark .tag:focus{color:#ff6188}.theme__light .tag{color:#292929}.theme__light .tag:hover,.theme__light .tag:active,.theme__light .tag:focus{color:#00acd7}.tag__wrapper{padding:.3rem 0;margin:auto 0}.tag__text{font-size:.95rem;font-weight:700;color:inherit}.tag__num{font-size:.75rem;font-weight:700;color:inherit}.section__card{padding:1rem .75rem 2rem;position:relative}@media only screen and (max-width:960px){.section__card [data-mobile=false]{display:none}}@media only screen and (min-width:960px){.section__card [data-mobile=true]{display:none}}.section__card--header{position:relative;margin:2rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.section__card--title{z-index:2;font-weight:700;font-family:montserrat,sans-serif}.section__card--subtitle{font-weight:700;font-family:montserrat,sans-serif;margin-bottom:1.5rem;text-align:center}.section__card--main{padding:.5rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.section__card--item{width:33.33%;text-decoration:none;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.section__card--item:not(:first-child):not(:last-child){margin:0 1rem}.section__card--item:first-child{margin:0 1rem 0 0}.section__card--item:last-child{margin:0 0 0 1rem}.section__card--img{margin:auto;display:block}.section__card--img-wrapper{width:100%;margin-bottom:1rem}.section__card--content{margin-bottom:.75rem;font-size:1.125rem;word-wrap:break-word}@media only screen and (max-width:960px){.section__card--item{width:100%;margin:.5rem 0 2rem!important;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.section__card--main{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.section__card--subtitle{text-align:left}.section__card--img{display:inline-block;width:100%}.section__card--img-wrapper{min-width:112px;max-width:112px;margin-right:1rem}.section__card--content{margin-bottom:1.5rem}}.section__normal{position:relative;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.section__normal--content{margin-bottom:.75rem;font-size:1.125rem;word-wrap:break-word}.section__normal--subtitle{font-weight:700;font-family:montserrat,sans-serif;margin:2rem 0}.section__normal--img{width:100%;min-width:100px;height:100%}.section__normal--img-wrapper{margin:auto 0;padding:0 1rem}.section__normal--img-wrapper[data-position=left]{margin-right:5rem}.section__normal--img-wrapper[data-position=right]{margin-left:5rem}@media only screen and (max-width:600px){.section__normal{-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.section__normal--img-wrapper[data-position=left]{margin:0 2rem}.section__normal--img-wrapper[data-position=right]{margin:0 2rem}}.section__highlight{z-index:1;position:absolute;left:0;bottom:-.25rem;width:100%;height:20px}.section__btn{width:100%;cursor:pointer;border:none;outline:none;border-radius:.25rem}.section__btn:hover,.section__btn:active,.section__btn:focus{border:1px solid #fff}.section__btn--micro{height:20px;font-size:14px;line-height:14px}.section__btn--mini{height:24px;font-size:15px;line-height:15px}.section__btn--small{height:28px;font-size:16px}.section__btn--medium{height:32px;font-size:17px;line-height:17px}.section__btn--large{height:36px;font-size:18px}.mermaid{width:100%;text-align:center;margin-bottom:1rem;overflow:auto}.switch{position:absolute;right:-2rem;top:1.75rem;display:inline-block;width:30px;height:16px;z-index:14}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:transparent;-webkit-transition:.2s;transition:.2s}.slider:before{position:absolute;content:"";height:12px;width:13px;left:2px;bottom:2px;-webkit-transition:.2s;transition:.2s}.slider__icon{padding:.5rem}input:checked+.slider:before{-webkit-transform:translateX(13px);-ms-transform:translateX(13px);transform:translateX(13px)}.notices{position:relative;border-radius:.125rem;color:#fff;margin:2rem 0;padding:.3rem .5rem .3rem 2rem;font-size:.95rem}.notices a{text-decoration:underline}.notices>table{table-layout:fixed;width:100%;margin:10px 0;border-spacing:0}.notices.warning{border-top:30px solid #f1b37e;background:#fefaf5;color:rgba(150,90,38,.995)!important}.notices.warning::before{position:absolute;content:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjIxIiBoZWlnaHQ9IjIxIj48cGF0aCBmaWxsPSIjZmVmYWY1IiBkPSJNMTIgMy4wMjkyOTY5QzExLjQzNjgxMyAzLjAyOTI5NjkgMTAuODczODY5IDMuMjkxNzM5OSAxMC41NTg1OTQgMy44MTY0MDYyTDEuNzYxNzE4OCAxOC40NTExNzJDMS4xMTM0ODU0IDE5LjUyOTE4NiAxLjk0Mjg3IDIxIDMuMjAxMTcxOSAyMUgyMC43OTY4NzVDMjIuMDU0ODA1IDIxIDIyLjg4NjUxNSAxOS41MjkxODYgMjIuMjM4MjgxIDE4LjQ1MTE3MkwxMy40NDE0MDYgMy44MTY0MDYyQzEzLjEyNjEzMSAzLjI5MTc0IDEyLjU2MzE4NyAzLjAyOTI5NjkgMTIgMy4wMjkyOTY5em0wIDIuMjY5NTMxMkwyMC4yMzYzMjggMTlIMy43NjM2NzE5TDEyIDUuMjk4ODI4MXpNMTEgOXY1aDJWOUgxMXptMCA3djJoMlYxNkgxMXoiLz48L3N2Zz4=);top:-26.5px;left:.4rem;height:100%}.notices.warning::after{position:absolute;content:attr(data-title);font-family:montserrat,sans-serif;top:-26.5px;left:2rem;height:100%}.notices.warning a{font-weight:700;color:rgba(134,74,22,.995)}.theme__dark .notices.warning a:hover,.theme__dark .notices.warning a:active,.theme__dark .notices.warning a:focus{color:#ff6188}.theme__light .notices.warning a:hover,.theme__light .notices.warning a:active,.theme__light .notices.warning a:focus{color:#00acd7}.notices.warning>table thead{background:#f1b37e}.notices.warning>table th{color:rgba(134,74,22,.995)}.notices.warning>table th,.notices.warning>table td{padding:5px 15px;border:1px double rgba(166,106,54,.45)}.notices.warning p>code,.notices.warning li>code,.notices.warning td>code,.notices.warning code{padding:3px 7px;color:rgba(150,90,38,.995)!important;background-color:#fbecd9!important}.notices.error{border-top:30px solid #d58181;background:#fbeded;color:rgba(132,56,56,.995)!important}.notices.error::before{position:absolute;content:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjIxIiBoZWlnaHQ9IjIxIj48cGF0aCBmaWxsPSIjZmJlZGVkIiBkPSJNNSAzQzMuODk1IDMgMyAzLjg5NSAzIDVWMTlDMyAyMC4xMDUgMy44OTUgMjEgNSAyMUgxOUMyMC4xMDUgMjEgMjEgMjAuMTA1IDIxIDE5VjVDMjEgMy44OTUgMjAuMTA1IDMgMTkgM0g1ek01IDVIMTlWMTlINVY1ek04LjQxMDE1NjIgNyA3IDguNDEwMTU2MiAxMC41ODk4NDQgMTIgNyAxNS41ODk4NDQgOC40MTAxNTYyIDE3IDEyIDEzLjQxMDE1NiAxNS41ODk4NDQgMTcgMTcgMTUuNTg5ODQ0IDEzLjQxMDE1NiAxMiAxNyA4LjQxMDE1NjIgMTUuNTg5ODQ0IDcgMTIgMTAuNTg5ODQ0IDguNDEwMTU2MiA3eiIvPjwvc3ZnPg==);top:-26.5px;left:.4rem;height:100%}.notices.error::after{position:absolute;content:attr(data-title);font-family:montserrat,sans-serif;top:-26.5px;left:2rem;height:100%}.notices.error a{font-weight:700;color:rgba(116,40,40,.995)}.theme__dark .notices.error a:hover,.theme__dark .notices.error a:active,.theme__dark .notices.error a:focus{color:#ff6188}.theme__light .notices.error a:hover,.theme__light .notices.error a:active,.theme__light .notices.error a:focus{color:#00acd7}.notices.error>table thead{background:#d58181}.notices.error>table th{color:rgba(116,40,40,.995)}.notices.error>table th,.notices.error>table td{padding:5px 15px;border:1px double rgba(148,72,72,.45)}.notices.error p>code,.notices.error li>code,.notices.error td>code,.notices.error code{padding:3px 7px;color:rgba(132,56,56,.995)!important;background-color:#f5d4d4!important}.notices.info{border-top:30px solid #6bb1e0;background:#e6f3fb;color:rgba(47,103,141,.995)!important}.notices.info::before{position:absolute;content:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjIxIiBoZWlnaHQ9IjIxIj48cGF0aCBmaWxsPSIjZTZmM2ZiIiBkPSJNMTIgMkM2LjQ4ODk5NzEgMiAyIDYuNDg4OTk3MSAyIDEyIDIgMTcuNTExMDAzIDYuNDg4OTk3MSAyMiAxMiAyMiAxNy41MTEwMDMgMjIgMjIgMTcuNTExMDAzIDIyIDEyIDIyIDYuNDg4OTk3MSAxNy41MTEwMDMgMiAxMiAyem0wIDJDMTYuNDMwMTIzIDQgMjAgNy41Njk4Nzc0IDIwIDEyIDIwIDE2LjQzMDEyMyAxNi40MzAxMjMgMjAgMTIgMjAgNy41Njk4Nzc0IDIwIDQgMTYuNDMwMTIzIDQgMTJjMC00LjQzMDEyMjYgMy41Njk4Nzc0LTggOC04ek0xMSA3VjloMlY3SDExem0wIDR2NmgyVjExSDExeiIvPjwvc3ZnPg==);top:-26.5px;left:.4rem;height:100%}.notices.info::after{position:absolute;content:attr(data-title);font-family:montserrat,sans-serif;top:-26.5px;left:2rem;height:100%}.notices.info a{font-weight:700;color:rgba(31,87,125,.995)}.theme__dark .notices.info a:hover,.theme__dark .notices.info a:active,.theme__dark .notices.info a:focus{color:#ff6188}.theme__light .notices.info a:hover,.theme__light .notices.info a:active,.theme__light .notices.info a:focus{color:#00acd7}.notices.info>table thead{background:#6bb1e0}.notices.info>table th{color:rgba(31,87,125,.995)}.notices.info>table th,.notices.info>table td{padding:5px 15px;border:1px double rgba(63,119,157,.45)}.notices.info p>code,.notices.info li>code,.notices.info td>code,.notices.info code{padding:3px 7px;color:rgba(47,103,141,.995)!important;background-color:#cce6f7!important}.notices.success{border-top:30px solid #84c578;background:#e8f7e6;color:rgba(72,125,63,.995)!important}.notices.success::before{position:absolute;content:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjIxIiBoZWlnaHQ9IjIxIj48cGF0aCBmaWxsPSIjZThmN2U2IiBkPSJNMTIgMkM2LjQ4ODk5NzEgMiAyIDYuNDg4OTk3MSAyIDEyIDIgMTcuNTExMDAzIDYuNDg4OTk3MSAyMiAxMiAyMiAxNy41MTEwMDMgMjIgMjIgMTcuNTExMDAzIDIyIDEyIDIyIDYuNDg4OTk3MSAxNy41MTEwMDMgMiAxMiAyem0wIDJDMTYuNDMwMTIzIDQgMjAgNy41Njk4Nzc0IDIwIDEyIDIwIDE2LjQzMDEyMyAxNi40MzAxMjMgMjAgMTIgMjAgNy41Njk4Nzc0IDIwIDQgMTYuNDMwMTIzIDQgMTJjMC00LjQzMDEyMjYgMy41Njk4Nzc0LTggOC04ek0xNi4yOTI5NjkgOC4yOTI5Njg4IDEwIDE0LjU4NTkzOCA3LjcwNzAzMTIgMTIuMjkyOTY5IDYuMjkyOTY4OCAxMy43MDcwMzEgMTAgMTcuNDE0MDYyIDE3LjcwNzAzMSA5LjcwNzAzMTIgMTYuMjkyOTY5IDguMjkyOTY4OHoiLz48L3N2Zz4=);top:-26.5px;left:.4rem;height:100%}.notices.success::after{position:absolute;content:attr(data-title);font-family:montserrat,sans-serif;top:-26.5px;left:2rem;height:100%}.notices.success a{font-weight:700;color:rgba(56,109,47,.995)}.theme__dark .notices.success a:hover,.theme__dark .notices.success a:active,.theme__dark .notices.success a:focus{color:#ff6188}.theme__light .notices.success a:hover,.theme__light .notices.success a:active,.theme__light .notices.success a:focus{color:#00acd7}.notices.success>table thead{background:#84c578}.notices.success>table th{color:rgba(56,109,47,.995)}.notices.success>table th,.notices.success>table td{padding:5px 15px;border:1px double rgba(82,141,79,.45)}.notices.success p>code,.notices.success li>code,.notices.success td>code,.notices.success code{padding:3px 7px;color:rgba(72,125,63,.995)!important;background-color:#d3f0cf!important}.alert{padding:.75rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.125rem}.theme__dark .alert-info{background-color:rgba(215,238,249,.4);color:#fcfcfa}.theme__dark .alert-info[data-dir=rtl]{border-right:5px solid #bbdefb}.theme__dark .alert-info[data-dir=ltr]{border-left:5px solid #bbdefb}.theme__dark .alert-success{background-color:rgba(217,239,214,.4);color:#fcfcfa}.theme__dark .alert-success[data-dir=rtl]{border-right:5px solid #c8e6c9}.theme__dark .alert-success[data-dir=ltr]{border-left:5px solid #c8e6c9}.theme__dark .alert-warning{background-color:rgba(255,249,196,.4);color:#fcfcfa}.theme__dark .alert-warning[data-dir=rtl]{border-right:5px solid #ffeb3b}.theme__dark .alert-warning[data-dir=ltr]{border-left:5px solid #ffeb3b}.theme__dark .alert-danger{background-color:rgba(245,221,221,.4);color:#fcfcfa}.theme__dark .alert-danger[data-dir=rtl]{border-right:5px solid #ffcdd2}.theme__dark .alert-danger[data-dir=ltr]{border-left:5px solid #ffcdd2}.theme__light .alert-info{background-color:rgba(215,238,249,.4);color:#242729}.theme__light .alert-info[data-dir=rtl]{border-right:5px solid #bbdefb}.theme__light .alert-info[data-dir=ltr]{border-left:5px solid #bbdefb}.theme__light .alert-success{background-color:rgba(217,239,214,.4);color:#242729}.theme__light .alert-success[data-dir=rtl]{border-right:5px solid #c8e6c9}.theme__light .alert-success[data-dir=ltr]{border-left:5px solid #c8e6c9}.theme__light .alert-warning{background-color:rgba(255,249,196,.4);color:#242729}.theme__light .alert-warning[data-dir=rtl]{border-right:5px solid #ffeb3b}.theme__light .alert-warning[data-dir=ltr]{border-left:5px solid #ffeb3b}.theme__light .alert-danger{background-color:rgba(245,221,221,.4);color:#242729}.theme__light .alert-danger[data-dir=rtl]{border-right:5px solid #ffcdd2}.theme__light .alert-danger[data-dir=ltr]{border-left:5px solid #ffcdd2}#container{display:grid;grid-template-columns:1fr;grid-template-rows:50px auto 1fr auto;grid-column-gap:20px;grid-row-gap:0;grid-template-rows:50px auto 1fr auto;width:100%;max-width:100%;min-height:100vh;margin-left:auto;margin-right:auto;position:relative;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark #container{color:#fcfcfa}.theme__light #container{color:#242729}.nav{grid-area:1/1/2/2}.top{grid-area:2/1/3/2}.mid{grid-area:3/1/4/2}.bot{grid-area:4/1/5/2}.divider{display:grid;height:100%;grid-template-columns:minmax(200px,240px)minmax(350px,769px)minmax(200px,240px);grid-template-rows:auto;grid-column-gap:0;grid-row-gap:0;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}@media only screen and (max-width:769px){.divider{grid-template-columns:minmax(0,240px)minmax(0,769px)minmax(0,240px)}}.l{grid-area:1/1/2/2}.m{grid-area:1/2/2/3}.r{grid-area:1/3/2/4}.lm{grid-area:1/1/2/3}.mr{grid-area:1/2/2/4}.lmr{grid-area:1/1/2/4}.sv{display:grid;grid-template-rows:1fr;grid-column-gap:0;grid-row-gap:0}.sv[data-view=full]{grid-template-columns:769px}.sv[data-view=mobile]{width:100%;grid-template-columns:1fr}.blog{grid-area:1/1/2/2}.theme__dark .bot{background-color:#403e41}.theme__light .bot{background-color:#fafafa}.footer{padding:1rem;text-align:center}.theme__dark .footer{border-top:1px solid rgba(243,242,241,.1)}.theme__light .footer{border-top:1px solid rgba(12,13,14,.1)}.footer__section{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.footer__section--wrapper{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}@media only screen and (max-width:600px){.footer__section--wrapper{-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}}.footer__section--title{font-family:montserrat,sans-serif;font-size:1rem;font-weight:700;margin:1rem 0 .5rem}.footer__section--link{display:block;text-align:left;padding:.15rem .35rem}.footer__contents{width:100%;margin:2rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.theme__dark .top{background-color:#212121}.theme__light .top{background-color:#eee}.header{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.theme__dark .header__wrapper{border-bottom:1px solid rgba(243,242,241,.1)}.theme__light .header__wrapper{border-bottom:1px solid rgba(12,13,14,.1)}.header__wrapper .title{font-size:3rem;font-weight:900;font-family:montserrat,sans-serif;line-height:3rem;overflow-wrap:break-word;margin:2rem 1.5rem}.theme__dark .header__wrapper .title{color:#fcfcfa}.theme__light .header__wrapper .title{color:#424242}.blog-header{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.blog-header__title{line-height:1.1;font-weight:900;font-family:montserrat,sans-serif;font-size:3rem;line-height:3rem;overflow-wrap:break-word}.theme__dark .blog-header__title{color:#fcfcfa}.theme__light .blog-header__title{color:#424242}.blog-header__subtitle{line-height:1.2}.blog-header__align-left{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.blog-header__align-center{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.blog-header__align-right{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.theme__dark .mid{background-color:#212121}.theme__light .mid{background-color:#f7f8f9}.main{width:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .main{background-color:#212121}.theme__light .main{background-color:#f7f8f9}.nav{position:relative}.navbar{padding:0 .75rem;height:100%;position:relative;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.navbar__wrapper{width:100%;height:50px;position:fixed;left:0;right:0;top:0;z-index:16;color:inherit;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.navbar__wrapper[data-bgimg=true]{background-color:transparent}.navbar__wrapper[data-bgimg=false]{box-shadow:0 1px 0 rgba(12,13,14,.1),0 1px 6px rgba(60,65,70,.1)}.theme__dark .navbar__wrapper[data-bgimg=false]{background-color:#403e41}.theme__light .navbar__wrapper[data-bgimg=false]{background-color:#fafafa}.navbar__menu{height:100%;padding:0 .75rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.navbar__menu--wrapper{height:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.navbar__menu--item{height:50px;padding:0 .75rem}.navbar__menu--item>a{height:100%;font-family:montserrat,sans-serif;font-size:16.8px;color:inherit;text-decoration:none!important;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .navbar__menu--item{color:#fcfcfa}.theme__dark .navbar__menu--item.active{font-weight:700;color:#aed581}.theme__light .navbar__menu--item{color:#242729}.theme__light .navbar__menu--item.active{font-weight:700;color:#007d9c}.navbar__menu--mobile-item{width:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;-ms-flex-pack:flex-start}.theme__dark .navbar__menu--mobile-item:hover,.theme__dark .navbar__menu--mobile-item:active,.theme__dark .navbar__menu--mobile-item:focus{background-color:#727072}.theme__light .navbar__menu--mobile-item:hover,.theme__light .navbar__menu--mobile-item:active,.theme__light .navbar__menu--mobile-item:focus{background-color:rgba(225,225,225,.4)}.navbar__menu--mobile-item>a{width:100%;font-size:18px;padding:.5rem 1rem}.theme__dark .navbar__menu--mobile-item>a{color:#fcfcfa}.theme__dark .navbar__menu--mobile-item>a:hover,.theme__dark .navbar__menu--mobile-item>a:active,.theme__dark .navbar__menu--mobile-item>a:focus{text-decoration:none;color:#ff6188}.theme__dark .navbar__menu--mobile-item>a.active{font-weight:700;color:#aed581;background-color:#424242}.theme__light .navbar__menu--mobile-item>a{color:#242729}.theme__light .navbar__menu--mobile-item>a:hover,.theme__light .navbar__menu--mobile-item>a:active,.theme__light .navbar__menu--mobile-item>a:focus{text-decoration:none;color:#00acd7}.theme__light .navbar__menu--mobile-item>a.active{font-weight:700;color:#007d9c;background-color:#e0e0e0}.navbar__menu--btn{height:50px;font-size:20px;margin-left:.4rem;margin-right:.5rem;white-space:nowrap;cursor:pointer;border:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.theme__dark .navbar__menu--btn{color:#fcfcfa;background:0 0}.theme__dark .navbar__menu--btn:hover,.theme__dark .navbar__menu--btn:active,.theme__dark .navbar__menu--btn:focus{color:#aed581}.theme__light .navbar__menu--btn{color:#242729;background:0 0}.theme__light .navbar__menu--btn:hover,.theme__light .navbar__menu--btn:active,.theme__light .navbar__menu--btn:focus{color:#007d9c}.navbar__logo{width:100%;height:100%;margin:0 .25rem}.navbar__logo--wrapper{height:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;-ms-flex-pack:flex-start}.theme__dark .navbar__logo--wrapper{color:#fcfcfa}.theme__dark .navbar__logo--wrapper:hover,.theme__dark .navbar__logo--wrapper:active,.theme__dark .navbar__logo--wrapper:focus{color:#aed581}.theme__light .navbar__logo--wrapper{color:#242729}.theme__light .navbar__logo--wrapper:hover,.theme__light .navbar__logo--wrapper:active,.theme__light .navbar__logo--wrapper:focus{color:#007d9c}.navbar__logo--wrapper a{color:inherit}.navbar__logo--wrapper a:hover,.navbar__logo--wrapper a:active,.navbar__logo--wrapper a:focus{color:inherit;text-decoration:none}.navbar__logo--link{width:32.5px;height:32.5px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.navbar__logo--text{font-size:20px;margin-left:.5rem;margin-right:1rem;white-space:nowrap;cursor:pointer;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.theme__dark .navbar__logo--text[data-bgimg=false]{color:#fcfcfa}.theme__light .navbar__logo--text[data-bgimg=false]{color:#242729}.navbar__long--link{width:100%;height:100%;padding:.6rem .2rem;margin:auto .25rem;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.navbar__icons{height:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.navbar__icons--icon{width:50px;height:50px;color:inherit;background-color:transparent;outline:none;border:none;cursor:pointer;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .navbar__icons--icon{color:#ccc}.theme__dark .navbar__icons--icon:hover,.theme__dark .navbar__icons--icon:active,.theme__dark .navbar__icons--icon:focus{color:#fcfcfa;background-color:#727072}.theme__dark .navbar__icons--icon>a{height:100%;color:inherit;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__light .navbar__icons--icon{color:#535a61}.theme__light .navbar__icons--icon:hover,.theme__light .navbar__icons--icon:active,.theme__light .navbar__icons--icon:focus{color:#242729;background-color:rgba(225,225,225,.4)}.theme__light .navbar__icons--icon>a{height:100%;color:inherit;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.navbar__dropdown{height:30px;font-size:17.2px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.navbar__dropdown--content{padding:.25rem 0;min-width:120px;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);-moz-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);box-shadow:0 1px 3px 0 rgba(0,0,0,.4)}.theme__dark .navbar__dropdown--content{background-color:#595b5c}.theme__light .navbar__dropdown--content{background-color:#fff}.navbar__dropdown--title{font-size:16.8px;font-family:montserrat,sans-serif;border:none;outline:none;height:50px;cursor:pointer;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.navbar__dropdown--title[data-dir=rtl]{margin-right:1rem}.navbar__dropdown--title[data-dir=ltr]{margin-left:1rem}.theme__dark .navbar__dropdown--title{color:#fcfcfa;background-color:#403e41}.theme__light .navbar__dropdown--title{color:#242729;background-color:#fafafa}.navbar__collapse{width:100%;position:absolute;top:50px;left:0;max-height:0;overflow:hidden;-webkit-transition:all .15s ease-out;-moz-transition:all .15s ease-out;-ms-transition:all .15s ease-out;-o-transition:all .15s ease-out;transition:all .15s ease-out}.theme__dark .navbar__collapse{background-color:#403e41}.theme__dark .navbar__collapse[data-open=true]{border-bottom:2px solid rgba(243,242,241,.1)}.theme__dark .navbar__collapse[data-open=false]{border-bottom:none}.theme__light .navbar__collapse{background-color:#fafafa}.theme__light .navbar__collapse[data-open=true]{border-bottom:2px solid rgba(12,13,14,.1)}.theme__light .navbar__collapse[data-open=false]{border-bottom:none}.home__landing{width:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}@media only screen and (max-width:600px){.home__landing{-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}}.home__landing--img{margin:.5rem;z-index:7}.home__landing--txt{margin:2.5rem .5rem;z-index:7}.home__landing--txt .title{font-size:56px;font-weight:900;font-family:montserrat,sans-serif}.home__landing--txt .text{font-size:22px}@media only screen and (max-width:600px){.home__landing--txt{text-align:center}}.home__landing--link{text-decoration:none!important}.home__landing--btn{margin-top:2.5rem;margin-right:.5rem}.home__landing--btn2{margin:.5rem}.home__social{width:100%;padding:1rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.home__social--item{margin:0 .25rem}.home__banner{width:100%;padding:.75rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .home__banner--wrapper{background-color:#191919}.theme__light .home__banner--wrapper{background-color:#eee}.theme__dark #single-menu[data-dir=ltr]{border-right:1px solid rgba(243,242,241,.1)}.theme__dark #single-menu[data-dir=rtl]{border-left:1px solid rgba(243,242,241,.1)}.theme__light #single-menu[data-dir=ltr]{border-right:1px solid rgba(12,13,14,.1)}.theme__light #single-menu[data-dir=rtl]{border-left:1px solid rgba(12,13,14,.1)}.single{position:relative;width:100%;overflow-wrap:break-word}.single[data-display=block]{display:block}.single[data-display=none]{display:none}.single__title{font-size:3rem;font-weight:900;font-family:montserrat,sans-serif;line-height:3rem;overflow-wrap:break-word;margin:2rem 1rem .25rem}.theme__dark .single__title{color:#fcfcfa}.theme__light .single__title{color:#424242}.single__meta{font-size:.8rem;margin-bottom:1.5rem;padding:0 1rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.single__infos{margin-right:.5rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.single__info{word-break:keep-all;padding:0 .125rem}.single__contents{margin:1rem 0;line-height:1.7;width:inheirt;max-width:inherit}.single__contents--gallery{overflow:hidden}.single__contents>p>a{text-decoration:underline}.single__contents h1,.single__contents h2,.single__contents h3,.single__contents h4,.single__contents h5,.single__contents h6{position:relative;line-height:1.25;padding:0 1rem;font-family:montserrat,sans-serif}.single__contents h1,.single__contents h2{color:inherit;font-weight:900;text-rendering:optimizeLegibility}.theme__dark .single__contents h1,.theme__dark .single__contents h2{color:#ccc}.theme__light .single__contents h1,.theme__light .single__contents h2{color:#607d8b}.theme__dark .single__contents h3,.theme__dark .single__contents h4,.theme__dark .single__contents h5,.theme__dark .single__contents h6{color:#fcfcfa}.single__contents h1{font-size:2.6rem;margin:3.5rem 0 1.75rem}.single__contents h2{font-size:2.2rem;margin:3.2rem 0 1.5rem}.single__contents h3{font-size:1.8rem;margin:2.8rem 0 1.25rem}.single__contents h4{font-size:1.5rem;margin:2.4rem 0 1rem}.single__contents h5{font-size:1.2rem;margin:2rem 0 .8rem}.single__contents h6{font-size:1rem;margin:1.5rem 0 .5rem}.single__contents pre{margin-top:1.6rem;overflow:auto;line-height:1.5;direction:ltr}.theme__dark .single__contents pre{border-top:1px solid rgba(243,242,241,.1);border-bottom:1px solid rgba(243,242,241,.1);scrollbar-width:thin;scrollbar-color:#888 #eee}.theme__dark .single__contents pre::-webkit-scrollbar{width:.45em;height:.45em}.theme__dark .single__contents pre::-webkit-scrollbar-thumb{background:#888}.theme__dark .single__contents pre::-webkit-scrollbar-track{background:#eee}.theme__light .single__contents pre{border-top:1px solid rgba(12,13,14,.1);border-bottom:1px solid rgba(12,13,14,.1);scrollbar-width:thin;scrollbar-color:#cfd8dc #fcfcfa}.theme__light .single__contents pre::-webkit-scrollbar{width:.45em;height:.45em}.theme__light .single__contents pre::-webkit-scrollbar-thumb{background:#cfd8dc}.theme__light .single__contents pre::-webkit-scrollbar-track{background:#fcfcfa}.single__contents pre:not(.chroma){position:relative;margin:1rem 0}.theme__dark .single__contents pre:not(.chroma){border-left:4px solid #595b5c}.theme__light .single__contents pre:not(.chroma){border-left:4px solid #d7dee2}.single__contents div.chroma{position:relative}.single__contents div.chroma:hover .copy-to-clipboard,.single__contents div.chroma:active .copy-to-clipboard,.single__contents div.chroma:focus .copy-to-clipboard{opacity:1}.single__contents p>code:not([class^=language]){padding:.25rem .5rem}.theme__dark .single__contents p>code:not([class^=language]){color:#fcfcfa}.theme__light .single__contents p>code:not([class^=language]){color:#607d8b}.single__contents blockquote{margin:0 1.75rem 1.75rem 1.5rem;padding:0 0 0 1.42188rem;font-size:1.05rem;font-style:italic;line-height:1.75;color:inherit;opacity:.8;position:relative}.theme__dark .single__contents blockquote{border-left:5px solid #fcfcfa}.theme__light .single__contents blockquote{border-left:5px solid #bdbdbd}.single__contents blockquote code:not([class^=language]){padding:3px 7px;margin:0 .25rem}.theme__dark .single__contents blockquote code:not([class^=language]){color:#fcfcfa}.theme__light .single__contents blockquote code:not([class^=language]){color:#607d8b}.single__contents img{display:block;border-radius:.25rem;margin:0 auto}.single__contents p{margin:0 0 10px;padding:0 1rem}.single__contents p code:not([class^=language]){padding:3px 7px;margin:0 .25rem}.theme__dark .single__contents p code:not([class^=language]){color:#fcfcfa}.theme__light .single__contents p code:not([class^=language]){color:#607d8b}.single__contents ul{margin-right:0;margin-top:0;margin-bottom:1rem;padding:0;list-style:disc outside none}.single__contents ol{margin-bottom:1rem}.single__contents[data-dir=ltr] li{margin-left:2rem}.single__contents[data-dir=rtl] li{margin-right:2rem}.single__contents li>code{padding:2px 7px}.theme__dark .single__contents li code:not([class^=language]){color:#fcfcfa}.theme__light .single__contents li code:not([class^=language]){color:#607d8b}.single__contents hr{margin:10px 1rem;border:none;height:1px}.theme__dark .single__contents hr{background:#727072}.theme__light .single__contents hr{background:#bdbdbd}.single__contents dl dt::after{content:':'}.single__contents dd{display:block;margin-inline-start:40px}.single__contents .anchor{cursor:pointer}.single__contents a.footnote-ref{font-size:.75rem;font-weight:700;margin-left:3px}.single__contents a.footnote-ref::before{content:"["}.single__contents a.footnote-ref::after{content:"]"}.single__contents .table-wrapper{overflow-x:auto;margin:1rem}.single__contents .table-wrapper>table{max-width:100%;margin:10px 0;border-spacing:0;box-shadow:1px 1px 3px rgba(0,0,0,.125)}.theme__dark .single__contents .table-wrapper>table thead{background:#1d1e26}.theme__dark .single__contents .table-wrapper>table th{color:#fcfcfa}.theme__dark .single__contents .table-wrapper>table th,.theme__dark .single__contents .table-wrapper>table td{padding:.25rem .5rem;border:1px double #595b5c}.theme__light .single__contents .table-wrapper>table thead{background:#e2e6e9}.theme__light .single__contents .table-wrapper>table th{color:#344952}.theme__light .single__contents .table-wrapper>table th,.theme__light .single__contents .table-wrapper>table td{padding:.25rem .5rem;border:1px double #d7dee2}.single__contents .table-wrapper code:not([class^=language]){padding:3px 7px;margin:0 .25rem}.theme__dark .single__contents .table-wrapper code:not([class^=language]){color:#fcfcfa}.theme__light .single__contents .table-wrapper code:not([class^=language]){color:#607d8b}.single__tags{list-style-type:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.single__tag{padding:0 .25rem}code,pre{padding:.25rem .5rem;line-height:1.5;font-family:Consolas,Monaco,Menlo,dejavu sans mono,bitstream vera sans mono,courier new,lucida console,lucida sans typewriter,liberation mono,nimbus mono l,Monaco,Courier,monospace;overflow:auto}code a,pre a{text-decoration:none!important}pre.chroma{padding:.65rem 0}.theme__dark *:not(.chroma) code,.theme__dark *:not(.chroma) pre{color:#eee;background:#2a2c37}.theme__light *:not(.chroma) code,.theme__light *:not(.chroma) pre{color:#344952;background:#f7f8f9}*:not(.chroma) code{padding:0}code:not([class^=language]){padding:3px 0;border-radius:4px}.theme__dark code:not([class^=language]){color:#fcfcfa}.theme__light code:not([class^=language]){color:#607d8b}pre:not(.chroma){overflow:auto}.single__contents>.language-code,li>.language-code{overflow-x:auto;position:relative;margin:1rem 0;direction:ltr}.single__contents>.language-code:hover .copy-to-clipboard,.single__contents>.language-code:active .copy-to-clipboard,.single__contents>.language-code:focus .copy-to-clipboard,li>.language-code:hover .copy-to-clipboard,li>.language-code:active .copy-to-clipboard,li>.language-code:focus .copy-to-clipboard{opacity:1}.single__contents>.language-code::after,li>.language-code::after{position:absolute;top:0;right:0;left:0;padding:2px 7px;width:100%;height:20px;z-index:4;border-top-left-radius:.25rem;border-top-right-radius:.25rem;content:''}.theme__dark .single__contents>.language-code::after,.theme__dark li>.language-code::after{color:#fcfcfa;background:#1d1e26}.theme__light .single__contents>.language-code::after,.theme__light li>.language-code::after{color:#344952;background:#e2e6e9}.highlight>.chroma{margin-bottom:1.5rem;z-index:8;overflow-x:auto;direction:ltr}.theme__dark .highlight>.chroma{color:#eee;background:#2a2c37}.theme__light .highlight>.chroma{color:#344952;background:#f7f8f9}.highlight>.chroma code{padding:0}.highlight>.chroma code[data-lang]::before{position:absolute;top:0;right:0;z-index:12;height:25px;width:100%;display:inline-block;text-align:right;content:attr(data-lang)}.theme__dark .highlight>.chroma code[data-lang]::before{color:#2d2a2e;background:#2d2a2e}.theme__light .highlight>.chroma code[data-lang]::before{color:#fff;background:#fff}.highlight>.chroma code[data-lang]::after{position:absolute;top:2px;right:0;z-index:13;padding:.125rem .25rem;height:25px;font-family:montserrat,sans-serif;font-weight:700;font-size:.85rem;line-height:1.5;display:inline-block;text-transform:capitalize;border-top-left-radius:.2rem;content:attr(data-lang)}.theme__dark .highlight>.chroma code[data-lang]::after{border-top:1px solid #595b5c;border-left:1px solid #595b5c}.theme__light .highlight>.chroma code[data-lang]::after{border-top:1px solid #bdbdbd;border-left:1px solid #bdbdbd}.theme__dark .highlight>.chroma code[data-lang]::after{background:#1d1e26}.theme__light .highlight>.chroma code[data-lang]::after{background:#e2e6e9}.highlight>.chroma table,.highlight>.chroma tr,.highlight>.chroma td{margin:0;padding:0;width:100%;border-collapse:collapse}.highlight>.chroma .lntd:first-child{width:10px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.highlight>.chroma .lntd:last-child{vertical-align:top}.highlight>.chroma .lnt{margin-left:.2rem;margin-right:.5rem}.theme__dark .highlight>.chroma .lnt{color:#666}.theme__light .highlight>.chroma .lnt{color:#aaa}.highlight>.chroma table.lntable{overflow-x:auto}.theme__dark .highlight>.chroma table.lntable{scrollbar-width:thin;scrollbar-color:#888 #eee}.theme__dark .highlight>.chroma table.lntable::-webkit-scrollbar{width:.45em;height:.45em}.theme__dark .highlight>.chroma table.lntable::-webkit-scrollbar-thumb{background:#888}.theme__dark .highlight>.chroma table.lntable::-webkit-scrollbar-track{background:#eee}.theme__light .highlight>.chroma table.lntable{scrollbar-width:thin;scrollbar-color:#cfd8dc #fcfcfa}.theme__light .highlight>.chroma table.lntable::-webkit-scrollbar{width:.45em;height:.45em}.theme__light .highlight>.chroma table.lntable::-webkit-scrollbar-thumb{background:#cfd8dc}.theme__light .highlight>.chroma table.lntable::-webkit-scrollbar-track{background:#fcfcfa}.theme__dark .highlight>.chroma table.lntable td:first-child{border-left:4px solid #595b5c}.theme__light .highlight>.chroma table.lntable td:first-child{border-left:4px solid #d7dee2}li .highlight>.chroma .lnt:first-child{padding:0 .3rem}li .highlight>.chroma .lnt:not(:first-child){padding:0 .3rem}td:not(.lntd) code{padding:2px 7px!important}table:not(.lntable) td code{padding:2px 7px!important}#list-main{position:relative;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.theme__dark #list-main{background-color:#2d2a2e}.theme__dark #list-main[data-dir=ltr]{border-right:1px solid rgba(243,242,241,.1)}.theme__dark #list-main[data-dir=rtl]{border-left:1px solid rgba(243,242,241,.1)}.theme__light #list-main{background-color:#fff}.theme__light #list-main[data-dir=ltr]{border-right:1px solid rgba(12,13,14,.1)}.theme__light #list-main[data-dir=rtl]{border-left:1px solid rgba(12,13,14,.1)}#list-menu{position:relative}.theme__dark #list-menu[data-dir=ltr]{border-right:1px solid rgba(243,242,241,.1)}.theme__dark #list-menu[data-dir=rtl]{border-left:1px solid rgba(243,242,241,.1)}.theme__light #list-menu[data-dir=ltr]{border-right:1px solid rgba(12,13,14,.1)}.theme__light #list-menu[data-dir=rtl]{border-left:1px solid rgba(12,13,14,.1)}#list-side{position:relative}.list-section__item{margin:auto;padding:.25rem 0;width:95%;border-radius:.2rem}.list-section__item--link{display:inline-block;font-size:1rem;font-family:montserrat,sans-serif;margin-top:.5rem;margin-bottom:.125rem}.list-section__item--desc{font-size:1rem;margin:.25rem 0}.theme__dark .blog{background-color:#2d2a2e}.theme__light .blog{background-color:#fff}.theme__dark .blog__bg{background-color:#2d2a2e}.theme__light .blog__bg{background-color:#fff}.blog__header{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.blog .subtitle{margin:.25rem 0} \ No newline at end of file
+.theme__light .chroma{background-color:#f5f2f0}.theme__light .chroma .err{color:#a61717;background-color:#e3d2d2}.theme__light .chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.theme__light .chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:auto;overflow:auto;display:block}.theme__light .chroma .hl{display:block;width:100%;background-color:#ffc}.theme__light .chroma .lnt{padding:0 .4em;color:#728fcb}.theme__light .chroma .ln{padding:0 .4em;color:#728fcb}.theme__light .chroma .k{color:#728fcb;font-weight:700}.theme__light .chroma .kc{color:#728fcb;font-weight:700}.theme__light .chroma .kd{color:#728fcb;font-weight:700}.theme__light .chroma .kn{color:#728fcb;font-weight:700}.theme__light .chroma .kp{color:#728fcb;font-weight:700}.theme__light .chroma .kr{color:#728fcb;font-weight:700}.theme__light .chroma .kt{color:#458;font-weight:700}.theme__light .chroma .na{color:#896724}.theme__light .chroma .nb{color:#0086b3}.theme__light .chroma .bp{color:#b6ad9a}.theme__light .chroma .nc{color:#458;font-weight:700}.theme__light .chroma .no{color:#896724}.theme__light .chroma .nd{color:#3c5d5d;font-weight:700}.theme__light .chroma .ni{color:#728fcb}.theme__light .chroma .ne{color:#b29762;font-weight:700}.theme__light .chroma .nf{color:#b29762;font-weight:700}.theme__light .chroma .nl{color:#b29762;font-weight:700}.theme__light .chroma .nn{color:#555}.theme__light .chroma .nt{color:#063289}.theme__light .chroma .nv{color:#896724}.theme__light .chroma .vc{color:#896724}.theme__light .chroma .vg{color:#896724}.theme__light .chroma .vi{color:#896724}.theme__light .chroma .s{color:#728fcb}.theme__light .chroma .sa{color:#728fcb}.theme__light .chroma .sb{color:#728fcb}.theme__light .chroma .sc{color:#728fcb}.theme__light .chroma .dl{color:#728fcb}.theme__light .chroma .sd{color:#728fcb}.theme__light .chroma .s2{color:#728fcb}.theme__light .chroma .se{color:#728fcb}.theme__light .chroma .sh{color:#728fcb}.theme__light .chroma .si{color:#728fcb}.theme__light .chroma .sx{color:#728fcb}.theme__light .chroma .sr{color:#009926}.theme__light .chroma .s1{color:#728fcb}.theme__light .chroma .ss{color:#990073}.theme__light .chroma .m{color:#099}.theme__light .chroma .mb{color:#099}.theme__light .chroma .mf{color:#099}.theme__light .chroma .mh{color:#099}.theme__light .chroma .mi{color:#099}.theme__light .chroma .il{color:#099}.theme__light .chroma .mo{color:#099}.theme__light .chroma .o{color:#728fcb;font-weight:700}.theme__light .chroma .ow{color:#728fcb;font-weight:700}.theme__light .chroma .c{color:#b6ad9a;font-style:italic}.theme__light .chroma .ch{color:#b6ad9a;font-style:italic}.theme__light .chroma .cm{color:#b6ad9a;font-style:italic}.theme__light .chroma .c1{color:#b6ad9a;font-style:italic}.theme__light .chroma .cs{color:#b6ad9a;font-weight:700;font-style:italic}.theme__light .chroma .cp{color:#b6ad9a;font-weight:700;font-style:italic}.theme__light .chroma .cpf{color:#b6ad9a;font-weight:700;font-style:italic}.theme__light .chroma .gd{color:#728fcb;background-color:#fdd}.theme__light .chroma .ge{color:#728fcb;font-style:italic}.theme__light .chroma .gr{color:#a00}.theme__light .chroma .gh{color:#b6ad9a}.theme__light .chroma .gi{color:#728fcb;background-color:#dfd}.theme__light .chroma .go{color:#888}.theme__light .chroma .gp{color:#555}.theme__light .chroma .gs{font-weight:700}.theme__light .chroma .gu{color:#aaa}.theme__light .chroma .gt{color:#a00}.theme__light .chroma .gl{text-decoration:underline}.theme__light .chroma .w{color:#bbb}.theme__light .chroma .p{color:#b6ad9a}.theme__dark .chroma{color:#f8f8f2;background-color:#282a36}.theme__dark .chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.theme__dark .chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:auto;overflow:auto;display:block}.theme__dark .chroma .hl{display:block;width:100%;background-color:#000}.theme__dark .chroma .lnt{padding:0 .4em;color:#7f7f7f}.theme__dark .chroma .ln{padding:0 .4em;color:#7f7f7f}.theme__dark .chroma .k{color:#ff79c6}.theme__dark .chroma .kc{color:#ff79c6}.theme__dark .chroma .kd{color:#8be9fd;font-style:italic}.theme__dark .chroma .kn{color:#ff79c6}.theme__dark .chroma .kp{color:#ff79c6}.theme__dark .chroma .kr{color:#ff79c6}.theme__dark .chroma .kt{color:#8be9fd}.theme__dark .chroma .na{color:#50fa7b}.theme__dark .chroma .nb{color:#8be9fd;font-style:italic}.theme__dark .chroma .nc{color:#50fa7b}.theme__dark .chroma .nf{color:#50fa7b}.theme__dark .chroma .nl{color:#8be9fd;font-style:italic}.theme__dark .chroma .nt{color:#ff79c6}.theme__dark .chroma .nv{color:#8be9fd;font-style:italic}.theme__dark .chroma .vc{color:#8be9fd;font-style:italic}.theme__dark .chroma .vg{color:#8be9fd;font-style:italic}.theme__dark .chroma .vi{color:#8be9fd;font-style:italic}.theme__dark .chroma .s{color:#f1fa8c}.theme__dark .chroma .sa{color:#f1fa8c}.theme__dark .chroma .sb{color:#f1fa8c}.theme__dark .chroma .sc{color:#f1fa8c}.theme__dark .chroma .dl{color:#f1fa8c}.theme__dark .chroma .sd{color:#f1fa8c}.theme__dark .chroma .s2{color:#f1fa8c}.theme__dark .chroma .se{color:#f1fa8c}.theme__dark .chroma .sh{color:#f1fa8c}.theme__dark .chroma .si{color:#f1fa8c}.theme__dark .chroma .sx{color:#f1fa8c}.theme__dark .chroma .sr{color:#f1fa8c}.theme__dark .chroma .s1{color:#f1fa8c}.theme__dark .chroma .ss{color:#f1fa8c}.theme__dark .chroma .m{color:#bd93f9}.theme__dark .chroma .mb{color:#bd93f9}.theme__dark .chroma .mf{color:#bd93f9}.theme__dark .chroma .mh{color:#bd93f9}.theme__dark .chroma .mi{color:#bd93f9}.theme__dark .chroma .il{color:#bd93f9}.theme__dark .chroma .mo{color:#bd93f9}.theme__dark .chroma .o{color:#ff79c6}.theme__dark .chroma .ow{color:#ff79c6}.theme__dark .chroma .c{color:#6272a4}.theme__dark .chroma .ch{color:#6272a4}.theme__dark .chroma .cm{color:#6272a4}.theme__dark .chroma .c1{color:#6272a4}.theme__dark .chroma .cs{color:#6272a4}.theme__dark .chroma .cp{color:#ff79c6}.theme__dark .chroma .cpf{color:#ff79c6}.theme__dark .chroma .gd{color:#8b080b}.theme__dark .chroma .ge{text-decoration:underline}.theme__dark .chroma .gh{font-weight:700}.theme__dark .chroma .gi{font-weight:700}.theme__dark .chroma .go{color:#44475a}.theme__dark .chroma .gu{font-weight:700}.theme__dark .chroma .gl{text-decoration:underline}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}.theme__dark a{text-decoration:none;color:#ffd866}.theme__dark a:hover,.theme__dark a:active,.theme__dark a:focus{color:#ff6188;text-decoration:underline}.theme__light a{text-decoration:none;color:#007d9c}.theme__light a:hover,.theme__light a:active,.theme__light a:focus{color:#00acd7;text-decoration:underline}/*!minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css*/html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}ul{list-style:none}hr{border:0}button,input,select,textarea{margin:0}img,video{height:auto;max-width:100%;object-fit:inherit}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:left}b,strong{font-weight:700}dfn{font-style:italic}figcaption{font-style:italic;font-size:.9rem;margin:.5rem 1rem 1rem}pre{white-space:pre;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}/*!Generated by Font Squirrel (https://www.fontsquirrel.com) on October 26, 2019*/@font-face{font-family:montserrat;src:url(../fonts/montserrat-regular.woff2)format("woff2"),url(../fonts/montserrat-regular.woff)format("woff");font-weight:400;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:montserrat;src:url(../fonts/montserrat-bold.woff2)format("woff2"),url(../fonts/montserrat-bold.woff)format("woff");font-weight:700;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:montserrat;src:url(../fonts/montserrat-black.woff2)format("woff2"),url(../fonts/montserrat-black.woff)format("woff");font-weight:900;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:200;src:local("Muli Extra Light "),local("Muli-Extra Light"),url(../fonts/muli-latin-200.woff2)format("woff2"),url(../fonts/muli-latin-200.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:200;src:local("Muli Extra Light italic"),local("Muli-Extra Lightitalic"),url(../fonts/muli-latin-200italic.woff2)format("woff2"),url(../fonts/muli-latin-200italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:300;src:local("Muli Light "),local("Muli-Light"),url(../fonts/muli-latin-300.woff2)format("woff2"),url(../fonts/muli-latin-300.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:300;src:local("Muli Light italic"),local("Muli-Lightitalic"),url(../fonts/muli-latin-300italic.woff2)format("woff2"),url(../fonts/muli-latin-300italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:400;src:local("Muli Regular "),local("Muli-Regular"),url(../fonts/muli-latin-400.woff2)format("woff2"),url(../fonts/muli-latin-400.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:400;src:local("Muli Regular italic"),local("Muli-Regularitalic"),url(../fonts/muli-latin-400italic.woff2)format("woff2"),url(../fonts/muli-latin-400italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:600;src:local("Muli SemiBold "),local("Muli-SemiBold"),url(../fonts/muli-latin-600.woff2)format("woff2"),url(../fonts/muli-latin-600.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:600;src:local("Muli SemiBold italic"),local("Muli-SemiBolditalic"),url(../fonts/muli-latin-600italic.woff2)format("woff2"),url(../fonts/muli-latin-600italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:700;src:local("Muli Bold "),local("Muli-Bold"),url(../fonts/muli-latin-700.woff2)format("woff2"),url(../fonts/muli-latin-700.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:700;src:local("Muli Bold italic"),local("Muli-Bolditalic"),url(../fonts/muli-latin-700italic.woff2)format("woff2"),url(../fonts/muli-latin-700italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:800;src:local("Muli ExtraBold "),local("Muli-ExtraBold"),url(../fonts/muli-latin-800.woff2)format("woff2"),url(../fonts/muli-latin-800.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:800;src:local("Muli ExtraBold italic"),local("Muli-ExtraBolditalic"),url(../fonts/muli-latin-800italic.woff2)format("woff2"),url(../fonts/muli-latin-800italic.woff)format("woff")}@font-face{font-family:muli;font-style:normal;font-display:swap;font-weight:900;src:local("Muli Black "),local("Muli-Black"),url(../fonts/muli-latin-900.woff2)format("woff2"),url(../fonts/muli-latin-900.woff)format("woff")}@font-face{font-family:muli;font-style:italic;font-display:swap;font-weight:900;src:local("Muli Black italic"),local("Muli-Blackitalic"),url(../fonts/muli-latin-900italic.woff2)format("woff2"),url(../fonts/muli-latin-900italic.woff)format("woff")}.clearfix::after{clear:both;content:'';display:table}.capitalize{text-transform:capitalize}.hide{display:none}.grow{-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.flexcolumn{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.jc-center{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.ai-center{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.flex-wrap{-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{font-size:1rem;font-family:muli,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif}code,pre{font-size:.85rem;font-family:Consolas,Monaco,Menlo,dejavu sans mono,bitstream vera sans mono,courier new,lucida console,lucida sans typewriter,liberation mono,nimbus mono l,Monaco,Courier,monospace}.h1{font-size:4rem}.h2{font-size:3.5rem}.h3{font-size:3rem}.h4{font-size:2.5rem}.h5{font-size:2rem}.h6{font-size:1.5rem}.p1{font-size:1.2rem}.p2{font-size:1rem}.caption{font-size:.8rem}@-webkit-keyframes slide-in-down{0%{transform:translate(0,-12%);opacity:0}100%{transform:translate(0,0);opacity:1}}@-moz-keyframes slide-in-down{0%{transform:translate(0,-12%);opacity:0}100%{transform:translate(0,0);opacity:1}}@-ms-keyframes slide-in-down{0%{transform:translate(0,-12%);opacity:0}100%{transform:translate(0,0);opacity:1}}@-o-keyframes slide-in-down{0%{transform:translate(0,-12%);opacity:0}100%{transform:translate(0,0);opacity:1}}@keyframes slide-in-down{0%{transform:translate(0,-12%);opacity:0}100%{transform:translate(0,0);opacity:1}}@-webkit-keyframes slide-in-left{0%{transform:translate(-12%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}@-moz-keyframes slide-in-left{0%{transform:translate(-12%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}@-ms-keyframes slide-in-left{0%{transform:translate(-12%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}@-o-keyframes slide-in-left{0%{transform:translate(-12%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}@keyframes slide-in-left{0%{transform:translate(-12%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}.menu{position:-webkit-sticky;position:sticky;top:50px;padding:.5rem;margin:.5rem;margin-top:0;padding-top:.85rem;height:calc(100vh - $grid-nav-height);overflow-y:auto;z-index:9}@media only screen and (max-width:600px){.menu{top:0}}.menu__label{font-family:montserrat,sans-serif;font-size:1rem;margin:.65rem 0;padding-bottom:.5rem;text-transform:capitalize}@media only screen and (max-width:600px){.menu__label{text-align:center;font-size:1.125rem}}.menu__title{cursor:pointer;position:relative;word-break:break-word;font-size:.925rem;height:30px;margin:.25rem 0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.menu__title[data-depth="1"]{font-size:.925rem;margin-left:1.25rem}.menu__title[data-depth="2"]{font-size:.925rem;margin-left:2.5rem}.menu__title[data-depth="3"]{font-size:.925rem;margin-left:3.75rem}.menu__title[data-depth="4"]{font-size:.925rem;margin-left:5rem}.theme__dark .menu__title{color:#fcfcfa}.theme__dark .menu__title.active{font-weight:700;color:#aed581}.theme__light .menu__title{color:#242729}.theme__light .menu__title.active{font-weight:700;color:#007d9c}.menu__title--collapse{cursor:pointer;word-break:break-word;font-size:16px;height:30px;margin:.25rem 0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.menu__title--collapse[data-depth="1"]{font-size:.925rem;margin-left:1.25rem}.menu__title--collapse[data-depth="2"]{font-size:.925rem;margin-left:2.5rem}.menu__title--collapse[data-depth="3"]{font-size:.925rem;margin-left:3.75rem}.menu__title--collapse[data-depth="4"]{font-size:.925rem;margin-left:5rem}.theme__dark .menu__title--collapse{color:#fcfcfa}.theme__dark .menu__title--collapse.active svg{color:#aed581}.theme__light .menu__title--collapse{color:#242729}.theme__light .menu__title--collapse.active svg{color:#007d9c}.theme__dark .menu__title--collapse:hover,.theme__dark .menu__title--collapse:active,.theme__dark .menu__title--collapse:focus{color:#ff6188}.theme__dark .menu__title--collapse:hover svg,.theme__dark .menu__title--collapse:active svg,.theme__dark .menu__title--collapse:focus svg{color:#ff6188;-webkit-transform:translateX(.125rem);-moz-transform:translateX(.125rem);-ms-transform:translateX(.125rem);transform:translateX(.125rem)}.theme__light .menu__title--collapse:hover,.theme__light .menu__title--collapse:active,.theme__light .menu__title--collapse:focus{color:#00acd7}.theme__light .menu__title--collapse:hover svg,.theme__light .menu__title--collapse:active svg,.theme__light .menu__title--collapse:focus svg{color:#00acd7;-webkit-transform:translateX(.125rem);-moz-transform:translateX(.125rem);-ms-transform:translateX(.125rem);transform:translateX(.125rem)}.menu__title--icon{margin-top:2px}.theme__dark .menu__title--icon{color:#fcfcfa}.theme__light .menu__title--icon{color:#535a61}.menu__title--icon.down{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.menu__title--icon.downrtl{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.menu__title--icon.right{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.menu__title--icon svg{display:block;margin:auto 0;-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.menu__alone{cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.menu__list{max-height:0;overflow:hidden;word-wrap:break-word;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.menu__list li{margin-left:1.25rem}.menu__list li.active{font-weight:700}.menu .active{max-height:100%}.theme__dark .menu li.active a{font-weight:700}.theme__light .menu li.active a{font-weight:700}.toc{position:-webkit-sticky;position:sticky;top:50px;padding:.5rem;margin:.5rem;margin-top:0;padding-top:1.25rem;height:calc(100vh - $grid-nav-height);overflow-y:auto;font-size:.85rem;z-index:4;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.toc #TableOfContents{position:relative}.toc__label{font-family:montserrat,sans-serif;font-size:1rem;margin-top:.65rem;margin-bottom:1rem;margin-left:1.25rem;padding-bottom:.5rem}.theme__dark .toc a{color:#aaa;position:relative}.theme__dark .toc a:hover,.theme__dark .toc a:active,.theme__dark .toc a:focus{color:#ff6188}.theme__dark .toc a.active{color:#aed581}.theme__dark .toc a.active::before{background-color:#aed581;content:'';height:11px;left:-8px;margin:.25rem 0;position:absolute;width:2px}.theme__dark .toc a.active::before:last-child{background-color:transparent}.theme__light .toc a{color:#919191;position:relative}.theme__light .toc a:hover,.theme__light .toc a:active,.theme__light .toc a:focus{color:#00acd7}.theme__light .toc a.active{color:#007d9c}.theme__light .toc a.active::before{background-color:#007d9c;content:'';height:11px;left:-8px;margin:.25rem 0;position:absolute;width:2px}.theme__light .toc a.active::before:last-child{background-color:transparent}.toc ul li li{margin-left:.85rem}.expand__content #TableOfContents ul{list-style-type:circle}.search{height:30px;width:240px;position:relative;border-radius:.175rem;z-index:10;margin:0 .75rem;-webkit-box-shadow:0 0 0 3px transparent;-moz-box-shadow:0 0 0 3px transparent;box-shadow:0 0 0 3px transparent;-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;-ms-transition:all .2s ease-in;-o-transition:all .2s ease-in;transition:all .2s ease-in;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.theme__dark .search[data-bgimg=true]{border:2px solid transparent;background-color:transparent}.theme__dark .search[data-bgimg=true]:focus-within{background-color:#4d4a4e;border:2px solid #424242;-webkit-box-shadow:0 0 0 3px rgba(166,166,166,.45);-moz-box-shadow:0 0 0 3px rgba(166,166,166,.45);box-shadow:0 0 0 3px rgba(166,166,166,.45)}.theme__light .search[data-bgimg=true]{border:2px solid transparent;background-color:transparent}.theme__light .search[data-bgimg=true]:focus-within{background-color:#fff;border:2px solid #b0bec5;-webkit-box-shadow:0 0 0 3px rgba(207,216,220,.6);-moz-box-shadow:0 0 0 3px rgba(207,216,220,.6);box-shadow:0 0 0 3px rgba(207,216,220,.6)}.theme__dark .search[data-bgimg=false]{border:2px solid #383838;background-color:#4d4a4e}.theme__dark .search[data-bgimg=false]:focus-within{border:2px solid #424242;-webkit-box-shadow:0 0 0 3px rgba(166,166,166,.45);-moz-box-shadow:0 0 0 3px rgba(166,166,166,.45);box-shadow:0 0 0 3px rgba(166,166,166,.45)}.theme__light .search[data-bgimg=false]{border:2px solid #e0e0e0;background-color:#fff}.theme__light .search[data-bgimg=false]:focus-within{border:2px solid #b0bec5;-webkit-box-shadow:0 0 0 3px rgba(207,216,220,.6);-moz-box-shadow:0 0 0 3px rgba(207,216,220,.6);box-shadow:0 0 0 3px rgba(207,216,220,.6)}@media only screen and (max-width:1280px){.search{width:170px}}@media only screen and (max-width:960px){.search{display:none}}.search .icon{padding:.45rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.theme__dark .search .icon{color:#999}.theme__light .search .icon{color:#aaa}.search .input{width:100%;font-size:.9rem;border:none;outline:none;padding-right:1rem}.theme__dark .search .input{color:#fcfcfa;background-color:inherit}.theme__dark .search .input.placeholder{color:#999}.theme__dark .search .input:-moz-placeholder{color:#999}.theme__dark .search .input::-moz-placeholder{color:#999}.theme__dark .search .input:-ms-input-placeholder{color:#999}.theme__dark .search .input::-webkit-input-placeholder{color:#999}.theme__light .search .input{color:#242729;background-color:inherit}.theme__light .search .input.placeholder{color:#aaa}.theme__light .search .input:-moz-placeholder{color:#aaa}.theme__light .search .input::-moz-placeholder{color:#aaa}.theme__light .search .input:-ms-input-placeholder{color:#aaa}.theme__light .search .input::-webkit-input-placeholder{color:#aaa}.search-content{margin-top:.25rem;max-height:350px;width:325px;overflow:auto}.search-content a{text-decoration:none!important}.theme__dark .search__highlight{color:#ff6188}.theme__light .search__highlight{color:#ff6188}.search-result{position:absolute;width:100%;height:calc(100% - 8px);z-index:16;margin:4px 0}.theme__dark .search-result{background-color:#2d2a2e}.theme__light .search-result{background-color:#fff}.search-result[data-display=block]{display:block}.search-result[data-display=none]{display:none}.search-result__close{position:absolute;right:.25rem;top:.25rem;cursor:pointer}.theme__dark .search-result__close{color:#fcfcfa}.theme__dark .search-result__close:hover,.theme__dark .search-result__close:active,.theme__dark .search-result__close:focus{color:#aed581}.theme__light .search-result__close{color:#242729}.theme__light .search-result__close:hover,.theme__light .search-result__close:active,.theme__light .search-result__close:focus{color:#007d9c}.search-result__body{margin-top:2.25rem;padding:0 1rem;position:relative;display:block;overflow:auto;height:calc(100% - 3rem)}.theme__dark .search-result__body{scrollbar-width:thin;scrollbar-color:#888 #eee}.theme__dark .search-result__body::-webkit-scrollbar{width:.45em;height:.45em}.theme__dark .search-result__body::-webkit-scrollbar-thumb{background:#888}.theme__dark .search-result__body::-webkit-scrollbar-track{background:#eee}.theme__light .search-result__body{scrollbar-width:thin;scrollbar-color:#cfd8dc #fcfcfa}.theme__light .search-result__body::-webkit-scrollbar{width:.45em;height:.45em}.theme__light .search-result__body::-webkit-scrollbar-thumb{background:#cfd8dc}.theme__light .search-result__body::-webkit-scrollbar-track{background:#fcfcfa}.search-result__item{padding:1rem 0}.theme__dark .search-result__item{border-bottom:2px dashed #595b5c}.theme__dark .search-result__item--title{font-family:montserrat,sans-serif;font-size:1rem;margin:.25rem 0;color:#fcfcfa}.theme__dark .search-result__item--title::before{content:"📋 "}.theme__dark .search-result__item--desc{font-size:.9rem;margin:.25rem 0;color:#fcfcfa}.theme__light .search-result__item{border-bottom:2px dashed #bdbdbd}.theme__light .search-result__item--title{font-family:montserrat,sans-serif;font-size:1rem;margin:.25rem 0;color:#424242}.theme__light .search-result__item--title::before{content:"📋 "}.theme__light .search-result__item--desc{font-size:.9rem;margin:.25rem 0;color:#242729}.menu-item{padding:.25rem}.menu-item__title{font-size:1rem}.theme__dark .menu-item__title{color:#fcfcfa}.theme__light .menu-item__title{color:#242729}.menu-item__desc{font-size:.8rem;padding:.25rem .5rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:325px}#search-results.dd{display:none;z-index:16}#search-results.dd.is-active{display:inline-block;position:absolute;top:40px;right:0;width:325px;border-radius:.175rem;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);-moz-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);box-shadow:0 1px 3px 0 rgba(0,0,0,.4)}.theme__dark #search-results.dd.is-active{background-color:#212121}.theme__light #search-results.dd.is-active{background-color:#f7f8f9}#search-results .dd-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.theme__dark #search-results .dd-content{background-color:#4d4a4e;scrollbar-width:thin;scrollbar-color:#888 #eee}.theme__dark #search-results .dd-content::-webkit-scrollbar{width:.45em;height:.45em}.theme__dark #search-results .dd-content::-webkit-scrollbar-thumb{background:#888}.theme__dark #search-results .dd-content::-webkit-scrollbar-track{background:#eee}.theme__light #search-results .dd-content{background-color:#f1f1f1;scrollbar-width:thin;scrollbar-color:#cfd8dc #fcfcfa}.theme__light #search-results .dd-content::-webkit-scrollbar{width:.45em;height:.45em}.theme__light #search-results .dd-content::-webkit-scrollbar-thumb{background:#cfd8dc}.theme__light #search-results .dd-content::-webkit-scrollbar-track{background:#fcfcfa}#search-results .dd-item{width:100%;font-size:1rem;padding:.35rem .6rem}#search-results .dd-item:hover,#search-results .dd-item:active,#search-results .dd-item:focus{border-bottom-left-radius:.1rem;border-bottom-right-radius:.1rem}.theme__dark #search-results .dd-item:hover,.theme__dark #search-results .dd-item:active,.theme__dark #search-results .dd-item:focus{background-color:#403e41}.theme__light #search-results .dd-item:hover,.theme__light #search-results .dd-item:active,.theme__light #search-results .dd-item:focus{background-color:#eaeaea}.theme__dark #search-results .dd-item.is-active{background-color:#403e41}.theme__light #search-results .dd-item.is-active{background-color:#eaeaea}.mobile-search{position:absolute;left:0;top:0;width:100%;z-index:18;overflow:hidden}.theme__dark .mobile-search ::-webkit-scrollbar{width:.45em;height:.45em}.theme__dark .mobile-search ::-webkit-scrollbar-thumb{background:#888}.theme__dark .mobile-search ::-webkit-scrollbar-track{background:#eee}.theme__light .mobile-search ::-webkit-scrollbar{width:.45em;height:.45em}.theme__light .mobile-search ::-webkit-scrollbar-thumb{background:#cfd8dc}.theme__light .mobile-search ::-webkit-scrollbar-track{background:#fcfcfa}.mobile-search__top{width:100%;text-align:right;position:relative;height:50px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.theme__dark .mobile-search__top{background-color:#403e41}.theme__light .mobile-search__top{background-color:#fafafa}.mobile-search__top--icon{width:50px;cursor:pointer;position:absolute;right:0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .mobile-search__top--icon:hover,.theme__dark .mobile-search__top--icon:active,.theme__dark .mobile-search__top--icon:focus{color:#aed581}.theme__light .mobile-search__top--icon:hover,.theme__light .mobile-search__top--icon:active,.theme__light .mobile-search__top--icon:focus{color:#007d9c}.mobile-search__top--input{width:calc(100% - 70px);height:70%;outline:none;border:none;border-radius:.25rem;padding:0 1rem;font-size:1.1rem}.theme__dark .mobile-search__top--input{color:#fcfcfa;background-color:#403e41}.theme__dark .mobile-search__top--input.placeholder{color:#999}.theme__dark .mobile-search__top--input:-moz-placeholder{color:#999}.theme__dark .mobile-search__top--input::-moz-placeholder{color:#999}.theme__dark .mobile-search__top--input:-ms-input-placeholder{color:#999}.theme__dark .mobile-search__top--input::-webkit-input-placeholder{color:#999}.theme__light .mobile-search__top--input{color:#242729;background-color:#fafafa}.theme__light .mobile-search__top--input.placeholder{color:#aaa}.theme__light .mobile-search__top--input:-moz-placeholder{color:#aaa}.theme__light .mobile-search__top--input::-moz-placeholder{color:#aaa}.theme__light .mobile-search__top--input:-ms-input-placeholder{color:#aaa}.theme__light .mobile-search__top--input::-webkit-input-placeholder{color:#aaa}.mobile-search__body{width:100%;height:calc(100vh - $grid-nav-height);overflow:auto}.theme__dark .mobile-search__body{color:#fcfcfa;background-color:#2d2a2e;scrollbar-width:thin;scrollbar-color:#888 #eee}.theme__light .mobile-search__body{color:#242729;background-color:#fff;scrollbar-width:thin;scrollbar-color:#cfd8dc #fcfcfa}.mobile-search__btn{width:100%;z-index:11;background-color:transparent;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .mobile-search__btn:hover,.theme__dark .mobile-search__btn:active,.theme__dark .mobile-search__btn:focus{color:#aed581}.theme__light .mobile-search__btn:hover,.theme__light .mobile-search__btn:active,.theme__light .mobile-search__btn:focus{color:#007d9c}.theme__dark .mobile-search__content{background-color:#4d4a4e}.theme__light .mobile-search__content{background-color:#f1f1f1}.mobile-search__content a{text-decoration:none!important}.mobile-search__item{padding:.5rem;list-style-type:none}.mobile-search__item--title{font-size:1.2rem}.theme__dark .mobile-search__item--title{color:#fcfcfa}.theme__light .mobile-search__item--title{color:#242729}.mobile-search__item--title::before{content:"📋 "}.mobile-search__item--desc{font-size:.9rem;padding:.25rem .5rem}.theme__dark .mobile-search__item:hover,.theme__dark .mobile-search__item:active,.theme__dark .mobile-search__item:focus{background-color:#403e41}.theme__light .mobile-search__item:hover,.theme__light .mobile-search__item:active,.theme__light .mobile-search__item:focus{background-color:#eaeaea}.dropdown{position:relative;display:inline-block;height:100%}.dropdown-content{display:none;position:absolute;z-index:17}.dropdown-content a{padding:.3rem .5rem;text-decoration:none;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:120px}.dropdown:hover .dropdown-content{display:block}.drawer{position:fixed;top:0;left:-100%;z-index:19;width:240px;height:100%;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-ms-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.theme__dark .drawer{background-color:#2d2a2e}.theme__light .drawer{background-color:#fff}.drawer__header{height:50px;width:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.theme__dark .drawer__header{background-color:#403e41;box-shadow:0 1px 0 rgba(12,13,14,.1),0 1px 6px rgba(60,65,70,.1)}.theme__light .drawer__header{background-color:#fafafa;box-shadow:0 1px 0 rgba(12,13,14,.1),0 1px 6px rgba(60,65,70,.1)}.drawer__header--text{width:100%;height:100%;padding:1rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;-ms-flex-pack:flex-start}.theme__dark .drawer__header--text{color:#fcfcfa}.theme__light .drawer__header--text{color:#424242}.drawer__body{height:100%;width:100%;overflow-y:auto}.drawer__close{width:50px;height:100%;cursor:pointer;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .drawer__close{color:#fcfcfa}.theme__dark .drawer__close:hover,.theme__dark .drawer__close:active,.theme__dark .drawer__close:focus{color:#aed581}.theme__light .drawer__close{color:#242729}.theme__light .drawer__close:hover,.theme__light .drawer__close:active,.theme__light .drawer__close:focus{color:#007d9c}.modal{position:fixed;z-index:18;left:-100%;top:0;right:0;bottom:0;width:100%;height:100%;overflow:hidden;opacity:0;background:rgba(0,0,0,.6);-webkit-transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-ms-transition:opacity .25s ease-in-out;-o-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}.lang{width:100%;font-size:17.2px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.lang__dropdown{outline:none;cursor:pointer;border:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.lang__dropdown--content{padding:.25rem 0;max-width:120px;border-radius:.175rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:120px;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);-moz-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);box-shadow:0 1px 3px 0 rgba(0,0,0,.4)}.theme__dark .lang__dropdown--content{background-color:#595b5c}.theme__dark .lang__dropdown--content a{text-decoration:none;color:#fcfcfa}.theme__dark .lang__dropdown--content a:hover,.theme__dark .lang__dropdown--content a:active,.theme__dark .lang__dropdown--content a:focus{color:inherit;background-color:#727072}.theme__dark .lang__dropdown--content a.active{font-weight:700;color:#aed581;background-color:#424242}.theme__light .lang__dropdown--content{background-color:#fff}.theme__light .lang__dropdown--content a{text-decoration:none;color:#242729}.theme__light .lang__dropdown--content a:hover,.theme__light .lang__dropdown--content a:active,.theme__light .lang__dropdown--content a:focus{color:inherit;background-color:rgba(225,225,225,.4)}.theme__light .lang__dropdown--content a.active{font-weight:700;color:#007d9c;background-color:#e0e0e0}.lang__dropdown--item{padding:.25rem .75rem;width:100%;height:100%;text-decoration:none;display:block;font-size:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:120px}.breadcrumb{position:relative}.breadcrumb[data-is-blog=true]{margin:1.5rem 1rem 0;padding-bottom:1.5rem}.theme__dark .breadcrumb[data-is-blog=true]{border-bottom:1px solid #595b5c;background-color:#2d2a2e}.theme__light .breadcrumb[data-is-blog=true]{border-bottom:1px solid #bdbdbd;background-color:#fff}.breadcrumb[data-is-blog=false]{margin:auto 1rem;padding:.5rem 0}.breadcrumb ol{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.breadcrumb li{display:inline;font-size:.9rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:300px}.theme__dark .breadcrumb li a:hover,.theme__dark .breadcrumb li a:active,.theme__dark .breadcrumb li a:focus{color:#ff6188}.theme__light .breadcrumb li a:hover,.theme__light .breadcrumb li a:active,.theme__light .breadcrumb li a:focus{color:#00acd7}.breadcrumb li+li:before{padding:.5rem;content:"»"}.pagination{border-radius:.25rem;margin:2rem 1rem;padding:.5rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.pagination li{border-radius:.25rem}.theme__dark .pagination li.disabled a:hover,.theme__dark .pagination li.disabled a:active,.theme__dark .pagination li.disabled a:focus{color:#fcfcfa;text-decoration:none}.theme__light .pagination li.disabled a:hover,.theme__light .pagination li.disabled a:active,.theme__light .pagination li.disabled a:focus{color:#757575;text-decoration:none}.pagination li.active{font-weight:700}.theme__dark .pagination li.active a{color:#ff6188;border-bottom:5px solid #fcfcfa}.theme__light .pagination li.active a{color:#00acd7;border-bottom:5px solid #757575}.pagination a{font-size:1.25rem;padding:.5rem .75rem}.theme__dark .pagination a{color:#fcfcfa}.theme__dark .pagination a:hover,.theme__dark .pagination a:active,.theme__dark .pagination a:focus{color:#ff6188}.theme__light .pagination a{color:#757575}.theme__light .pagination a:hover,.theme__light .pagination a:active,.theme__light .pagination a:focus{color:#00acd7}.pagination-single{margin:1rem 0;padding-top:.75rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.pagination-single__left,.pagination-single__right{padding:.25rem;border-radius:.125rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:769px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .pagination-single__left,.theme__dark .pagination-single__right{color:#fcfcfa}.theme__light .pagination-single__left,.theme__light .pagination-single__right{color:#535a61}.pagination-single__left-title,.pagination-single__right-title{font-size:16.8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:769px}.pagination-single__icon{border-radius:100%;margin:0 .5rem;color:inherit}.pagination-single__icon svg{display:block;margin:auto}.button{border:none;outline:none;padding:.75rem;border-radius:.25rem;text-decoration:none;cursor:pointer;-webkit-transition:all .15s ease-in;-moz-transition:all .15s ease-in;-ms-transition:all .15s ease-in;-o-transition:all .15s ease-in;transition:all .15s ease-in}.theme__dark .button[data-color=default]{color:#2d2a2e;border:1px solid #a6a6a6;background-color:#ccc}.theme__dark .button[data-color=default]:hover,.theme__dark .button[data-color=default]:active,.theme__dark .button[data-color=default]:focus{color:#2d2a2e;border:1px solid #a6a6a6;background-color:#e0e0e0}.theme__light .button[data-color=default]{color:#fff;border:1px solid #303438;background-color:#535a61}.theme__light .button[data-color=default]:hover,.theme__light .button[data-color=default]:active,.theme__light .button[data-color=default]:focus{color:#fff;border:1px solid #303438;background-color:#666e77}.theme__dark .button[data-color=primary]{color:#2d2a2e;border:1px solid #89c248;background-color:#aed581}.theme__dark .button[data-color=primary]:hover,.theme__dark .button[data-color=primary]:active,.theme__dark .button[data-color=primary]:focus{color:#2d2a2e;border:1px solid #89c248;background-color:#c2dfa0}.theme__light .button[data-color=primary]{color:#fff;border:1px solid #004050;background-color:#007d9c}.theme__light .button[data-color=primary]:hover,.theme__light .button[data-color=primary]:active,.theme__light .button[data-color=primary]:focus{color:#fff;border:1px solid #004050;background-color:#009ec5}.editBtn{border:none;outline:none;padding:.75rem;margin:0 .5rem;text-decoration:none;cursor:pointer;font-family:montserrat,sans-serif;background-color:transparent}.theme__dark .editBtn{color:#ccc}.theme__dark .editBtn:hover,.theme__dark .editBtn:active,.theme__dark .editBtn:focus{color:#fcfcfa;background-color:#727072}.theme__light .editBtn{color:#535a61}.theme__light .editBtn:hover,.theme__light .editBtn:active,.theme__light .editBtn:focus{color:#242729;background-color:rgba(225,225,225,.4)}@media only screen and (max-width:600px){.editBtn{display:none}}.summary-card{padding:1rem;padding-bottom:0;margin:2.5rem 0 2rem;position:relative}.theme__dark .summary-card{background-color:#2d2a2e}.theme__light .summary-card{background-color:#fff}.summary-card .title{text-align:center}.summary-card .title a{font-family:montserrat,sans-serif;font-weight:700;word-break:break-word}.theme__dark .summary-card .title a{color:#ffd866}.theme__dark .summary-card .title a:hover,.theme__dark .summary-card .title a:active,.theme__dark .summary-card .title a:focus{color:#ff6188}.theme__light .summary-card .title a{color:#007d9c}.theme__light .summary-card .title a:hover,.theme__light .summary-card .title a:active,.theme__light .summary-card .title a:focus{color:#00acd7}.summary-card .subtitle{padding:1rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.summary-card__links{font-size:.8rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.theme__dark .summary-card__links{background-color:#2d2a2e;border-bottom:1px solid #595b5c}.theme__light .summary-card__links{background-color:#fff;border-bottom:1px solid #bdbdbd}.summary-card__tag{margin-right:.5rem;margin-bottom:.35rem;padding:.125rem .25rem;border-top-left-radius:.15rem;border-top-right-radius:.15rem;cursor:pointer}.theme__dark .summary-card__tag{border:1px solid #595b5c;border-bottom:none}.theme__light .summary-card__tag{border:1px solid #bdbdbd;border-bottom:none}.summary-card__content{margin-bottom:1rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.summary-card__text{margin-top:1rem;line-height:1.7rem}.summary-card__image{width:100%;height:100%}.summary-card__image-wrapper{height:100%;width:auto;margin:0 auto;padding:1rem 0;padding-bottom:0}.summary-card__video{width:100%;max-height:500px;object-fit:contain}.summary-card__video-wrapper{padding:1rem;padding-bottom:0}.summary-card hr{margin-top:1.5rem}.theme__dark .summary-card hr{border-top:1px solid #595b5c}.theme__light .summary-card hr{border-top:1px solid #bdbdbd}.summary-card:not(:last-child) hr{margin-bottom:4rem}.summary-card:last-child hr{margin-bottom:2rem}.expand{position:relative;border-radius:.25rem}.expand__content{overflow:hidden;max-height:0;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-ms-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease}.expand__content li{font-size:15.2px;margin:0 0 .525rem 2rem!important}.expand__content li:first-child{margin-top:.25rem!important}.expand__content li li{font-size:14.4px;margin:0 0 .25rem 1.25rem!important}.expand__content--toc{font-family:montserrat,sans-serif;font-size:15.2px}.expand__content--toc li{list-style-type:'📂 '}.expand__content--toc li li{list-style-type:'📄 '}.expand__button{cursor:pointer;width:100%;padding:.5rem;text-align:left;outline:none;border:none;font-size:1rem;font-family:montserrat,sans-serif;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.theme__dark .expand__button{color:inherit;border-top:1px solid rgba(243,242,241,.1);background-color:#282529}.theme__dark .expand__button:hover,.theme__dark .expand__button:active,.theme__dark .expand__button:focus{background-color:#212121}.theme__light .expand__button{color:inherit;border-top:1px solid rgba(12,13,14,.1);background-color:#f7f8f9}.theme__light .expand__button:hover,.theme__light .expand__button:active,.theme__light .expand__button:focus{background-color:#eef0f2}.expand-label{cursor:pointer;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.expand-icon{padding-top:.125rem;padding-right:.5rem}.expand-icon__down{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.expand-icon__right{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:all .15s ease;-moz-transition:all .15s ease;-ms-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.theme__dark .bgcolor__header{background-color:#212121}.theme__dark .bgcolor__breadcrumb{background-color:#2d2a2e}.theme__light .bgcolor__header{background-color:#eee}.theme__light .bgcolor__breadcrumb{background-color:#fff}.tag{display:inline-block;padding:.2rem 0;width:100%;text-decoration:none!important}.theme__dark .tag{color:#e9e9da}.theme__dark .tag:hover,.theme__dark .tag:active,.theme__dark .tag:focus{color:#ff6188}.theme__light .tag{color:#292929}.theme__light .tag:hover,.theme__light .tag:active,.theme__light .tag:focus{color:#00acd7}.tag__wrapper{padding:.3rem 0;margin:auto 0}.tag__text{color:inherit}.tag__num{color:inherit}.tag-cloud{position:relative}.tag-cloud__label{font-family:montserrat,sans-serif;font-size:1rem;margin:3.5rem 0 0;margin-left:1.25rem;padding-left:2.5rem}.tag-cloud__tags{top:50px;padding:1rem;padding-left:3rem;height:calc(100vh - $grid-nav-height);overflow-y:auto;z-index:9}.section__card{padding:1rem .75rem 2rem;position:relative}@media only screen and (max-width:960px){.section__card [data-mobile=false]{display:none}}@media only screen and (min-width:960px){.section__card [data-mobile=true]{display:none}}.section__card--header{position:relative;margin:2rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.section__card--title{z-index:2;font-weight:700;font-family:montserrat,sans-serif}.section__card--subtitle{font-weight:700;font-family:montserrat,sans-serif;margin-bottom:1.5rem;text-align:center}.section__card--main{padding:.5rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.section__card--item{width:33.33%;text-decoration:none;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.section__card--item:not(:first-child):not(:last-child){margin:0 1rem}.section__card--item:first-child{margin:0 1rem 0 0}.section__card--item:last-child{margin:0 0 0 1rem}.section__card--img{margin:auto;display:block}.section__card--img-wrapper{width:100%;margin-bottom:1rem}.section__card--content{margin-bottom:.75rem;font-size:1.125rem;word-wrap:break-word}@media only screen and (max-width:960px){.section__card--item{width:100%;margin:.5rem 0 2rem!important;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.section__card--main{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.section__card--subtitle{text-align:left}.section__card--img{display:inline-block;width:100%}.section__card--img-wrapper{min-width:112px;max-width:112px;margin-right:1rem}.section__card--content{margin-bottom:1.5rem}}.section__normal{position:relative;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.section__normal--content{margin-bottom:.75rem;font-size:1.125rem;word-wrap:break-word}.section__normal--subtitle{font-weight:700;font-family:montserrat,sans-serif;margin:2rem 0}.section__normal--img{width:100%;min-width:100px;height:100%}.section__normal--img-wrapper{margin:auto 0;padding:0 1rem}.section__normal--img-wrapper[data-position=left]{margin-right:5rem}.section__normal--img-wrapper[data-position=right]{margin-left:5rem}@media only screen and (max-width:600px){.section__normal{-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.section__normal--img-wrapper[data-position=left]{margin:0 2rem}.section__normal--img-wrapper[data-position=right]{margin:0 2rem}}.section__highlight{z-index:1;position:absolute;left:0;bottom:-.25rem;width:100%;height:20px}.section__btn{width:100%;cursor:pointer;border:none;outline:none;border-radius:.25rem}.section__btn:hover,.section__btn:active,.section__btn:focus{border:1px solid #fff}.section__btn--micro{height:20px;font-size:14px;line-height:14px}.section__btn--mini{height:24px;font-size:15px;line-height:15px}.section__btn--small{height:28px;font-size:16px}.section__btn--medium{height:32px;font-size:17px;line-height:17px}.section__btn--large{height:36px;font-size:18px}.mermaid{width:100%;text-align:center;margin-bottom:1rem;overflow:auto}.switch{cursor:pointer;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.switch__rel{position:relative;height:auto;padding:0 6px}.theme__dark .switch__rel{color:#ccc}.theme__dark .switch__rel:hover,.theme__dark .switch__rel:active,.theme__dark .switch__rel:focus{color:#fcfcfa;background-color:#727072}.theme__light .switch__rel{color:#535a61}.theme__light .switch__rel:hover,.theme__light .switch__rel:active,.theme__light .switch__rel:focus{color:#242729;background-color:rgba(225,225,225,.4)}.switch__abs{position:absolute;left:-75px;top:-16px;z-index:9;width:50px;height:50px;margin:auto 0}.theme__dark .switch__abs{color:#ccc}.theme__dark .switch__abs:hover,.theme__dark .switch__abs:active,.theme__dark .switch__abs:focus{color:#fcfcfa}.theme__light .switch__abs{color:#535a61}.theme__light .switch__abs:hover,.theme__light .switch__abs:active,.theme__light .switch__abs:focus{color:#242729}.switch input{opacity:0;width:0;height:0}.slider{background-color:transparent;-webkit-transition:.2s;transition:.2s}.slider__icon svg{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}input:checked+.slider:before{-webkit-transform:translateX(13px);-ms-transform:translateX(13px);transform:translateX(13px)}.notices{position:relative;border-radius:.125rem;color:#fff;margin:2rem 0;padding:.3rem .5rem .3rem 2rem;font-size:.95rem}.notices a{text-decoration:underline}.notices>table{table-layout:fixed;width:100%;margin:10px 0;border-spacing:0}.notices.warning{border-top:30px solid #f1b37e;background:#fefaf5;color:rgba(150,90,38,.995)!important}.notices.warning::before{position:absolute;content:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjIxIiBoZWlnaHQ9IjIxIj48cGF0aCBmaWxsPSIjZmVmYWY1IiBkPSJNMTIgMy4wMjkyOTY5QzExLjQzNjgxMyAzLjAyOTI5NjkgMTAuODczODY5IDMuMjkxNzM5OSAxMC41NTg1OTQgMy44MTY0MDYyTDEuNzYxNzE4OCAxOC40NTExNzJDMS4xMTM0ODU0IDE5LjUyOTE4NiAxLjk0Mjg3IDIxIDMuMjAxMTcxOSAyMUgyMC43OTY4NzVDMjIuMDU0ODA1IDIxIDIyLjg4NjUxNSAxOS41MjkxODYgMjIuMjM4MjgxIDE4LjQ1MTE3MkwxMy40NDE0MDYgMy44MTY0MDYyQzEzLjEyNjEzMSAzLjI5MTc0IDEyLjU2MzE4NyAzLjAyOTI5NjkgMTIgMy4wMjkyOTY5em0wIDIuMjY5NTMxMkwyMC4yMzYzMjggMTlIMy43NjM2NzE5TDEyIDUuMjk4ODI4MXpNMTEgOXY1aDJWOUgxMXptMCA3djJoMlYxNkgxMXoiLz48L3N2Zz4=);top:-26.5px;left:.4rem;height:100%}.notices.warning::after{position:absolute;content:attr(data-title);font-family:montserrat,sans-serif;top:-26.5px;left:2rem;height:100%}.notices.warning a{font-weight:700;color:rgba(134,74,22,.995)}.theme__dark .notices.warning a:hover,.theme__dark .notices.warning a:active,.theme__dark .notices.warning a:focus{color:#ff6188}.theme__light .notices.warning a:hover,.theme__light .notices.warning a:active,.theme__light .notices.warning a:focus{color:#00acd7}.notices.warning>table thead{background:#f1b37e}.notices.warning>table th{color:rgba(134,74,22,.995)}.notices.warning>table th,.notices.warning>table td{padding:5px 15px;border:1px double rgba(166,106,54,.45)}.notices.warning p>code,.notices.warning li>code,.notices.warning td>code,.notices.warning code{padding:3px 7px;color:rgba(150,90,38,.995)!important;background-color:#fbecd9!important}.notices.error{border-top:30px solid #d58181;background:#fbeded;color:rgba(132,56,56,.995)!important}.notices.error::before{position:absolute;content:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjIxIiBoZWlnaHQ9IjIxIj48cGF0aCBmaWxsPSIjZmJlZGVkIiBkPSJNNSAzQzMuODk1IDMgMyAzLjg5NSAzIDVWMTlDMyAyMC4xMDUgMy44OTUgMjEgNSAyMUgxOUMyMC4xMDUgMjEgMjEgMjAuMTA1IDIxIDE5VjVDMjEgMy44OTUgMjAuMTA1IDMgMTkgM0g1ek01IDVIMTlWMTlINVY1ek04LjQxMDE1NjIgNyA3IDguNDEwMTU2MiAxMC41ODk4NDQgMTIgNyAxNS41ODk4NDQgOC40MTAxNTYyIDE3IDEyIDEzLjQxMDE1NiAxNS41ODk4NDQgMTcgMTcgMTUuNTg5ODQ0IDEzLjQxMDE1NiAxMiAxNyA4LjQxMDE1NjIgMTUuNTg5ODQ0IDcgMTIgMTAuNTg5ODQ0IDguNDEwMTU2MiA3eiIvPjwvc3ZnPg==);top:-26.5px;left:.4rem;height:100%}.notices.error::after{position:absolute;content:attr(data-title);font-family:montserrat,sans-serif;top:-26.5px;left:2rem;height:100%}.notices.error a{font-weight:700;color:rgba(116,40,40,.995)}.theme__dark .notices.error a:hover,.theme__dark .notices.error a:active,.theme__dark .notices.error a:focus{color:#ff6188}.theme__light .notices.error a:hover,.theme__light .notices.error a:active,.theme__light .notices.error a:focus{color:#00acd7}.notices.error>table thead{background:#d58181}.notices.error>table th{color:rgba(116,40,40,.995)}.notices.error>table th,.notices.error>table td{padding:5px 15px;border:1px double rgba(148,72,72,.45)}.notices.error p>code,.notices.error li>code,.notices.error td>code,.notices.error code{padding:3px 7px;color:rgba(132,56,56,.995)!important;background-color:#f5d4d4!important}.notices.info{border-top:30px solid #6bb1e0;background:#e6f3fb;color:rgba(47,103,141,.995)!important}.notices.info::before{position:absolute;content:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjIxIiBoZWlnaHQ9IjIxIj48cGF0aCBmaWxsPSIjZTZmM2ZiIiBkPSJNMTIgMkM2LjQ4ODk5NzEgMiAyIDYuNDg4OTk3MSAyIDEyIDIgMTcuNTExMDAzIDYuNDg4OTk3MSAyMiAxMiAyMiAxNy41MTEwMDMgMjIgMjIgMTcuNTExMDAzIDIyIDEyIDIyIDYuNDg4OTk3MSAxNy41MTEwMDMgMiAxMiAyem0wIDJDMTYuNDMwMTIzIDQgMjAgNy41Njk4Nzc0IDIwIDEyIDIwIDE2LjQzMDEyMyAxNi40MzAxMjMgMjAgMTIgMjAgNy41Njk4Nzc0IDIwIDQgMTYuNDMwMTIzIDQgMTJjMC00LjQzMDEyMjYgMy41Njk4Nzc0LTggOC04ek0xMSA3VjloMlY3SDExem0wIDR2NmgyVjExSDExeiIvPjwvc3ZnPg==);top:-26.5px;left:.4rem;height:100%}.notices.info::after{position:absolute;content:attr(data-title);font-family:montserrat,sans-serif;top:-26.5px;left:2rem;height:100%}.notices.info a{font-weight:700;color:rgba(31,87,125,.995)}.theme__dark .notices.info a:hover,.theme__dark .notices.info a:active,.theme__dark .notices.info a:focus{color:#ff6188}.theme__light .notices.info a:hover,.theme__light .notices.info a:active,.theme__light .notices.info a:focus{color:#00acd7}.notices.info>table thead{background:#6bb1e0}.notices.info>table th{color:rgba(31,87,125,.995)}.notices.info>table th,.notices.info>table td{padding:5px 15px;border:1px double rgba(63,119,157,.45)}.notices.info p>code,.notices.info li>code,.notices.info td>code,.notices.info code{padding:3px 7px;color:rgba(47,103,141,.995)!important;background-color:#cce6f7!important}.notices.success{border-top:30px solid #84c578;background:#e8f7e6;color:rgba(72,125,63,.995)!important}.notices.success::before{position:absolute;content:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjIxIiBoZWlnaHQ9IjIxIj48cGF0aCBmaWxsPSIjZThmN2U2IiBkPSJNMTIgMkM2LjQ4ODk5NzEgMiAyIDYuNDg4OTk3MSAyIDEyIDIgMTcuNTExMDAzIDYuNDg4OTk3MSAyMiAxMiAyMiAxNy41MTEwMDMgMjIgMjIgMTcuNTExMDAzIDIyIDEyIDIyIDYuNDg4OTk3MSAxNy41MTEwMDMgMiAxMiAyem0wIDJDMTYuNDMwMTIzIDQgMjAgNy41Njk4Nzc0IDIwIDEyIDIwIDE2LjQzMDEyMyAxNi40MzAxMjMgMjAgMTIgMjAgNy41Njk4Nzc0IDIwIDQgMTYuNDMwMTIzIDQgMTJjMC00LjQzMDEyMjYgMy41Njk4Nzc0LTggOC04ek0xNi4yOTI5NjkgOC4yOTI5Njg4IDEwIDE0LjU4NTkzOCA3LjcwNzAzMTIgMTIuMjkyOTY5IDYuMjkyOTY4OCAxMy43MDcwMzEgMTAgMTcuNDE0MDYyIDE3LjcwNzAzMSA5LjcwNzAzMTIgMTYuMjkyOTY5IDguMjkyOTY4OHoiLz48L3N2Zz4=);top:-26.5px;left:.4rem;height:100%}.notices.success::after{position:absolute;content:attr(data-title);font-family:montserrat,sans-serif;top:-26.5px;left:2rem;height:100%}.notices.success a{font-weight:700;color:rgba(56,109,47,.995)}.theme__dark .notices.success a:hover,.theme__dark .notices.success a:active,.theme__dark .notices.success a:focus{color:#ff6188}.theme__light .notices.success a:hover,.theme__light .notices.success a:active,.theme__light .notices.success a:focus{color:#00acd7}.notices.success>table thead{background:#84c578}.notices.success>table th{color:rgba(56,109,47,.995)}.notices.success>table th,.notices.success>table td{padding:5px 15px;border:1px double rgba(82,141,79,.45)}.notices.success p>code,.notices.success li>code,.notices.success td>code,.notices.success code{padding:3px 7px;color:rgba(72,125,63,.995)!important;background-color:#d3f0cf!important}.alert{padding:.75rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.125rem}.theme__dark .alert-info{background-color:rgba(215,238,249,.4);color:#fcfcfa}.theme__dark .alert-info[data-dir=rtl]{border-right:5px solid #bbdefb}.theme__dark .alert-info[data-dir=ltr]{border-left:5px solid #bbdefb}.theme__dark .alert-success{background-color:rgba(217,239,214,.4);color:#fcfcfa}.theme__dark .alert-success[data-dir=rtl]{border-right:5px solid #c8e6c9}.theme__dark .alert-success[data-dir=ltr]{border-left:5px solid #c8e6c9}.theme__dark .alert-warning{background-color:rgba(255,249,196,.4);color:#fcfcfa}.theme__dark .alert-warning[data-dir=rtl]{border-right:5px solid #ffeb3b}.theme__dark .alert-warning[data-dir=ltr]{border-left:5px solid #ffeb3b}.theme__dark .alert-danger{background-color:rgba(245,221,221,.4);color:#fcfcfa}.theme__dark .alert-danger[data-dir=rtl]{border-right:5px solid #ffcdd2}.theme__dark .alert-danger[data-dir=ltr]{border-left:5px solid #ffcdd2}.theme__light .alert-info{background-color:rgba(215,238,249,.4);color:#242729}.theme__light .alert-info[data-dir=rtl]{border-right:5px solid #bbdefb}.theme__light .alert-info[data-dir=ltr]{border-left:5px solid #bbdefb}.theme__light .alert-success{background-color:rgba(217,239,214,.4);color:#242729}.theme__light .alert-success[data-dir=rtl]{border-right:5px solid #c8e6c9}.theme__light .alert-success[data-dir=ltr]{border-left:5px solid #c8e6c9}.theme__light .alert-warning{background-color:rgba(255,249,196,.4);color:#242729}.theme__light .alert-warning[data-dir=rtl]{border-right:5px solid #ffeb3b}.theme__light .alert-warning[data-dir=ltr]{border-left:5px solid #ffeb3b}.theme__light .alert-danger{background-color:rgba(245,221,221,.4);color:#242729}.theme__light .alert-danger[data-dir=rtl]{border-right:5px solid #ffcdd2}.theme__light .alert-danger[data-dir=ltr]{border-left:5px solid #ffcdd2}.tab{position:relative;padding:.5rem 0;margin:2rem 0}.tab__links{height:30px;border-top-left-radius:.25rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;-ms-flex-pack:flex-start;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.tab__link{outline:none;border:none;cursor:pointer;font-size:13.8px;font-family:montserrat,sans-serif;text-transform:capitalize;padding:.5rem .75rem;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.theme__dark .tab__link{background-color:#2d2a2e;border:none;border-bottom:1px solid #595b5c}.theme__dark .tab__link.active{background-color:#2d2a2e;border:1px solid #595b5c;border-bottom:none}.theme__light .tab__link{background-color:#fff;border:none;border-bottom:1px solid #bdbdbd}.theme__light .tab__link.active{background-color:#fff;border:1px solid #bdbdbd;border-bottom:none}.tab__content{display:none;padding:0 .5rem;border-radius:.25rem;border-top-left-radius:0}.theme__dark .tab__content{border:1px solid #595b5c;background-color:#2d2a2e}.theme__light .tab__content{border:1px solid #bdbdbd;background-color:#fff}.codetab{position:relative}.codetab__links{position:absolute;top:0;left:0;height:27px;z-index:13;border-top-left-radius:.25rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;-ms-flex-pack:flex-start}.theme__dark .codetab__links{background-color:#1d1e26}.theme__light .codetab__links{background-color:#e2e6e9}.codetab__link{height:27px;border:none;outline:none;cursor:pointer;font-size:13.8px;font-family:montserrat,sans-serif;text-transform:capitalize;padding:.25rem .5rem;-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;-ms-transition:all .2s ease-in;-o-transition:all .2s ease-in;transition:all .2s ease-in}.codetab__link:first-child{border-top-left-radius:.25rem}.theme__dark .codetab__link{border-top:1px solid transparent}.theme__dark .codetab__link.active{border-top:1px solid}.theme__light .codetab__link{border-top:1px solid transparent}.theme__light .codetab__link.active{border-top:1px solid}.theme__dark .codetab__link{background-color:#1d1e26}.theme__dark .codetab__link.active{background-color:#2a2c37}.theme__dark .codetab__link:hover,.theme__dark .codetab__link:active,.theme__dark .codetab__link:focus{background-color:#2a2c37}.theme__light .codetab__link{background-color:#e2e6e9}.theme__light .codetab__link.active{background-color:#f7f8f9}.theme__light .codetab__link:hover,.theme__light .codetab__link:active,.theme__light .codetab__link:focus{background-color:#f7f8f9}.codetab__content{display:none}#container{display:grid;grid-template-columns:1fr;grid-template-rows:50px auto 1fr auto;grid-column-gap:20px;grid-row-gap:0;grid-template-rows:50px auto 1fr auto;width:100%;max-width:100%;min-height:100vh;margin-left:auto;margin-right:auto;position:relative;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark #container{color:#fcfcfa}.theme__light #container{color:#242729}.nav{grid-area:1/1/2/2}.top{grid-area:2/1/3/2}.mid{grid-area:3/1/4/2}.bot{grid-area:4/1/5/2}.divider{display:grid;height:100%;grid-template-columns:minmax(200px,240px)minmax(350px,769px)minmax(200px,240px);grid-template-rows:auto;grid-column-gap:0;grid-row-gap:0;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}@media only screen and (max-width:769px){.divider{grid-template-columns:minmax(0,240px)minmax(0,769px)minmax(0,240px)}}.l{grid-area:1/1/2/2}.m{grid-area:1/2/2/3}.r{grid-area:1/3/2/4}.lm{grid-area:1/1/2/3}.mr{grid-area:1/2/2/4}.lmr{grid-area:1/1/2/4}.sv{display:grid;grid-template-columns:minmax(630px,1fr)minmax(125px,325px);grid-template-rows:1fr;grid-column-gap:0;grid-row-gap:0}@media only screen and (max-width:769px){.sv{grid-template-columns:minmax(200px,1fr)}}.blog-post{grid-area:1/1/2/2}.blog-tags{grid-area:1/2/2/3}.blog-total{grid-area:1/1/2/3}.theme__dark .bot{background-color:#403e41}.theme__light .bot{background-color:#fafafa}.footer{padding:1rem;text-align:center}.theme__dark .footer{border-top:1px solid rgba(243,242,241,.1)}.theme__light .footer{border-top:1px solid rgba(12,13,14,.1)}.footer__section{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.footer__section--wrapper{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}@media only screen and (max-width:600px){.footer__section--wrapper{-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}}.footer__section--title{font-family:montserrat,sans-serif;font-size:1rem;font-weight:700;margin:1rem 0 .5rem}.footer__section--link{display:block;text-align:left;padding:.15rem .35rem}.footer__contents{width:100%;margin:2rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.theme__dark .top{background-color:#212121}.theme__light .top{background-color:#eee}.header{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.theme__dark .header__wrapper{border-bottom:1px solid rgba(243,242,241,.1)}.theme__light .header__wrapper{border-bottom:1px solid rgba(12,13,14,.1)}.header__wrapper .title{font-size:3rem;font-weight:900;font-family:montserrat,sans-serif;line-height:3rem;overflow-wrap:break-word;margin:2rem 1.5rem}.theme__dark .header__wrapper .title{color:#fcfcfa}.theme__light .header__wrapper .title{color:#424242}.blog-header{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.blog-header__title{line-height:1.1;font-weight:900;font-family:montserrat,sans-serif;font-size:3rem;line-height:3rem;overflow-wrap:break-word}.theme__dark .blog-header__title{color:#fcfcfa}.theme__light .blog-header__title{color:#424242}.blog-header__subtitle{line-height:1.2}.blog-header__align-left{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.blog-header__align-center{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.blog-header__align-right{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.theme__dark .mid{background-color:#212121}.theme__light .mid{background-color:#f7f8f9}.main{width:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .main{background-color:#212121}.theme__light .main{background-color:#f7f8f9}.nav{position:relative}.navbar{padding:0 .75rem;height:100%;position:relative;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.navbar__wrapper{width:100%;height:50px;position:fixed;left:0;right:0;top:0;z-index:16;color:inherit;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.navbar__wrapper[data-bgimg=true]{background-color:transparent}.navbar__wrapper[data-bgimg=false]{box-shadow:0 1px 0 rgba(12,13,14,.1),0 1px 6px rgba(60,65,70,.1)}.theme__dark .navbar__wrapper[data-bgimg=false]{background-color:#403e41}.theme__light .navbar__wrapper[data-bgimg=false]{background-color:#fafafa}.navbar__menu{height:100%;padding:0 .75rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.navbar__menu--wrapper{height:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.navbar__menu--item{height:50px;padding:0 .75rem}.navbar__menu--item>a{height:100%;font-family:montserrat,sans-serif;font-size:16.8px;color:inherit;text-decoration:none!important;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .navbar__menu--item{color:#fcfcfa}.theme__dark .navbar__menu--item.active{font-weight:700;color:#aed581}.theme__light .navbar__menu--item{color:#242729}.theme__light .navbar__menu--item.active{font-weight:700;color:#007d9c}.navbar__menu--mobile-item{width:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;-ms-flex-pack:flex-start}.theme__dark .navbar__menu--mobile-item:hover,.theme__dark .navbar__menu--mobile-item:active,.theme__dark .navbar__menu--mobile-item:focus{background-color:#727072}.theme__light .navbar__menu--mobile-item:hover,.theme__light .navbar__menu--mobile-item:active,.theme__light .navbar__menu--mobile-item:focus{background-color:rgba(225,225,225,.4)}.navbar__menu--mobile-item>a{width:100%;font-size:18px;padding:.5rem 1rem}.theme__dark .navbar__menu--mobile-item>a{color:#fcfcfa}.theme__dark .navbar__menu--mobile-item>a:hover,.theme__dark .navbar__menu--mobile-item>a:active,.theme__dark .navbar__menu--mobile-item>a:focus{text-decoration:none;color:#ff6188}.theme__dark .navbar__menu--mobile-item>a.active{font-weight:700;color:#aed581;background-color:#424242}.theme__light .navbar__menu--mobile-item>a{color:#242729}.theme__light .navbar__menu--mobile-item>a:hover,.theme__light .navbar__menu--mobile-item>a:active,.theme__light .navbar__menu--mobile-item>a:focus{text-decoration:none;color:#00acd7}.theme__light .navbar__menu--mobile-item>a.active{font-weight:700;color:#007d9c;background-color:#e0e0e0}.navbar__menu--btn{height:50px;font-size:20px;margin-left:.4rem;margin-right:.5rem;white-space:nowrap;cursor:pointer;border:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.theme__dark .navbar__menu--btn{color:#fcfcfa;background:0 0}.theme__dark .navbar__menu--btn:hover,.theme__dark .navbar__menu--btn:active,.theme__dark .navbar__menu--btn:focus{color:#aed581}.theme__light .navbar__menu--btn{color:#242729;background:0 0}.theme__light .navbar__menu--btn:hover,.theme__light .navbar__menu--btn:active,.theme__light .navbar__menu--btn:focus{color:#007d9c}.navbar__logo{width:100%;height:100%;margin:0 .25rem}.navbar__logo--wrapper{height:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;-ms-flex-pack:flex-start}.theme__dark .navbar__logo--wrapper{color:#fcfcfa}.theme__dark .navbar__logo--wrapper:hover,.theme__dark .navbar__logo--wrapper:active,.theme__dark .navbar__logo--wrapper:focus{color:#aed581}.theme__light .navbar__logo--wrapper{color:#242729}.theme__light .navbar__logo--wrapper:hover,.theme__light .navbar__logo--wrapper:active,.theme__light .navbar__logo--wrapper:focus{color:#007d9c}.navbar__logo--wrapper a{color:inherit}.navbar__logo--wrapper a:hover,.navbar__logo--wrapper a:active,.navbar__logo--wrapper a:focus{color:inherit;text-decoration:none}.navbar__logo--link{width:32.5px;height:32.5px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.navbar__logo--text{font-size:20px;margin-left:.5rem;margin-right:1rem;white-space:nowrap;cursor:pointer;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.theme__dark .navbar__logo--text[data-bgimg=false]{color:#fcfcfa}.theme__light .navbar__logo--text[data-bgimg=false]{color:#242729}.navbar__long--link{width:100%;height:100%;padding:.6rem .2rem;margin:auto .25rem;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.navbar__icons{height:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.navbar__icons--icon{width:50px;height:50px;color:inherit;background-color:transparent;outline:none;border:none;cursor:pointer;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .navbar__icons--icon{color:#ccc}.theme__dark .navbar__icons--icon:hover,.theme__dark .navbar__icons--icon:active,.theme__dark .navbar__icons--icon:focus{color:#fcfcfa;background-color:#727072}.theme__dark .navbar__icons--icon>a{height:100%;color:inherit;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__light .navbar__icons--icon{color:#535a61}.theme__light .navbar__icons--icon:hover,.theme__light .navbar__icons--icon:active,.theme__light .navbar__icons--icon:focus{color:#242729;background-color:rgba(225,225,225,.4)}.theme__light .navbar__icons--icon>a{height:100%;color:inherit;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.navbar__dropdown{height:30px;font-size:17.2px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.navbar__dropdown--content{padding:.25rem 0;min-width:120px;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);-moz-box-shadow:0 1px 3px 0 rgba(0,0,0,.4);box-shadow:0 1px 3px 0 rgba(0,0,0,.4)}.theme__dark .navbar__dropdown--content{background-color:#595b5c}.theme__light .navbar__dropdown--content{background-color:#fff}.navbar__dropdown--title{font-size:16.8px;font-family:montserrat,sans-serif;border:none;outline:none;height:50px;cursor:pointer;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.navbar__dropdown--title[data-dir=rtl]{margin-right:1rem}.navbar__dropdown--title[data-dir=ltr]{margin-left:1rem}.theme__dark .navbar__dropdown--title{color:#fcfcfa;background-color:#403e41}.theme__light .navbar__dropdown--title{color:#242729;background-color:#fafafa}.navbar__collapse{width:100%;position:absolute;top:50px;left:0;max-height:0;overflow:hidden;-webkit-transition:all .15s ease-out;-moz-transition:all .15s ease-out;-ms-transition:all .15s ease-out;-o-transition:all .15s ease-out;transition:all .15s ease-out}.theme__dark .navbar__collapse{background-color:#403e41}.theme__dark .navbar__collapse[data-open=true]{border-bottom:2px solid rgba(243,242,241,.1)}.theme__dark .navbar__collapse[data-open=false]{border-bottom:none}.theme__light .navbar__collapse{background-color:#fafafa}.theme__light .navbar__collapse[data-open=true]{border-bottom:2px solid rgba(12,13,14,.1)}.theme__light .navbar__collapse[data-open=false]{border-bottom:none}.home__landing{width:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}@media only screen and (max-width:600px){.home__landing{-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}}.home__landing--img{margin:.5rem;z-index:7}.home__landing--txt{margin:2.5rem .5rem;z-index:7}.home__landing--txt .title{font-size:56px;font-weight:900;font-family:montserrat,sans-serif}.home__landing--txt .text{font-size:22px}@media only screen and (max-width:600px){.home__landing--txt{text-align:center}}.home__landing--link{text-decoration:none!important}.home__landing--btn{margin-top:2.5rem;margin-right:.5rem}.home__landing--btn2{margin:.5rem}.home__social{width:100%;padding:1rem 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.home__social--item{margin:0 .25rem}.home__banner{width:100%;padding:.75rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.theme__dark .home__banner--wrapper{background-color:#191919}.theme__light .home__banner--wrapper{background-color:#eee}#single-menu{position:relative}.single{position:relative;width:100%;overflow-wrap:break-word}.single[data-display=block]{display:block}.single[data-display=none]{display:none}.single__title{font-size:3rem;font-weight:900;font-family:montserrat,sans-serif;line-height:3rem;overflow-wrap:break-word;margin:2rem 1rem .25rem}.theme__dark .single__title{color:#fcfcfa}.theme__light .single__title{color:#424242}.single__meta{font-size:.8rem;margin-bottom:1.5rem;padding:0 1rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.single__infos{margin-right:.5rem;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.single__info{word-break:keep-all;padding:0 .125rem}.single__contents{margin:1rem 0;line-height:1.7;width:inheirt;max-width:inherit}.single__contents--gallery{overflow:hidden}.single__contents>p>a{text-decoration:underline}.single__contents h1,.single__contents h2,.single__contents h3,.single__contents h4,.single__contents h5,.single__contents h6{position:relative;line-height:1.25;padding:0 1rem;font-family:montserrat,sans-serif}.single__contents h1,.single__contents h2{color:inherit;font-weight:900;text-rendering:optimizeLegibility}.theme__dark .single__contents h1,.theme__dark .single__contents h2{color:#ccc}.theme__light .single__contents h1,.theme__light .single__contents h2{color:#607d8b}.theme__dark .single__contents h3,.theme__dark .single__contents h4,.theme__dark .single__contents h5,.theme__dark .single__contents h6{color:#fcfcfa}.single__contents h1{font-size:2.6rem;margin:3.5rem 0 1.75rem}.single__contents h2{font-size:2.2rem;margin:3.2rem 0 1.5rem}.single__contents h3{font-size:1.8rem;margin:2.8rem 0 1.25rem}.single__contents h4{font-size:1.5rem;margin:2.4rem 0 1rem}.single__contents h5{font-size:1.2rem;margin:2rem 0 .8rem}.single__contents h6{font-size:1rem;margin:1.5rem 0 .5rem}.single__contents pre{margin-top:1.6rem;overflow:auto;line-height:1.5;direction:ltr}.theme__dark .single__contents pre{border-top:1px solid rgba(243,242,241,.1);border-bottom:1px solid rgba(243,242,241,.1);scrollbar-width:thin;scrollbar-color:#888 #eee}.theme__dark .single__contents pre::-webkit-scrollbar{width:.45em;height:.45em}.theme__dark .single__contents pre::-webkit-scrollbar-thumb{background:#888}.theme__dark .single__contents pre::-webkit-scrollbar-track{background:#eee}.theme__light .single__contents pre{border-top:1px solid rgba(12,13,14,.1);border-bottom:1px solid rgba(12,13,14,.1);scrollbar-width:thin;scrollbar-color:#cfd8dc #fcfcfa}.theme__light .single__contents pre::-webkit-scrollbar{width:.45em;height:.45em}.theme__light .single__contents pre::-webkit-scrollbar-thumb{background:#cfd8dc}.theme__light .single__contents pre::-webkit-scrollbar-track{background:#fcfcfa}.single__contents pre:not(.chroma){position:relative;margin:1rem 0}.theme__dark .single__contents pre:not(.chroma){border-left:4px solid #595b5c}.theme__light .single__contents pre:not(.chroma){border-left:4px solid #d7dee2}.single__contents div.chroma{position:relative}.single__contents div.chroma:hover .copy-to-clipboard,.single__contents div.chroma:active .copy-to-clipboard,.single__contents div.chroma:focus .copy-to-clipboard{opacity:1}.single__contents p>code:not([class^=language]){padding:.25rem .5rem}.theme__dark .single__contents p>code:not([class^=language]){color:#fcfcfa}.theme__light .single__contents p>code:not([class^=language]){color:#607d8b}.single__contents blockquote{margin:0 1.75rem 1.75rem 1.5rem;padding:0 0 0 1.42188rem;font-size:1.05rem;font-style:italic;line-height:1.75;color:inherit;opacity:.8;position:relative}.theme__dark .single__contents blockquote{border-left:5px solid #fcfcfa}.theme__light .single__contents blockquote{border-left:5px solid #bdbdbd}.single__contents blockquote code:not([class^=language]){padding:3px 7px;margin:0 .25rem}.theme__dark .single__contents blockquote code:not([class^=language]){color:#fcfcfa}.theme__light .single__contents blockquote code:not([class^=language]){color:#607d8b}.single__contents img{display:block;border-radius:.25rem;margin:0 auto}.single__contents p{margin:0 0 10px;padding:0 1rem}.single__contents p code:not([class^=language]){padding:3px 7px;margin:0 .25rem}.theme__dark .single__contents p code:not([class^=language]){color:#fcfcfa}.theme__light .single__contents p code:not([class^=language]){color:#607d8b}.single__contents ul{margin-right:0;margin-top:0;margin-bottom:1rem;padding:0;list-style:disc outside none}.single__contents ol{margin-bottom:1rem}.single__contents[data-dir=ltr] li{margin-left:2rem}.single__contents[data-dir=rtl] li{margin-right:2rem}.single__contents li>code{padding:2px 7px}.theme__dark .single__contents li code:not([class^=language]){color:#fcfcfa}.theme__light .single__contents li code:not([class^=language]){color:#607d8b}.single__contents hr{margin:10px 1rem;border:none;height:1px}.theme__dark .single__contents hr{background:#727072}.theme__light .single__contents hr{background:#bdbdbd}.single__contents dl dt::after{content:':'}.single__contents dd{display:block;margin-inline-start:40px}.single__contents .anchor{cursor:pointer}.single__contents a.footnote-ref{font-size:.75rem;font-weight:700;margin-left:3px}.single__contents a.footnote-ref::before{content:"["}.single__contents a.footnote-ref::after{content:"]"}.single__contents .table-wrapper{overflow-x:auto;margin:1rem}.single__contents .table-wrapper>table{max-width:100%;margin:10px 0;border-spacing:0;box-shadow:1px 1px 3px rgba(0,0,0,.125)}.theme__dark .single__contents .table-wrapper>table thead{background:#1d1e26}.theme__dark .single__contents .table-wrapper>table th{color:#fcfcfa}.theme__dark .single__contents .table-wrapper>table th,.theme__dark .single__contents .table-wrapper>table td{padding:.25rem .5rem;border:1px double #595b5c}.theme__light .single__contents .table-wrapper>table thead{background:#e2e6e9}.theme__light .single__contents .table-wrapper>table th{color:#344952}.theme__light .single__contents .table-wrapper>table th,.theme__light .single__contents .table-wrapper>table td{padding:.25rem .5rem;border:1px double #d7dee2}.single__contents .table-wrapper code:not([class^=language]){padding:3px 7px;margin:0 .25rem}.theme__dark .single__contents .table-wrapper code:not([class^=language]){color:#fcfcfa}.theme__light .single__contents .table-wrapper code:not([class^=language]){color:#607d8b}.single__tags{list-style-type:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.single__tag{padding:0 .25rem}code,pre{padding:.25rem .5rem;line-height:1.5;font-family:Consolas,Monaco,Menlo,dejavu sans mono,bitstream vera sans mono,courier new,lucida console,lucida sans typewriter,liberation mono,nimbus mono l,Monaco,Courier,monospace;overflow:auto}code a,pre a{text-decoration:none!important}pre.chroma{padding:.65rem 0}.theme__dark *:not(.chroma) code,.theme__dark *:not(.chroma) pre{color:#eee;background:#2a2c37}.theme__light *:not(.chroma) code,.theme__light *:not(.chroma) pre{color:#344952;background:#f7f8f9}*:not(.chroma) code{padding:0}code:not([class^=language]){padding:3px 0;border-radius:4px}.theme__dark code:not([class^=language]){color:#fcfcfa}.theme__light code:not([class^=language]){color:#607d8b}pre:not(.chroma){overflow:auto}.single__contents>.language-code,li>.language-code{overflow-x:auto;position:relative;margin:1rem 0;direction:ltr}.single__contents>.language-code:hover .copy-to-clipboard,.single__contents>.language-code:active .copy-to-clipboard,.single__contents>.language-code:focus .copy-to-clipboard,li>.language-code:hover .copy-to-clipboard,li>.language-code:active .copy-to-clipboard,li>.language-code:focus .copy-to-clipboard{opacity:1}.single__contents>.language-code::after,li>.language-code::after{position:absolute;top:0;right:0;left:0;padding:2px 7px;width:100%;height:20px;z-index:4;border-top-left-radius:.25rem;border-top-right-radius:.25rem;content:''}.theme__dark .single__contents>.language-code::after,.theme__dark li>.language-code::after{color:#fcfcfa;background:#1d1e26}.theme__light .single__contents>.language-code::after,.theme__light li>.language-code::after{color:#344952;background:#e2e6e9}.highlight>.chroma{margin-bottom:1.5rem;z-index:8;overflow-x:auto;direction:ltr}.theme__dark .highlight>.chroma{color:#eee;background:#2a2c37}.theme__light .highlight>.chroma{color:#344952;background:#f7f8f9}.highlight>.chroma code{padding:0}.highlight>.chroma code[data-lang]::before{position:absolute;top:0;right:0;z-index:12;height:25px;width:100%;display:inline-block;text-align:right;content:attr(data-lang)}.theme__dark .highlight>.chroma code[data-lang]::before{color:#2d2a2e;background:#2d2a2e}.theme__light .highlight>.chroma code[data-lang]::before{color:#fff;background:#fff}.highlight>.chroma code[data-lang]::after{position:absolute;top:2px;right:0;z-index:13;padding:.125rem .25rem;height:25px;font-family:montserrat,sans-serif;font-weight:700;font-size:.85rem;line-height:1.5;display:inline-block;text-transform:capitalize;border-top-left-radius:.2rem;content:attr(data-lang)}.theme__dark .highlight>.chroma code[data-lang]::after{border-top:1px solid #595b5c;border-left:1px solid #595b5c}.theme__light .highlight>.chroma code[data-lang]::after{border-top:1px solid #bdbdbd;border-left:1px solid #bdbdbd}.theme__dark .highlight>.chroma code[data-lang]::after{background:#1d1e26}.theme__light .highlight>.chroma code[data-lang]::after{background:#e2e6e9}.highlight>.chroma table,.highlight>.chroma tr,.highlight>.chroma td{margin:0;padding:0;width:100%;border-collapse:collapse}.highlight>.chroma .lntd:first-child{width:10px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.highlight>.chroma .lntd:last-child{vertical-align:top}.highlight>.chroma .lnt{margin-left:.2rem;margin-right:.5rem}.theme__dark .highlight>.chroma .lnt{color:#666}.theme__light .highlight>.chroma .lnt{color:#aaa}.highlight>.chroma table.lntable{overflow-x:auto}.theme__dark .highlight>.chroma table.lntable{scrollbar-width:thin;scrollbar-color:#888 #eee}.theme__dark .highlight>.chroma table.lntable::-webkit-scrollbar{width:.45em;height:.45em}.theme__dark .highlight>.chroma table.lntable::-webkit-scrollbar-thumb{background:#888}.theme__dark .highlight>.chroma table.lntable::-webkit-scrollbar-track{background:#eee}.theme__light .highlight>.chroma table.lntable{scrollbar-width:thin;scrollbar-color:#cfd8dc #fcfcfa}.theme__light .highlight>.chroma table.lntable::-webkit-scrollbar{width:.45em;height:.45em}.theme__light .highlight>.chroma table.lntable::-webkit-scrollbar-thumb{background:#cfd8dc}.theme__light .highlight>.chroma table.lntable::-webkit-scrollbar-track{background:#fcfcfa}.theme__dark .highlight>.chroma table.lntable td:first-child{border-left:4px solid #595b5c}.theme__light .highlight>.chroma table.lntable td:first-child{border-left:4px solid #d7dee2}li .highlight>.chroma .lnt:first-child{padding:0 .3rem}li .highlight>.chroma .lnt:not(:first-child){padding:0 .3rem}td:not(.lntd) code{padding:2px 7px!important}table:not(.lntable) td code{padding:2px 7px!important}#list-main{position:relative;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.theme__dark #list-main{background-color:#2d2a2e}.theme__dark #list-main[data-dir=ltr]{border-right:1px solid rgba(243,242,241,.1);border-left:1px solid rgba(243,242,241,.1)}.theme__dark #list-main[data-dir=rtl]{border-left:1px solid rgba(243,242,241,.1);border-right:1px solid rgba(243,242,241,.1)}.theme__light #list-main{background-color:#fff}.theme__light #list-main[data-dir=ltr]{border-right:1px solid rgba(12,13,14,.1);border-left:1px solid rgba(12,13,14,.1)}.theme__light #list-main[data-dir=rtl]{border-left:1px solid rgba(12,13,14,.1);border-right:1px solid rgba(12,13,14,.1)}#list-menu{position:relative}#list-side{position:relative}.list-section__item{margin:auto;padding:.25rem 0;width:95%;border-radius:.2rem}.list-section__item--link{display:inline-block;font-size:1rem;font-family:montserrat,sans-serif;margin-top:.5rem;margin-bottom:.125rem}.list-section__item--desc{font-size:1rem;margin:.25rem 0}.theme__dark .blog{background-color:#2d2a2e}.theme__light .blog{background-color:#fff}.theme__dark .blog__bg{background-color:#2d2a2e}.theme__light .blog__bg{background-color:#fff}.blog__header{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center}.blog .subtitle{margin:.25rem 0} \ No newline at end of file
diff --git a/i18n/en.toml b/i18n/en.toml
index 56b861c..2cffc8b 100644
--- a/i18n/en.toml
+++ b/i18n/en.toml
@@ -20,4 +20,4 @@ other = "min read"
other = "WRITTEN BY"
[edit-this-page]
-other = "EDIT THIS PAGE" \ No newline at end of file
+other = "EDIT THIS PAGE"
diff --git a/i18n/ko.toml b/i18n/ko.toml
index 06fae7b..6ce7e09 100644
--- a/i18n/ko.toml
+++ b/i18n/ko.toml
@@ -20,4 +20,4 @@ other = "min read"
other = "글쓴이"
[edit-this-page]
-other = "이 페이지 수정하기" \ No newline at end of file
+other = "이 페이지 수정하기"
diff --git a/layouts/_default/list.searchindex.json b/layouts/_default/list.searchindex.json
deleted file mode 100644
index a1870fa..0000000
--- a/layouts/_default/list.searchindex.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{{ .Scratch.Delete "searchindex" }}
-{{- $.Scratch.Add "searchindex" slice -}}
-{{- range $index, $element := (where .Site.Pages "Kind" "page") -}}
- {{ with $element.Plain }}
- {{- $.Scratch.Add "searchindex" (dict "id" $index "title" $element.Title "uri" $element.Permalink "tags" $element.Params.tags "section" $element.Section "content" $element.Plain "description" $element.Description) -}}
- {{ end }}
-{{- end -}}
-{{- $.Scratch.Get "searchindex" | jsonify -}} \ No newline at end of file
diff --git a/layouts/_default/single.searchindex.json b/layouts/_default/single.searchindex.json
deleted file mode 100644
index a1870fa..0000000
--- a/layouts/_default/single.searchindex.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{{ .Scratch.Delete "searchindex" }}
-{{- $.Scratch.Add "searchindex" slice -}}
-{{- range $index, $element := (where .Site.Pages "Kind" "page") -}}
- {{ with $element.Plain }}
- {{- $.Scratch.Add "searchindex" (dict "id" $index "title" $element.Title "uri" $element.Permalink "tags" $element.Params.tags "section" $element.Section "content" $element.Plain "description" $element.Description) -}}
- {{ end }}
-{{- end -}}
-{{- $.Scratch.Get "searchindex" | jsonify -}} \ No newline at end of file
diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html
index efc66c2..ddc201b 100644
--- a/layouts/_default/taxonomy.html
+++ b/layouts/_default/taxonomy.html
@@ -1,42 +1,32 @@
{{ define "main" }}
<div class="top">
<header class="header__wrapper bgcolor__header">
- <div class="divider">
- <div class="lmr">
- {{ partial "header/taxo-header.html" . }}
- </div>
- </div>
+ {{ with .Site.GetPage "section" "blog" }}
+ {{ if eq .Params.blogHeaderType "img" }}
+ {{ partial "header/blog-header.html" . }}
+ {{ else }}
+ <div class="divider">
+ <div class="lmr">
+ {{ partial "header/blog-header.html" . }}
+ </div>
+ </div>
+ {{ end }}
+ {{ end }}
</header>
-
- <div class="header__wrapper bgcolor__breadcrumb">
- <div class="divider">
- <div class="lmr flexbox jc-center flex-wrap tag__wrapper">
- {{ range $index, $element := .Site.Taxonomies.tags }}
- {{ if $index }}
- <a href="{{ $element.Page.RelPermalink }}" class="tag">
- <span class="tag__text">
- {{ $element.Page.Title }}
- </span>
- <span class="tag__num" dir="auto">
- {{ printf "%#v" (len $element) }}
- </span>
- </a>
- {{ end }}
- {{ end }}
- </div>
- </div>
- </div>
</div>
<div class="mid blog__bg">
<main class="main blog__bg">
- <div class="sv" data-view="full">
- <div class="blog">
+ <div class="sv">
+ <div class="blog-post">
{{ range .RegularPages }}
{{ .Render "summary" }}
{{ end }}
{{ partial "main/component/pagination.html" . }}
</div>
+ <div class="blog-tags">
+ {{ partial "main/component/tag-cloud" . }}
+ </div>
</div>
</main>
@@ -44,27 +34,33 @@
<script>
var singleViewElem = document.querySelectorAll('.sv');
+ var postElem = document.querySelector('.blog-post');
+ var tagsElem = document.querySelector('.blog-tags');
enquire.register("screen and (max-width:1280px)", {
match: function () {
singleViewElem.forEach(function (elem) {
- elem.setAttribute('data-view', 'full');
+ postElem.className = "blog-post";
+ tagsElem.className = "blog-tags";
});
},
unmatch: function () {
singleViewElem.forEach(function (elem) {
- elem.setAttribute('data-view', 'full');
+ postElem.className = "blog-post";
+ tagsElem.className = "blog-tags";
});
},
}).register("screen and (max-width:769px)", {
match: function () {
singleViewElem.forEach(function (elem) {
- elem.setAttribute('data-view', 'mobile');
+ postElem.className = "blog-total";
+ tagsElem.className = "hide";
});
},
unmatch: function () {
singleViewElem.forEach(function (elem) {
- elem.setAttribute('data-view', 'full');
+ postElem.className = "blog-post";
+ tagsElem.className = "blog-tags";
});
},
});
diff --git a/layouts/_default/terms.searchindex.json b/layouts/_default/terms.searchindex.json
deleted file mode 100644
index a1870fa..0000000
--- a/layouts/_default/terms.searchindex.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{{ .Scratch.Delete "searchindex" }}
-{{- $.Scratch.Add "searchindex" slice -}}
-{{- range $index, $element := (where .Site.Pages "Kind" "page") -}}
- {{ with $element.Plain }}
- {{- $.Scratch.Add "searchindex" (dict "id" $index "title" $element.Title "uri" $element.Permalink "tags" $element.Params.tags "section" $element.Section "content" $element.Plain "description" $element.Description) -}}
- {{ end }}
-{{- end -}}
-{{- $.Scratch.Get "searchindex" | jsonify -}} \ No newline at end of file
diff --git a/layouts/blog/section.html b/layouts/blog/section.html
index ac4f3cc..24fd2df 100644
--- a/layouts/blog/section.html
+++ b/layouts/blog/section.html
@@ -1,69 +1,64 @@
{{ define "main" }}
<div class="top">
<header class="header__wrapper bgcolor__header">
- <div class="divider">
- <div class="lmr">
- {{ partial "header/blog-header.html" . }}
+ {{ if eq .Params.blogHeaderType "img" }}
+ {{ partial "header/blog-header.html" . }}
+ {{ else }}
+ <div class="divider">
+ <div class="lmr">
+ {{ partial "header/blog-header.html" . }}
+ </div>
</div>
- </div>
+ {{ end }}
</header>
-
- <div class="header__wrapper bgcolor__breadcrumb">
- <div class="divider">
- <div class="lmr flexbox jc-center flex-wrap tag__wrapper">
- {{ range $index, $element := .Site.Taxonomies.tags }}
- {{ if $index }}
- <a href="{{ $element.Page.RelPermalink }}" class="tag">
- <span class="tag__text">
- {{ $element.Page.Title }}
- </span>
- <span class="tag__num" dir="auto">
- {{ printf "%#v" (len $element) }}
- </span>
- </a>
- {{ end }}
- {{ end }}
- </div>
- </div>
- </div>
</div>
+
<div class="mid blog__bg">
<main class="main blog__bg">
- <div class="sv" data-view="full">
- <div class="blog">
+ <div class="sv">
+ <div class="blog-post">
{{ $paginator := .Paginate (where .RegularPages "Type" .Type) }}
{{ range $paginator.Pages }}
{{ .Render "summary" }}
{{ end }}
{{ partial "main/component/pagination.html" . }}
</div>
+ <div class="blog-tags">
+ {{ partial "main/component/tag-cloud" . }}
+ </div>
</div>
</main>
</div>
<script>
var singleViewElem = document.querySelectorAll('.sv');
+ var postElem = document.querySelector('.blog-post');
+ var tagsElem = document.querySelector('.blog-tags');
enquire.register("screen and (max-width:1280px)", {
match: function () {
singleViewElem.forEach(function(elem) {
- elem.setAttribute('data-view', 'full');
+ postElem.className = "blog-post";
+ tagsElem.className = "blog-tags";
});
},
unmatch: function () {
singleViewElem.forEach(function (elem) {
- elem.setAttribute('data-view', 'full');
+ postElem.className = "blog-post";
+ tagsElem.className = "blog-tags";
});
},
}).register("screen and (max-width:769px)", {
match: function () {
singleViewElem.forEach(function (elem) {
- elem.setAttribute('data-view', 'mobile');
+ postElem.className = "blog-total";
+ tagsElem.className = "hide";
});
},
unmatch: function () {
singleViewElem.forEach(function (elem) {
- elem.setAttribute('data-view', 'full');
+ postElem.className = "blog-post";
+ tagsElem.className = "blog-tags";
});
},
});
diff --git a/layouts/blog/single.html b/layouts/blog/single.html
index ab93ed7..9addd52 100644
--- a/layouts/blog/single.html
+++ b/layouts/blog/single.html
@@ -1,15 +1,15 @@
{{ define "main" }}
+{{ $wideViewAsDefault := ($.Param "wideViewAsDefault") }}
<div class="mid">
<div class="divider">
- <nav id="single-menu" class="l" data-dir="{{ $.Param "languagedir" | default "ltr" }}">
+ <nav id="single-menu" class="{{ if $wideViewAsDefault }}hide{{ else }}l{{ end }}" data-dir="{{ $.Param "languagedir" | default "ltr" }}">
</nav>
- <article id="list-main" class="m" data-dir="{{ $.Param "languagedir" | default "ltr" }}">
+ <article id="list-main" class="{{ if $wideViewAsDefault }}lm{{ else }}m{{ end }}" data-dir="{{ $.Param "languagedir" | default "ltr" }}">
{{ if $.Param "enableBlogBreadcrumb" }}
{{ partial "main/component/breadcrumb.html" . }}
{{ end }}
- {{ partial "main/component/toggle-sidebar.html" . }}
{{ partial "main/sections/list-main.html" . }}
{{ partial "main/component/pagination-single.html" . }}
</article>
@@ -28,17 +28,30 @@
var listSide = document.getElementById('list-side');
var listMain = document.getElementById('list-main');
var singleMenu = document.getElementById('single-menu');
+ var wideViewAsDefault = JSON.parse({{ $wideViewAsDefault | jsonify }});
enquire.register("screen and (max-width:1280px)", {
match: function () {
- listSide.className = 'r';
- listMain.className = 'm';
- singleMenu.className = 'l';
+ if (wideViewAsDefault) {
+ singleMenu.className = 'hide';
+ listMain.className = 'lm';
+ listSide.className = 'r';
+ } else {
+ singleMenu.className = 'l';
+ listMain.className = 'm';
+ listSide.className = 'r';
+ }
},
unmatch: function () {
- listSide.className = 'r';
- listMain.className = 'm';
- singleMenu.className = 'l';
+ if (wideViewAsDefault) {
+ singleMenu.className = 'hide';
+ listMain.className = 'lm';
+ listSide.className = 'r';
+ } else {
+ singleMenu.className = 'l';
+ listMain.className = 'm';
+ listSide.className = 'r';
+ }
},
}).register("screen and (max-width:960px)", {
match: function () {
@@ -47,9 +60,15 @@
singleMenu.className = 'hide';
},
unmatch: function () {
- listSide.className = 'r';
- listMain.className = 'm';
- singleMenu.className = 'l';
+ if (wideViewAsDefault) {
+ singleMenu.className = 'hide';
+ listMain.className = 'lm';
+ listSide.className = 'r';
+ } else {
+ singleMenu.className = 'l';
+ listMain.className = 'm';
+ listSide.className = 'r';
+ }
},
}).register("screen and (max-width:600px)", {
match: function () {
@@ -61,7 +80,6 @@
listSide.className = 'r';
listMain.className = 'lm';
singleMenu.className = 'hide';
-
},
});
</script>
diff --git a/layouts/partials/head/scripts.html b/layouts/partials/head/scripts.html
index 6fa78c1..13c9d5b 100644
--- a/layouts/partials/head/scripts.html
+++ b/layouts/partials/head/scripts.html
@@ -8,10 +8,13 @@
{{ end }}
{{ end }}
+{{ if $.Param "enableSearch" }}
+ {{ $fuse := resources.Get "js/fuse.min.js" | resources.Fingerprint }}
+ <script defer src="{{ $fuse.RelPermalink }}"></script>
+{{ end }}
+
{{ $enquire := resources.Get "js/enquire.min.js" | resources.Fingerprint }}
<script src="{{ $enquire.RelPermalink }}"></script>
-{{ $fuse := resources.Get "js/fuse.min.js" | resources.Fingerprint }}
-<script defer src="{{ $fuse.RelPermalink }}"></script>
{{ $lazysizes := resources.Get "js/lazysizes.min.js" | resources.Fingerprint }}
<script defer src="{{ $lazysizes.RelPermalink }}"></script>
{{ $getParents := resources.Get "js/helper/getParents.js" | resources.Minify | resources.Fingerprint }}
@@ -29,10 +32,12 @@
// ==================== toc visibility ========================
var toggleSidebarElem = document.getElementById("toggle-sidebar");
+ var toggleMenuElem = document.getElementById("toggle-menu");
var tocBodyElem = document.querySelector('.toc__body');
var tocLabelElem = document.querySelector('.toc__label');
var listMainElem = document.getElementById('list-main');
var listSideElem = document.getElementById('list-side');
+ var singleMenuElem = document.getElementById('single-menu');
var sliderIcons = document.querySelectorAll('.slider__icon');
toggleSidebarElem ?
@@ -78,8 +83,41 @@
});
}
}) : null;
+
+ toggleMenuElem ?
+ toggleMenuElem.addEventListener('change', function (e) {
+ if (e.target.checked) {
+ if (listMainElem && singleMenuElem) {
+ listMainElem.className = 'm';
+ singleMenuElem.className = 'l';
+ }
+
+ sliderIcons && sliderIcons.forEach(function (elem) {
+ if (elem.classList.contains('hide')) {
+ elem.classList.remove('hide');
+ } else {
+ elem.classList.add('hide');
+ }
+ });
+
+ } else {
+ if (listMainElem && singleMenuElem) {
+ listMainElem.className = 'lm';
+ singleMenuElem.className = 'hide';
+ }
+
+ sliderIcons && sliderIcons.forEach(function (elem) {
+ if (elem.classList.contains('hide')) {
+ elem.classList.remove('hide');
+ } else {
+ elem.classList.add('hide');
+ }
+ });
+ }
+ }) : null;
// ============================================================
+
// ===================== navbar collapse ======================
var navCollapseBtn = document.getElementById('navCollapseBtn');
navCollapseBtn ? navCollapseBtn.addEventListener('click', function(e) {
@@ -119,6 +157,66 @@
}
// ============================================================
+
+
+ // ============================ tab ============================
+ document.querySelectorAll('.tab') ?
+ document.querySelectorAll('.tab').forEach(function(elem, idx) {
+ var containerId = elem.getAttribute('id');
+ var containerElem = elem;
+ var tabLinks = elem.querySelectorAll('.tab__link');
+ var tabContents = elem.querySelectorAll('.tab__content');
+ var ids = [];
+
+ tabLinks && tabLinks.length > 0 ?
+ tabLinks.forEach(function(link, index, self) {
+ link.onclick = function(e) {
+ for (var i = 0; i < self.length; i++) {
+ if (index === parseInt(i, 10)) {
+ if (!self[i].classList.contains('active')) {
+ self[i].classList.add('active');
+ tabContents[i].style.display = 'block';
+ }
+ } else {
+ self[i].classList.remove('active');
+ tabContents[i].style.display = 'none';
+ }
+ }
+ }
+ }) : null;
+ }) : null;
+ // =============================================================
+
+
+ // ========================== codetab ==========================
+ document.querySelectorAll('.codetab') ?
+ document.querySelectorAll('.codetab').forEach(function(elem, idx) {
+ var containerId = elem.getAttribute('id');
+ var containerElem = elem;
+ var codetabLinks = elem.querySelectorAll('.codetab__link');
+ var codetabContents = elem.querySelectorAll('.codetab__content');
+ var ids = [];
+
+ codetabLinks && codetabLinks.length > 0 ?
+ codetabLinks.forEach(function(link, index, self) {
+ link.onclick = function(e) {
+ for (var i = 0; i < self.length; i++) {
+ if (index === parseInt(i, 10)) {
+ if (!self[i].classList.contains('active')) {
+ self[i].classList.add('active');
+ codetabContents[i].style.display = 'block';
+ }
+ } else {
+ self[i].classList.remove('active');
+ codetabContents[i].style.display = 'none';
+ }
+ }
+ }
+ }) : null;
+ }) : null;
+ // =============================================================
+
+
// ======================= toggle theme =======================
var root = document.getElementById('root');
@@ -456,8 +554,12 @@
// ========================== search ==========================
- {{ $searchURL:= ("/" | absLangURL) }}
- var searchURL = JSON.parse({{ $searchURL | jsonify }});
+ {{ $baseurl := $.Site.BaseURL }}
+ var baseurl = JSON.parse({{ $baseurl | jsonify }});
+ {{ $permalink := .Permalink }}
+ var permalink = JSON.parse({{ $permalink | jsonify }});
+ {{ $langprefix := $.Site.LanguagePrefix }}
+ var langprefix = JSON.parse({{ $langprefix | jsonify }});
var searchResults = null;
var searchMenu = null;
var searchText = null;
@@ -472,7 +574,7 @@
if (enableSearch) {
(function initFuse() {
var xhr = new XMLHttpRequest();
- xhr.open('GET', searchURL + "index.json");
+ xhr.open('GET', baseurl + langprefix + "/index.json");
xhr.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
xhr.onload = function () {
if (xhr.status === 200) {
diff --git a/layouts/partials/header/blog-header-img.html b/layouts/partials/header/blog-header-img.html
index 4f4302b..e3cdfb7 100644
--- a/layouts/partials/header/blog-header-img.html
+++ b/layouts/partials/header/blog-header-img.html
@@ -1,12 +1,12 @@
{{ if .Params.header }}
{{ range .Params.header }}
{{ if eq .type "img" }}
- <div class="site-header site-header__align-{{ .align }}" style="background-image: url('{{ .imageSrc | relURL }}'); background-size: {{ .imageSize }};
+ <div class="blog-header blog-header__align-{{ .align }}" style="background-image: url('{{ .imageSrc | relURL }}'); background-size: {{ .imageSize }};
background-repeat: {{ .imageRepeat }}; background-position: {{ .imagePosition }}; width: 100%; height: {{ .height }}px; padding: {{ .paddingY }}px {{ .paddingX }}px;">
{{ $header := . }}
{{ if .title }}
{{ range .title }}
- <div class="site-header__title {{ if $header.titleShadow }}site-header__title--shadow{{ end }}" style="font-size: {{ $header.titleFontSize }}px; {{ with $header.titleColor }}color:{{ . }}{{ end }};">
+ <div class="blog-header__title {{ if $header.titleShadow }}blog-header__title--shadow{{ end }}" style="font-size: {{ $header.titleFontSize }}px; {{ with $header.titleColor }}color:{{ . }}{{ end }};">
{{ . }}
</div>
{{ end }}
@@ -15,8 +15,8 @@
<div style="height: {{ .spaceBetweenTitleSubtitle }}px"></div>
{{ end }}
{{ if .subtitle }}
- {{ range .subtitle }}
- <div class="site-header__subtitle" style="font-size: {{ $header.subtitleFontSize }}px; {{ with $header.subtitleColor }}color:{{ . }}{{ end }}" data-cursive="{{ with $header.subtitleCursive }}{{ . }}{{ end }}">
+ {{ range .subtitle }}
+ <div class="blog-header__subtitle" style="font-size: {{ $header.subtitleFontSize }}px; {{ with $header.subtitleColor }}color:{{ . }}{{ end }}">
{{ . }}
</div>
{{ end }}
diff --git a/layouts/partials/header/blog-header-text.html b/layouts/partials/header/blog-header-text.html
index fe352e1..bc17021 100644
--- a/layouts/partials/header/blog-header-text.html
+++ b/layouts/partials/header/blog-header-text.html
@@ -1,13 +1,13 @@
-{{ if .Params.header }}
- {{ range .Params.header }}
+{{ if $.Params.header }}
+ {{ range $.Params.header }}
{{ if eq .type "text" }}
- <div class="blog-header blog-header__align-{{ .align }}" style="width: 100%; height: {{ $.Param "headerHeight" | default 112 }}px;">
+ <div class="blog-header blog-header__align-{{ .align }}" style="width: 100%; height: {{ .height | default 112 }}px;">
{{ $header := . }}
{{ if .title }}
{{ range .title }}
- <div class="blog-header__title" style="font-size: {{ $header.titleFontSize }}px; {{ with $header.titleColor }}color:{{ . }}{{ end }};">
- {{ . }}
- </div>
+ <div class="blog-header__title" style="font-size: {{ $header.titleFontSize }}px; {{ with $header.titleColor }}color:{{ . }}{{ end }};">
+ {{ . }}
+ </div>
{{ end }}
{{ end }}
{{ if .spaceBetweenTitleSubtitle }}
@@ -15,9 +15,9 @@
{{ end }}
{{ if .subtitle }}
{{ range .subtitle }}
- <div class="blog-header__subtitle" style="font-size: {{ $header.subtitleFontSize }}px; {{ with $header.subtitleColor }}color:{{ . }}{{ end }}" data-cursive="{{ with $header.subtitleCursive }}{{ . }}{{ end }}">
- {{ . }}
- </div>
+ <div class="blog-header__subtitle" style="font-size: {{ $header.subtitleFontSize }}px; {{ with $header.subtitleColor }}color:{{ . }}{{ end }}" data-cursive="{{ with $header.subtitleCursive }}{{ . }}{{ end }}">
+ {{ . }}
+ </div>
{{ end }}
{{ end }}
</div>
diff --git a/layouts/partials/header/taxo-header.html b/layouts/partials/header/taxo-header.html
deleted file mode 100644
index 2d31e35..0000000
--- a/layouts/partials/header/taxo-header.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<div class="blog-header blog-header__align-center" style="width: 100%; height: {{ $.Param "headerHeight" | default 112 }}px;">
- <div class="blog-header__title">
- {{ .Title }}
- </div>
-</div> \ No newline at end of file
diff --git a/layouts/partials/main/component/breadcrumb.html b/layouts/partials/main/component/breadcrumb.html
index 1f16ce1..053f379 100644
--- a/layouts/partials/main/component/breadcrumb.html
+++ b/layouts/partials/main/component/breadcrumb.html
@@ -1,4 +1,7 @@
<nav class="breadcrumb" aria-label="breadcrumbs" data-is-blog="{{ if eq .Type "blog" }}true{{ else }}false{{ end }}">
+ {{ if eq .Type "blog" }}
+ {{ partial "main/component/toggle-menu.html" . }}
+ {{ end }}
<ol>
{{ template "breadcrumbnav" (dict "p1" . "p2" .) }}
</ol>
diff --git a/layouts/partials/main/component/tag-cloud.html b/layouts/partials/main/component/tag-cloud.html
new file mode 100644
index 0000000..8c39940
--- /dev/null
+++ b/layouts/partials/main/component/tag-cloud.html
@@ -0,0 +1,18 @@
+{{ $totalTag := (len .Site.Taxonomies.tags) }}
+<h6 class="tag-cloud__label">
+ {{ .Title }}
+</h6>
+<div class="tag-cloud__tags">
+ {{ range $index, $element := .Site.Taxonomies.tags }}
+ {{ if $index }}
+ <a href="{{ $element.Page.RelPermalink }}" class="tag">
+ <span class="tag__text" style="font-size: {{ add 0.8 (div (len $element) (mul 1.0 $totalTag)) }}rem;">
+ {{ $element.Page.Title }}
+ </span>
+ <span class="tag__num" style="font-size: {{ add 0.8 (div (len $element) (mul 1.0 $totalTag)) }}rem;" dir="auto">
+ ({{ printf "%#v" (len $element) }})
+ </span>
+ </a>
+ {{ end }}
+ {{ end }}
+</div> \ No newline at end of file
diff --git a/layouts/partials/main/component/toggle-menu.html b/layouts/partials/main/component/toggle-menu.html
new file mode 100644
index 0000000..365bff8
--- /dev/null
+++ b/layouts/partials/main/component/toggle-menu.html
@@ -0,0 +1,25 @@
+{{ if $.Param "enableWideBlogSwitch" }}
+ <label class="switch switch__abs">
+ {{ if ($.Param "wideViewAsDefault") }}
+ <input id="toggle-menu" aria-label="Toggle Menu Visibility" type="checkbox" />
+ <span class="slider">
+ <span class="slider__icon {{ if (ne ($.Param "languagedir") "rtl") }}{{ else }}hide{{ end }}">
+ {{ partial "svgs/arrow-forward.svg" (dict "width" 20 "height" 20) }}
+ </span>
+ <span class="slider__icon {{ if (ne ($.Param "languagedir") "rtl") }}hide{{ end }}">
+ {{ partial "svgs/arrow-back.svg" (dict "width" 20 "height" 20) }}
+ </span>
+ </span>
+ {{ else }}
+ <input id="toggle-menu" aria-label="Toggle Menu Visibility" type="checkbox" checked />
+ <span class="slider">
+ <span class="slider__icon {{ if (ne ($.Param "languagedir") "rtl") }}{{ else }}hide{{ end }}">
+ {{ partial "svgs/arrow-back.svg" (dict "width" 20 "height" 20) }}
+ </span>
+ <span class="slider__icon {{ if (ne ($.Param "languagedir") "rtl") }}hide{{ end }}">
+ {{ partial "svgs/arrow-forward.svg" (dict "width" 20 "height" 20) }}
+ </span>
+ </span>
+ {{ end }}
+ </label>
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/main/component/toggle-sidebar.html b/layouts/partials/main/component/toggle-sidebar.html
index 93c7078..c06656f 100644
--- a/layouts/partials/main/component/toggle-sidebar.html
+++ b/layouts/partials/main/component/toggle-sidebar.html
@@ -1,13 +1,26 @@
{{ if $.Param "enableTocSwitch" }}
- <label class="switch">
- <input id="toggle-sidebar" aria-label="Toggle Sidebar Visibility" type="checkbox" checked />
- <span class="slider">
- <span class="slider__icon">
- {{ partial "svgs/arrow-forward.svg" (dict "width" 20 "height" 20) }}
+ <label class="switch switch__rel">
+ {{ if ($.Param "wideViewAsDefault") }}
+ <input id="toggle-sidebar" aria-label="Toggle Sidebar Visibility" type="checkbox" />
+ <span class="slider">
+ <span class="slider__icon {{ if (ne ($.Param "languagedir") "rtl") }}{{ else }}hide{{ end }}">
+ {{ partial "svgs/arrow-forward.svg" (dict "width" 20 "height" 20) }}
+ </span>
+ <span class="slider__icon {{ if (ne ($.Param "languagedir") "rtl") }}hide{{ end }}">
+ {{ partial "svgs/arrow-back.svg" (dict "width" 20 "height" 20) }}
+ </span>
</span>
- <span class="slider__icon hide">
- {{ partial "svgs/arrow-back.svg" (dict "width" 20 "height" 20) }}
+ {{ else }}
+ <input id="toggle-sidebar" aria-label="Toggle Sidebar Visibility" type="checkbox" checked />
+ <span class="slider">
+ <span class="slider__icon {{ if (ne ($.Param "languagedir") "rtl") }}{{ else }}hide{{ end }}">
+ {{ partial "svgs/arrow-back.svg" (dict "width" 20 "height" 20) }}
+ </span>
+ <span class="slider__icon {{ if (ne ($.Param "languagedir") "rtl") }}hide{{ end }}">
+ {{ partial "svgs/arrow-forward.svg" (dict "width" 20 "height" 20) }}
+ </span>
</span>
- </span>
+ {{ end }}
+
</label>
{{ end }} \ No newline at end of file
diff --git a/layouts/partials/main/header.html b/layouts/partials/main/header.html
index dfc8595..153d90f 100644
--- a/layouts/partials/main/header.html
+++ b/layouts/partials/main/header.html
@@ -14,6 +14,7 @@
{{ partial "main/component/breadcrumb.html" . }}
{{ end }}
<div class="grow"></div>
+ {{ partial "main/component/toggle-sidebar.html" . }}
{{ partial "main/component/edit-this-page.html" . }}
</div>
</div>
diff --git a/layouts/partials/main/landing/section-card.html b/layouts/partials/main/landing/section-card.html
index 1b98642..8d02402 100644
--- a/layouts/partials/main/landing/section-card.html
+++ b/layouts/partials/main/landing/section-card.html
@@ -24,7 +24,7 @@
<div class="section__card--item">
{{ with .image }}
<div class="section__card--img-wrapper">
- <img data-src="{{ . | relURL }}" width="{{ $card.imgWidth | default "100px" }}" alt="{{ $card.subtitle | default "section image" }}" src="data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath fill='%23aaa' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-4.44-6.19l-2.35 3.02-1.56-1.88c-.2-.25-.58-.24-.78.01l-1.74 2.23c-.26.33-.02.81.39.81h8.98c.41 0 .65-.47.4-.8l-2.55-3.39c-.19-.26-.59-.26-.79 0z'/%3E%3C/svg%3E" class="lazyload section__card--img"/>
+ <img data-src="{{ . | relURL }}" alt="{{ $card.subtitle | default "section image" }}" src="data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath fill='%23aaa' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-4.44-6.19l-2.35 3.02-1.56-1.88c-.2-.25-.58-.24-.78.01l-1.74 2.23c-.26.33-.02.81.39.81h8.98c.41 0 .65-.47.4-.8l-2.55-3.39c-.19-.26-.59-.26-.79 0z'/%3E%3C/svg%3E" class="lazyload section__card--img"/>
</div>
{{ end }}
<div class="section__card--submain">
@@ -63,4 +63,4 @@
{{ end }}
</div>
{{ end }}
-</div>
+</div> \ No newline at end of file
diff --git a/layouts/partials/main/list.html b/layouts/partials/main/list.html
index 2215bde..46c192e 100644
--- a/layouts/partials/main/list.html
+++ b/layouts/partials/main/list.html
@@ -8,7 +8,6 @@
</nav>
<article id="list-main" class="m" data-dir="{{ $.context.Param "languagedir" | default "ltr" }}">
- {{ partial "main/component/toggle-sidebar.html" .context }}
{{ partial "main/sections/list-main.html" .context }}
{{ if .section_to_display }}
{{ partial "main/sections/list-section.html" (dict "section_to_display" .section_to_display) }}
@@ -26,7 +25,8 @@
var listSide = document.getElementById('list-side');
var listMain = document.getElementById('list-main');
var listMenu = document.getElementById('list-menu');
-
+ var switchElem = document.querySelector('.switch');
+
enquire.register("screen and (max-width:1280px)", {
match: function () {
listSide.className = 'r';
@@ -43,22 +43,26 @@
listSide.className = 'hide';
listMain.className = 'mr';
listMenu.className = 'l';
+ switchElem.className = 'hide';
},
unmatch: function () {
listSide.className = 'r';
listMain.className = 'm';
listMenu.className = 'l';
+ switchElem.className = 'switch';
},
}).register("screen and (max-width:600px)", {
match: function () {
listSide.className = 'hide';
listMain.className = 'lmr';
listMenu.className = 'hide';
+ switchElem.className = 'hide';
},
unmatch: function () {
listSide.className = 'hide';
listMain.className = 'mr';
listMenu.className = 'l';
+ switchElem.className = 'hide';
},
});
</script> \ No newline at end of file
diff --git a/layouts/partials/main/single.html b/layouts/partials/main/single.html
index ef4b1c6..1a62da7 100644
--- a/layouts/partials/main/single.html
+++ b/layouts/partials/main/single.html
@@ -1,3 +1,5 @@
+{{ $wideViewAsDefault := ($.Param "wideViewAsDefault") }}
+
<div class="mid">
<div class="divider">
@@ -7,14 +9,13 @@
{{ end }}
</nav>
- <article id="list-main" class="m" data-dir="{{ $.Param "languagedir" | default "ltr" }}">
- {{ partial "main/component/toggle-sidebar.html" . }}
+ <article id="list-main" class="{{ if $wideViewAsDefault }}mr{{ else }}m{{ end }}" data-dir="{{ $.Param "languagedir" | default "ltr" }}">
{{ partial "main/sections/list-main.html" . }}
{{ partial "main/component/pagination-single.html" . }}
{{ partial "comments/comments.html" . }}
</article>
- <section id="list-side" class="r" data-dir="{{ $.Param "languagedir" | default "ltr" }}">
+ <section id="list-side" class="{{ if $wideViewAsDefault }}hide{{ else }}r{{ end }}" data-dir="{{ $.Param "languagedir" | default "ltr" }}">
{{ if $.Param "enableToc" }}
{{ partial "main/component/toc.html" . }}
{{ end }}
@@ -28,40 +29,72 @@
var listSide = document.getElementById('list-side');
var listMain = document.getElementById('list-main');
var singleMenu = document.getElementById('single-menu');
-
+ var switchElem = document.querySelector('.switch');
+ var wideViewAsDefault = JSON.parse({{ $wideViewAsDefault | jsonify }});
+
enquire.register("screen and (max-width:1280px)", {
match: function () {
- listSide.className = 'r';
- listMain.className = 'm';
- singleMenu.className = 'l';
+ if (wideViewAsDefault) {
+ console.log(1);
+ singleMenu.className = 'l';
+ listMain.className = 'mr';
+ listSide.className = 'hide';
+ } else {
+ console.log(2);
+ singleMenu.className = 'l';
+ listMain.className = 'm';
+ listSide.className = 'r';
+ }
},
unmatch: function () {
- listSide.className = 'r';
- listMain.className = 'm';
- singleMenu.className = 'l';
+ if (wideViewAsDefault) {
+ console.log(3);
+ singleMenu.className = 'l';
+ listMain.className = 'mr';
+ listSide.className = 'hide';
+ } else {
+ console.log(4);
+ listSide.className = 'r';
+ listMain.className = 'm';
+ singleMenu.className = 'l';
+ }
},
}).register("screen and (max-width:960px)", {
match: function () {
- listSide.className = 'hide';
- listMain.className = 'mr';
+ console.log(5);
singleMenu.className = 'l';
+ listMain.className = 'mr';
+ listSide.className = 'hide';
+ switchElem.className = 'hide';
},
unmatch: function () {
- listSide.className = 'r';
- listMain.className = 'm';
- singleMenu.className = 'l';
+ if (wideViewAsDefault) {
+ console.log(6);
+ singleMenu.className = 'l';
+ listMain.className = 'mr';
+ listSide.className = 'hide';
+ } else {
+ console.log(7);
+ singleMenu.className = 'l';
+ listMain.className = 'm';
+ listSide.className = 'r';
+ }
+ switchElem.className = 'switch';
},
}).register("screen and (max-width:600px)", {
match: function () {
+ console.log(8);
listSide.className = 'hide';
listMain.className = 'lmr';
singleMenu.className = 'hide';
+ switchElem.className = 'hide';
},
unmatch: function () {
+ console.log(9);
listSide.className = 'hide';
listMain.className = 'mr';
singleMenu.className = 'l';
-
+ switchElem.className = 'hide';
},
});
</script> \ No newline at end of file
diff --git a/layouts/shortcodes/boxmd.html b/layouts/shortcodes/boxmd.html
new file mode 100644
index 0000000..0c314ec
--- /dev/null
+++ b/layouts/shortcodes/boxmd.html
@@ -0,0 +1 @@
+<div class="box">{{ .Inner | markdownify }}</div> \ No newline at end of file
diff --git a/layouts/shortcodes/code.html b/layouts/shortcodes/code.html
new file mode 100644
index 0000000..67e1426
--- /dev/null
+++ b/layouts/shortcodes/code.html
@@ -0,0 +1,4 @@
+{{ $id := substr (md5 .Inner) 0 16 }}
+<div id="{{ $id }}" class="codetab__content">
+ {{ .Inner | markdownify }}
+</div> \ No newline at end of file
diff --git a/layouts/shortcodes/codes.html b/layouts/shortcodes/codes.html
new file mode 100644
index 0000000..19a6a23
--- /dev/null
+++ b/layouts/shortcodes/codes.html
@@ -0,0 +1,47 @@
+{{ $id := substr (md5 .Inner) 0 16 }}
+<div id="{{ $id }}" class="codetab">
+ <div class="codetab__links">
+ {{ range .Params }}
+ <button class="codetab__link" aria-label="Tab link">{{ . }}</button>
+ {{ end }}
+ </div>
+ {{ .Inner }}
+</div>
+
+<script>
+ 'use strict';
+
+ var containerId = JSON.parse({{ $id | jsonify }});
+ var containerElem = document.getElementById(containerId);
+ var codetabLinks = null;
+ var codetabContents = null;
+ var ids = [];
+
+ if (containerElem) {
+ codetabLinks = containerElem.querySelectorAll('.codetab__link');
+ codetabContents = containerElem.querySelectorAll('.codetab__content');
+ }
+
+ for (var i = 0; i < codetabContents.length; i++) {
+ ids = ids.concat(codetabContents[i].getAttribute('id'));
+ codetabContents[i].style.display = 'none';
+
+ if (0 === parseInt(i, 10) && !codetabContents[i].classList.contains('active')) {
+ codetabContents[i].classList.add('active');
+ }
+ }
+
+ for (var i = 0; i < codetabLinks.length; i++) {
+ codetabLinks[i].setAttribute('id', ids[i]);
+
+ if (0 === parseInt(i, 10) && !codetabLinks[i].classList.contains('active')) {
+ codetabLinks[i].classList.add('active');
+ } else {
+ codetabLinks[i].classList.remove('active');
+ }
+ }
+
+ if (codetabContents.length > 0) {
+ codetabContents[0].style.display = 'block';
+ }
+</script> \ No newline at end of file
diff --git a/layouts/shortcodes/tab.html b/layouts/shortcodes/tab.html
new file mode 100644
index 0000000..2541912
--- /dev/null
+++ b/layouts/shortcodes/tab.html
@@ -0,0 +1,4 @@
+{{ $id := substr (md5 .Inner) 0 16 }}
+<div id="{{ $id }}" class="tab__content">
+ {{ .Inner | markdownify }}
+</div> \ No newline at end of file
diff --git a/layouts/shortcodes/tabs.html b/layouts/shortcodes/tabs.html
new file mode 100644
index 0000000..c29ecda
--- /dev/null
+++ b/layouts/shortcodes/tabs.html
@@ -0,0 +1,47 @@
+{{ $id := substr (md5 .Inner) 0 16 }}
+<div id="{{ $id }}" class="tab">
+ <div class="tab__links">
+ {{ range .Params }}
+ <button class="tab__link" aria-label="Tab link">{{ . }}</button>
+ {{ end }}
+ </div>
+ {{ .Inner }}
+</div>
+
+<script>
+ 'use strict';
+
+ var containerId = JSON.parse({{ $id | jsonify }});
+ var containerElem = document.getElementById(containerId);
+ var tabLinks = null;
+ var tabContents = null;
+ var ids = [];
+
+ if (containerElem) {
+ tabLinks = containerElem.querySelectorAll('.tab__link');
+ tabContents = containerElem.querySelectorAll('.tab__content');
+ }
+
+ for (var i = 0; i < tabContents.length; i++) {
+ ids = ids.concat(tabContents[i].getAttribute('id'));
+ tabContents[i].style.display = 'none';
+
+ if (0 === parseInt(i, 10) && !tabContents[i].classList.contains('active')) {
+ tabContents[i].classList.add('active');
+ }
+ }
+
+ for (var i = 0; i < tabLinks.length; i++) {
+ tabLinks[i].setAttribute('id', ids[i]);
+
+ if (0 === parseInt(i, 10) && !tabLinks[i].classList.contains('active')) {
+ tabLinks[i].classList.add('active');
+ } else {
+ tabLinks[i].classList.remove('active');
+ }
+ }
+
+ if (tabContents.length > 0) {
+ tabContents[0].style.display = 'block';
+ }
+</script> \ No newline at end of file