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

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--assets/css/_core/_base.scss32
-rw-r--r--assets/css/_core/_layout.scss18
-rw-r--r--assets/css/_core/_media.scss10
-rw-r--r--assets/css/_page/_index.scss2
-rw-r--r--assets/css/_page/_post.scss8
-rw-r--r--assets/css/_partial/_post/_code.scss88
-rw-r--r--assets/css/_variables.scss17
-rw-r--r--assets/css/style.scss3
-rw-r--r--exampleSite/content/posts/LoveIt-Preview.md25
-rw-r--r--exampleSite/content/posts/emoji-support.md66
-rw-r--r--exampleSite/content/posts/markdown-syntax.md55
-rw-r--r--exampleSite/content/posts/placeholder-text.md76
-rw-r--r--exampleSite/content/posts/rich-content.md61
-rw-r--r--exampleSite/static/images/emoji.jpgbin0 -> 31139 bytes
-rw-r--r--exampleSite/static/images/hugo.pngbin0 -> 30468 bytes
-rw-r--r--layouts/_default/_markup/render-link.html2
-rw-r--r--layouts/_default/section.html2
-rw-r--r--layouts/_default/single.html2
-rw-r--r--layouts/_default/summary.html2
-rw-r--r--layouts/index.html2
-rw-r--r--layouts/posts/single.html4
-rw-r--r--layouts/taxonomy/list.html6
-rw-r--r--layouts/taxonomy/terms.html4
-rw-r--r--resources/_gen/assets/scss/css/style.scss_b95b077eb505d5c0aff8055eaced30ad.content2
-rw-r--r--theme.toml2
25 files changed, 345 insertions, 144 deletions
diff --git a/assets/css/_core/_base.scss b/assets/css/_core/_base.scss
index 6d1a264..57b4b2b 100644
--- a/assets/css/_core/_base.scss
+++ b/assets/css/_core/_base.scss
@@ -1,35 +1,37 @@
html {
font-family: $global-font-family;
+}
- /* scrollbar, only support webkit */
- &::-webkit-scrollbar {
- width: 8px;
- height: 8px;
- }
+/* scrollbar, only support webkit */
+::-webkit-scrollbar {
+ width: 6px;
+ height: 6px;
+}
- &::-webkit-scrollbar-thumb {
- height: 40px;
- background-color: #87878D;
- border-radius: 16px;
+::-webkit-scrollbar-thumb {
+ background-color: $scrollbar-color;
- &:hover {
- background-color: #A9A9B3;
- }
+ &:hover {
+ background-color: $scrollbar-hover-color;
}
}
::selection {
- background: rgba(0, 149, 255, 0.1);
+ background: $selection-color;
+
+ .dark-theme & {
+ background: $selection-color-dark;
+ }
}
body {
font-size: 16px;
font-weight: 400;
- line-height: 26px;
+ line-height: 1.5rem;
background-color: $global-background-color;
color: $global-font-color;
- &:before {
+ &::before {
content: "";
background-repeat: no-repeat;
background-position: center;
diff --git a/assets/css/_core/_layout.scss b/assets/css/_core/_layout.scss
index 52fb9b1..8e56844 100644
--- a/assets/css/_core/_layout.scss
+++ b/assets/css/_core/_layout.scss
@@ -2,17 +2,17 @@
.wrapper {
display: flex;
flex-direction: column;
- min-height: 98vh;
+ min-height: 97.5vh;
width: 100%;
-}
-.main {
- flex: 1 0 auto;
-}
+ main {
+ flex: 1 0 auto;
-.container {
- padding-left: 1rem;
- padding-right: 1rem;
+ .container {
+ padding-left: 1rem;
+ padding-right: 1rem;
+ }
+ }
}
.footer {
@@ -27,4 +27,4 @@
font-size: 2rem;
transform: translateY(35vh);
text-align: center;
-} \ No newline at end of file
+}
diff --git a/assets/css/_core/_media.scss b/assets/css/_core/_media.scss
index ab9fd36..1825df1 100644
--- a/assets/css/_core/_media.scss
+++ b/assets/css/_core/_media.scss
@@ -1,5 +1,5 @@
@media only screen and (max-width: 1800px) {
- .warpper {
+ .page {
max-width: 780px;
.post-toc {
@@ -10,7 +10,7 @@
}
@media only screen and (max-width: 1440px) {
- .warpper {
+ .page {
max-width: 680px;
.post-toc {
@@ -21,7 +21,7 @@
}
@media only screen and (max-width: 1200px) {
- .warpper {
+ .page {
max-width: 560px;
.post-toc {
@@ -38,7 +38,7 @@
}
}
- .warpper {
+ .page {
max-width: 80%;
.post-toc {
@@ -60,7 +60,7 @@
display: block;
}
- .warpper {
+ .page {
max-width: 100%;
.categories-card {
diff --git a/assets/css/_page/_index.scss b/assets/css/_page/_index.scss
index 568d9fd..ce3a8a7 100644
--- a/assets/css/_page/_index.scss
+++ b/assets/css/_page/_index.scss
@@ -1,6 +1,6 @@
@import "_home";
-.warpper {
+.page {
position: relative;
width: 100%;
max-width: 980px;
diff --git a/assets/css/_page/_post.scss b/assets/css/_page/_post.scss
index da722a6..f2a23fc 100644
--- a/assets/css/_page/_post.scss
+++ b/assets/css/_page/_post.scss
@@ -138,6 +138,14 @@
.table-wrapper {
overflow-x: auto;
+ &::-webkit-scrollbar {
+ background-color: $table-background-color;
+
+ .dark-theme & {
+ background-color: $table-background-color-dark;
+ }
+ }
+
> table {
width: 100%;
max-width: 100%;
diff --git a/assets/css/_partial/_post/_code.scss b/assets/css/_partial/_post/_code.scss
index 6be9795..661e3f0 100644
--- a/assets/css/_partial/_post/_code.scss
+++ b/assets/css/_partial/_post/_code.scss
@@ -1,19 +1,9 @@
code,
pre {
- padding: 7px;
font-size: $code-font-size;
font-family: $code-font-family;
- background: $code-background-color;
-
- .dark-theme & {
- background: $code-background-color-dark;
- }
-}
-
-code {
- padding: 3px 5px;
- border-radius: 4px;
color: $code-color;
+ padding: 5px;
background: $code-background-color;
.dark-theme & {
@@ -22,50 +12,46 @@ code {
}
}
-p > code {
- background: darken($code-background-color, 3%);
-
- .dark-theme & {
- color: $code-color-dark;
- background: darken($code-background-color-dark, 3%);
- }
+.highlight > pre.chroma {
+ padding: 38px 7px 8px;
+ overflow-x: auto;
}
-// chroma
.highlight > .chroma {
margin: 1em 0;
- border-radius: 6px;
- overflow-x: auto;
position: relative;
- background: $code-background-color;
+ font-family: $code-font-family;
code {
padding: 0;
}
- table {
- position: relative;
-
- &::after {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- padding: 2px 7px;
- font-size: $code-font-size;
- font-weight: bold;
- color: darken($code-info-color, 10%);
- background: darken($code-background-color, 3%);
- content: 'Code';
-
- .dark-theme & {
- background: darken($code-background-color-dark, 3%);
- }
+ pre {
+ margin: 0;
+ padding: 38px 7px 8px;
+ overflow-x: visible;
+ }
+
+ &::after {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ padding: 2px 7px;
+ font-size: $code-font-size;
+ font-weight: bold;
+ color: $code-info-color;
+ background: darken($code-background-color, 3%);
+ content: 'Code';
+
+ .dark-theme & {
+ color: $code-info-color-dark;
+ background: darken($code-background-color-dark, 3%);
}
}
@each $sign, $text in $code-type-list {
- &.#{$sign} table::after {
+ &.#{$sign}::after {
content: $text;
}
}
@@ -77,20 +63,10 @@ p > code {
&:first-child {
width: 10px;
-
- pre {
- margin: 0;
- padding: 38px 7px 8px;
- }
}
&:last-child {
vertical-align: top;
-
- pre {
- margin: 0;
- padding: 38px 10px 8px;
- }
}
}
@@ -106,10 +82,14 @@ p > code {
}
}
- /* LineNumbersTable */ .lnt { color: $code-info-color; }
- /* LineHighlight */ .hl {
+ /* LineNumbersTable */
+ .lnt {
+ color: $code-info-color;
+ }
+
+ /* LineHighlight */
+ .hl {
display: block;
- width: 100%;
background-color: darken($code-background-color, 5%);
.dark-theme & {
diff --git a/assets/css/_variables.scss b/assets/css/_variables.scss
index ac180f7..b1c76b6 100644
--- a/assets/css/_variables.scss
+++ b/assets/css/_variables.scss
@@ -11,7 +11,7 @@ $global-font-family: Lato, -apple-system, BlinkMacSystemFont, PingFang-SC-Regula
$global-background-color: #fff !default;
$global-background-color-dark: #292a2d !default;
-$navbar-background-color: #FAFAFA !default;
+$navbar-background-color: #fafafa !default;
$navbar-background-color-dark: #252627 !default;
// Text color of the body.
@@ -29,6 +29,12 @@ $global-link-hover-color-dark: #fff !default;
$global-border-color: #dcdcdc !default;
$global-border-color-dark: #4a4b50 !default;
+$scrollbar-color: #87878d !default;
+$scrollbar-hover-color: #a9a9b3 !default;
+
+$selection-color: rgba(38, 139, 211, 0.2) !default;
+$selection-color-dark: rgba(38, 139, 211, 0.3) !default;
+
$navbar-hover-color: #161209 !default;
$navbar-hover-color-dark: #fff !default;
@@ -47,7 +53,7 @@ $table-background-color: #fff !default;
$table-background-color-dark: #272c34 !default;
// Color of the table thead.
-$table-thead-color: #EDEDED !default;
+$table-thead-color: #ededed !default;
$table-thead-color-dark: #20252b !default;
// ========== Code ========== //
@@ -59,13 +65,16 @@ $code-color-dark: #E5BF78 !default;
$code-background-color: #f5f5f5 !default;
$code-background-color-dark: #272C34 !default;
-$code-info-color: #cacaca !default;
+$code-info-color: #b1b0b0 !default;
+$code-info-color-dark: #b1b0b0 !default;
// Font size of code.
$code-font-size: 13px !default;
+@import url('https://fonts.googleapis.com/css?family=Fira+Mono:400,700&display=swap&subset=latin-ext');
+
// Font family of the code.
-$code-font-family: Source Code Pro, Consolas, Liberation Mono, Menlo, Courier, monospace !default;
+$code-font-family: Fira Mono, Source Code Pro, Menlo, monospace !default;
// Code type list.
$code-type-list: (
diff --git a/assets/css/style.scss b/assets/css/style.scss
index d3f4d0a..99701cd 100644
--- a/assets/css/style.scss
+++ b/assets/css/style.scss
@@ -1,4 +1,5 @@
@import "_variables";
+@import "_custom";
@import "_core/normalize";
@import "_core/base";
@@ -11,5 +12,3 @@
@import "_partial/pagination";
@import "_core/media";
-
-@import "_custom";
diff --git a/exampleSite/content/posts/LoveIt-Preview.md b/exampleSite/content/posts/LoveIt-Preview.md
deleted file mode 100644
index 30d44ac..0000000
--- a/exampleSite/content/posts/LoveIt-Preview.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-title: "LoveIt Theme Preview and Documentation"
-date: 2019-08-25T16:22:42+08:00
-lastmod: 2019-08-25T16:22:42+08:00
-draft: false
-description: "This is a LoveIt theme preview and documentation page."
-show_in_homepage: true
-show_description: false
-license: ""
-
-tags: ["Hugo", "Theme"]
-categories: ["Documentation"]
-
-featured_image: ""
-featured_image_preview: ""
-
-comment: true
-toc: true
-auto_collapse_toc: true
-math: true
----
-
-This is a [LoveIt](https://github.com/dillonzq/LoveIt) theme preview and documentation page.
-
-<!--more--> \ No newline at end of file
diff --git a/exampleSite/content/posts/emoji-support.md b/exampleSite/content/posts/emoji-support.md
new file mode 100644
index 0000000..008871b
--- /dev/null
+++ b/exampleSite/content/posts/emoji-support.md
@@ -0,0 +1,66 @@
+---
+author: "Hugo Authors"
+author_link: "https://gohugo.io/"
+title: "Emoji Support"
+date: 2019-10-01T17:55:28+08:00
+lastmod: 2019-10-01T17:55:28+08:00
+draft: false
+description: "Guide to emoji usage in Hugo"
+show_in_homepage: true
+show_description: false
+license: ""
+
+tags: [
+ "emoji",
+]
+categories: [
+ "theme",
+]
+
+featured_image: /images/emoji.jpg
+featured_image_preview: ""
+
+comment: true
+toc: false
+auto_collapse_toc: true
+math: false
+---
+
+Emoji can be enabled in a Hugo project in a number of ways.
+
+<!--more-->
+
+The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
+
+To enable emoji globally, set `enableEmoji` to `true` in your site’s [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
+
+<p><span class="nowrap"><span class="emojify">πŸ™ˆ</span> <code>:see_no_evil:</code></span> <span class="nowrap"><span class="emojify">πŸ™‰</span> <code>:hear_no_evil:</code></span> <span class="nowrap"><span class="emojify">πŸ™Š</span> <code>:speak_no_evil:</code></span></p>
+<br>
+
+The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
+
+***
+
+**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
+
+{{< highlight html >}}
+.emoji {
+ font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols;
+}
+{{< /highlight >}}
+
+{{< css.inline >}}
+<style>
+.emojify {
+ font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols;
+ font-size: 2rem;
+ vertical-align: middle;
+}
+@media screen and (max-width:650px) {
+ .nowrap {
+ display: block;
+ margin: 25px 0;
+ }
+}
+</style>
+{{< /css.inline >}}
diff --git a/exampleSite/content/posts/markdown-syntax.md b/exampleSite/content/posts/markdown-syntax.md
index 5724066..4502576 100644
--- a/exampleSite/content/posts/markdown-syntax.md
+++ b/exampleSite/content/posts/markdown-syntax.md
@@ -2,8 +2,8 @@
author: "Hugo Authors"
author_link: "https://gohugo.io/"
title: "Markdown Syntax Guide"
-date: 2020-01-30T21:57:40+08:00
-lastmod: 2020-01-30T21:57:40+08:00
+date: 2019-12-01T21:57:40+08:00
+lastmod: 2020-01-01T16:45:40+08:00
draft: false
description: "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
show_in_homepage: true
@@ -14,10 +14,9 @@ tags: [
"markdown",
"css",
"html",
- "themes",
]
categories: [
- "themes",
+ "theme",
]
featured_image: /images/markdown.png
@@ -26,7 +25,7 @@ featured_image_preview: ""
comment: true
toc: true
auto_collapse_toc: true
-math: false
+math: true
---
This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
@@ -73,6 +72,8 @@ in-line changes such as annotations and abbreviations.
> Don't communicate by sharing memory, share memory by communicating.</p>
> β€” <cite>Rob Pike[^1]</cite>
+[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+
## Tables
Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
@@ -88,11 +89,15 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou
| ---------- | --------- | ----------------- | ---------- |
| *italics* | **bold** | ~~strikethrough~~&nbsp;&nbsp;&nbsp; | `code` |
-## Code Blocks
+## Code
+
+### Inline code
+
+Inline code: `print`
### Code block with backticks
-```html
+```html {hl_lines=["8-9"],linenostart=10}
<!DOCTYPE html>
<html lang="en">
<head>
@@ -120,7 +125,7 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou
### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
+{{< highlight html "linenos=false" >}}
<!DOCTYPE html>
<html lang="en">
<head>
@@ -155,15 +160,35 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou
## Other Elements β€” abbr, sub, sup, kbd, mark
-<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
+* `abbr`
-H<sub>2</sub>O
+ <abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
-X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
+* Or ruby annotation
-Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
+ [GIF]^(Graphics Interchange Format) is a bitmap image format.
-Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms,
-and other small creatures.
+* `sub`/`sup`
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+ H<sub>2</sub>O
+
+ X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
+
+* Or `LaTex` formula
+
+ * Block
+
+ $$ H_2O $$
+
+ $$ X^n+Y^n=Z^n $$
+
+ * Inline: \\( H_2O \\) \\( X^n+Y^n=Z^n \\)
+
+* `kbd`
+
+ Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
+
+* `mark`
+
+ Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms,
+ and other small creatures.
diff --git a/exampleSite/content/posts/placeholder-text.md b/exampleSite/content/posts/placeholder-text.md
new file mode 100644
index 0000000..059273c
--- /dev/null
+++ b/exampleSite/content/posts/placeholder-text.md
@@ -0,0 +1,76 @@
+---
+author: "Hugo Authors"
+author_link: "https://gohugo.io/"
+title: "Placeholder Text"
+date: 2019-08-01T18:02:41+08:00
+lastmod: 2019-08-01T18:02:41+08:00
+draft: false
+description: "Lorem Ipsum Dolor Si Amet"
+show_in_homepage: true
+show_description: false
+license: ""
+
+tags: [
+ "markdown",
+ "text",
+]
+categories: [
+ "theme",
+]
+
+featured_image: ""
+featured_image_preview: ""
+
+comment: true
+toc: false
+auto_collapse_toc: true
+math: false
+---
+
+Lorem est tota propiore conpellat pectoribus de
+pectora summo. <!--more-->Redit teque digerit hominumque toris verebor lumina non cervice
+subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc
+caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis
+lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
+
+1. Exierant elisi ambit vivere dedere
+2. Duce pollice
+3. Eris modo
+4. Spargitque ferrea quos palude
+
+Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus
+silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria
+tractus malis.
+
+1. Comas hunc haec pietate fetum procerum dixit
+2. Post torum vates letum Tiresia
+3. Flumen querellas
+4. Arcanaque montibus omnes
+5. Quidem et
+
+## Vagus elidunt
+
+<svg class="canon" xmlns="http://www.w3.org/2000/svg" overflow="visible" viewBox="0 0 496 373" height="373" width="496"><g fill="none"><path stroke="#000" stroke-width=".75" d="M.599 372.348L495.263 1.206M.312.633l494.95 370.853M.312 372.633L247.643.92M248.502.92l246.76 370.566M330.828 123.869V1.134M330.396 1.134L165.104 124.515"></path><path stroke="#ED1C24" stroke-width=".75" d="M275.73 41.616h166.224v249.05H275.73zM54.478 41.616h166.225v249.052H54.478z"></path><path stroke="#000" stroke-width=".75" d="M.479.375h495v372h-495zM247.979.875v372"></path><ellipse cx="498.729" cy="177.625" rx=".75" ry="1.25"></ellipse><ellipse cx="247.229" cy="377.375" rx=".75" ry="1.25"></ellipse></g></svg>
+
+[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
+
+### Mane refeci capiebant unda mulcebat
+
+Victa caducifer, malo vulnere contra
+dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere
+furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
+
+Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli
+Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare
+Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert
+ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae
+vulnus haerentia iuste et exercebat, sui et.
+
+Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem
+Propoetides **parte**.
+
+{{< css.inline >}}
+<style>
+.canon { background: white; width: 100%; height: auto;}
+</style>
+{{< /css.inline >}}
diff --git a/exampleSite/content/posts/rich-content.md b/exampleSite/content/posts/rich-content.md
new file mode 100644
index 0000000..770b7c3
--- /dev/null
+++ b/exampleSite/content/posts/rich-content.md
@@ -0,0 +1,61 @@
+---
+author: "Hugo Authors"
+author_link: "https://gohugo.io/"
+title: "Rich Content"
+date: 2019-09-01T18:06:32+08:00
+lastmod: 2019-09-01T18:06:32+08:00
+draft: false
+description: "A brief description of Hugo Shortcodes"
+show_in_homepage: true
+show_description: false
+license: ""
+
+tags: [
+ "shortcodes",
+ "privacy",
+]
+categories: [
+ "theme",
+]
+
+featured_image: /images/hugo.png
+featured_image_preview: ""
+
+comment: true
+toc: false
+auto_collapse_toc: true
+math: false
+---
+
+Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
+<!--more-->
+
+---
+
+## Instagram Simple Shortcode
+
+{{< instagram_simple BGvuInzyFAe hidecaption >}}
+
+<br>
+
+---
+
+## YouTube Privacy Enhanced Shortcode
+
+{{< youtube ZJthWmvUzzc >}}
+
+<br>
+
+---
+
+## Twitter Simple Shortcode
+
+{{< twitter_simple 1085870671291310081 >}}
+
+<br>
+
+---
+
+## Vimeo Simple Shortcode
+
+{{< vimeo_simple 48912912 >}}
diff --git a/exampleSite/static/images/emoji.jpg b/exampleSite/static/images/emoji.jpg
new file mode 100644
index 0000000..5758440
--- /dev/null
+++ b/exampleSite/static/images/emoji.jpg
Binary files differ
diff --git a/exampleSite/static/images/hugo.png b/exampleSite/static/images/hugo.png
new file mode 100644
index 0000000..10265e4
--- /dev/null
+++ b/exampleSite/static/images/hugo.png
Binary files differ
diff --git a/layouts/_default/_markup/render-link.html b/layouts/_default/_markup/render-link.html
index cb9f027..d3224c2 100644
--- a/layouts/_default/_markup/render-link.html
+++ b/layouts/_default/_markup/render-link.html
@@ -6,5 +6,5 @@
target="_blank"
{{ end -}}
>
- {{- .Text -}}
+ {{- .Text | safeHTML -}}
</a> \ No newline at end of file
diff --git a/layouts/_default/section.html b/layouts/_default/section.html
index 78a693e..a6f7aac 100644
--- a/layouts/_default/section.html
+++ b/layouts/_default/section.html
@@ -4,7 +4,7 @@
{{- define "content" -}}
{{- $data := .Data -}}
- <div class="warpper archive">
+ <div class="page archive">
<h2 class="post-title animated pulse faster">
{{- T "all" | humanize}}{{ T .Section | default .Section | humanize -}}
</h2>
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index cdc44ca..4eebf85 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,7 +1,7 @@
{{- define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end -}}
{{- define "content" -}}
- <div class="warpper single">
+ <div class="page single">
<h1 class="post-title animated pulse faster">
{{- .Title -}}
</h1>
diff --git a/layouts/_default/summary.html b/layouts/_default/summary.html
index c67a5da..a5df4e5 100644
--- a/layouts/_default/summary.html
+++ b/layouts/_default/summary.html
@@ -28,7 +28,7 @@
{{- $name := . -}}
{{- with $.Site.GetPage "taxonomy" (printf "categories/%s" $name) | default ($.Site.GetPage "taxonomy" (printf "categories/%s" ($name | urlize))) -}}
<i class="far fa-folder fa-fw"></i>
- <a href="{{ .Permalink }}">{{ $name }}</a>
+ <a href="{{ .Permalink }}">{{ $name | humanize }}</a>
{{- end -}}
{{- end -}}
</span>
diff --git a/layouts/index.html b/layouts/index.html
index ad26191..20bef9d 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,6 +1,6 @@
{{- define "content" -}}
{{- if eq .Site.Params.home_mode "post" -}}
- <div class="warpper">
+ <div class="page">
{{- partial "home/profile.html" . -}}
{{- $paginator := where .Site.RegularPages "Type" "posts" -}}
diff --git a/layouts/posts/single.html b/layouts/posts/single.html
index 38fe8fb..93799af 100644
--- a/layouts/posts/single.html
+++ b/layouts/posts/single.html
@@ -5,7 +5,7 @@
{{- $author := .Params.author | default .Site.Author.name -}}
{{- $author_link := .Params.author_link | default .Site.Author.link | default .Site.BaseURL -}}
- <article class="warpper">
+ <article class="page">
<h1 class="post-title animated flipInX">{{ .Title }}</h1>
<div class="post-meta">
@@ -19,7 +19,7 @@
{{- range . -}}
{{- $name := . -}}
{{- with $.Site.GetPage "taxonomy" (printf "categories/%s" $name) | default ($.Site.GetPage "taxonomy" (printf "categories/%s" ($name | urlize))) -}}
- <i class="far fa-folder fa-fw"></i><a href="{{ .Permalink }}">{{ $name }}</a>
+ <i class="far fa-folder fa-fw"></i><a href="{{ .Permalink }}">{{ $name | humanize }}</a>
{{- end -}}
{{- end -}}
</span>
diff --git a/layouts/taxonomy/list.html b/layouts/taxonomy/list.html
index 7f5baa0..55a92b7 100644
--- a/layouts/taxonomy/list.html
+++ b/layouts/taxonomy/list.html
@@ -3,13 +3,13 @@
{{- end -}}
{{- define "content" -}}
- <div class="warpper archive">
+ <div class="page archive">
<h2 class="post-title animated pulse faster">
{{- $taxonomy := .Data.Singular -}}
{{- if eq $taxonomy "category" -}}
- <i class="far fa-folder-open fa-fw"></i>&nbsp;{{ .Title }}
+ <i class="far fa-folder-open fa-fw"></i>&nbsp;{{ humanize .Title }}
{{- else if eq $taxonomy "tag" -}}
- <i class="fas fa-tag fa-fw"></i>&nbsp;{{ .Title }}
+ <i class="fas fa-tag fa-fw"></i>&nbsp;{{ humanize .Title }}
{{- else -}}
{{- printf "%s - %s" (T $taxonomy | default (humanize $taxonomy)) .Title -}}
{{- end -}}
diff --git a/layouts/taxonomy/terms.html b/layouts/taxonomy/terms.html
index 38679fe..db17ffc 100644
--- a/layouts/taxonomy/terms.html
+++ b/layouts/taxonomy/terms.html
@@ -1,5 +1,5 @@
{{- define "title" -}}
- {{- T "all" | humanize}}{{ T .Data.Plural | default .Data.Plural | humanize }} | {{ .Site.Title -}}
+ {{- T "all" | humanize }}{{ T .Data.Plural | default .Data.Plural | humanize }} | {{ .Site.Title -}}
{{- end -}}
{{- define "content" -}}
@@ -7,7 +7,7 @@
{{- $terms := .Data.Terms.ByCount -}}
{{- $type := .Type -}}
- <div class="warpper archive">
+ <div class="page archive">
<h2 class="post-title animated pulse faster">
{{- T "all" | humanize}}{{ T $taxonomies | default $taxonomies | humanize -}}
</h2>
diff --git a/resources/_gen/assets/scss/css/style.scss_b95b077eb505d5c0aff8055eaced30ad.content b/resources/_gen/assets/scss/css/style.scss_b95b077eb505d5c0aff8055eaced30ad.content
index 9dfda81..e73e341 100644
--- a/resources/_gen/assets/scss/css/style.scss_b95b077eb505d5c0aff8055eaced30ad.content
+++ b/resources/_gen/assets/scss/css/style.scss_b95b077eb505d5c0aff8055eaced30ad.content
@@ -1 +1 @@
-@import "https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900";/*!normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}html{font-family:Lato,-apple-system,BlinkMacSystemFont,PingFang-SC-Regular,Hiragino Sans GB,Microsoft Yahei,Arial,sans-serif}html::-webkit-scrollbar{width:8px;height:8px}html::-webkit-scrollbar-thumb{height:40px;background-color:#87878d;border-radius:16px}html::-webkit-scrollbar-thumb:hover{background-color:#a9a9b3}::selection{background:rgba(0,149,255,.1)}body{font-size:16px;font-weight:400;line-height:26px;background-color:#fff;color:#161209}body:before{content:"";background-repeat:no-repeat;background-position:50%;opacity:.05;position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1;-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%);-o-filter:grayscale(100%);filter:grayscale(100%);filter:gray}body.dark-theme{color:#a9a9b3;background-color:#292a2d}a{color:#161209;text-decoration:none;transition:color .2s ease,border-color .2s ease,background .2s ease,opacity .2s ease}a:hover{color:#2d96bd}.dark-theme a{color:#a9a9b3}.dark-theme a:hover{color:#fff}.wrapper{display:flex;flex-direction:column;min-height:98vh;width:100%}.main{flex:1 0 auto}.container{padding-left:1rem;padding-right:1rem}.footer{height:2rem;width:100%;text-align:center;line-height:1.5rem;padding-top:2rem}.notfound{font-size:2rem;transform:translateY(35vh);text-align:center}.home-intro{transform:translateY(25vh);text-align:center}.home-intro .home-avatar{padding:.6rem}.home-intro .home-avatar img{width:8rem;height:auto;display:inline-block;-webkit-border-radius:100%;border-radius:100%;-webkit-box-shadow:0 0 0 .3618em rgba(0,0,0,.05);box-shadow:0 0 0 .3618em rgba(0,0,0,.05);margin:0 auto;-webkit-transition:all ease .4s;-moz-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s;cursor:pointer}.home-intro .home-avatar img:hover{position:relative;-webkit-transform:translateY(-0.75rem);-moz-transform:translateY(-0.75rem);-ms-transform:translateY(-0.75rem);-o-transform:translateY(-0.75rem);transform:translateY(-0.75rem);cursor:pointer}.home-intro .home-description{font-size:1rem;font-weight:400;padding:.4rem}.home-intro .home-social-links{padding-top:.6rem}.home-intro .home-social-links i{font-size:1.4rem}.warpper{position:relative;width:100%;max-width:980px;margin:0 auto;padding-top:6rem}.warpper .post-title{margin:0!important;font-size:1.8rem;line-height:3rem}.warpper .post-meta{font-size:.88rem;color:#a9a9b3}.warpper .post-meta span{display:inline-block}.dark-theme .warpper .post-meta{color:#87878d}.warpper .post-meta a{color:#2d96bd}.dark-theme .warpper .post-meta a{color:#eee}.warpper .post-meta a:hover{color:#ef3982}.dark-theme .warpper .post-meta a:hover{color:#2d96bd}.warpper .post-meta .author{font-size:1.05rem}.warpper .post-featured-image{padding-top:.6rem}.warpper .post-featured-image img{display:block;max-width:100%;height:auto;margin:0 auto;overflow:hidden}.warpper .post-toc{display:block;position:absolute;width:360px;margin-left:1000px;padding:.8rem;border-left:1px solid #dcdcdc;word-wrap:break-word;box-sizing:border-box;top:12rem}.dark-theme .warpper .post-toc{border-left:1px solid #4a4b50}.warpper .post-toc .post-toc-title{font-weight:400;text-transform:uppercase}.warpper .post-toc .post-toc-content.always-active ul{display:block}.warpper .post-toc .post-toc-content>nav>ul{margin:.625rem 0}.warpper .post-toc .post-toc-content ul{text-indent:-.85rem;padding-left:.625rem;list-style:none}.warpper .post-toc .post-toc-content ul a::before{content:"|";font-weight:bolder;margin-right:.5rem;color:#2d96bd}.dark-theme .warpper .post-toc .post-toc-content ul a::before{color:#eee}.warpper .post-toc .post-toc-content ul ul{padding-left:1.25rem;display:none}.warpper .post-toc .post-toc-content ul .has-active>ul{display:block}.warpper .post-toc .post-toc-content .toc-link.active{font-weight:700;color:#ef3982}.dark-theme .warpper .post-toc .post-toc-content .toc-link.active{color:#2d96bd}.warpper .post-toc .post-toc-content .toc-link.active::before{font-weight:bolder;color:#ef3982}.dark-theme .warpper .post-toc .post-toc-content .toc-link.active::before{color:#2d96bd}.warpper .post-toc-mobile{display:none;padding-top:.8rem}.warpper .post-toc-mobile details summary .post-toc-title{display:block;display:flex;justify-content:space-between;font-size:1.2em;font-weight:700;line-height:2em;padding:0 .625rem;background:#f5f5f5}.warpper .post-toc-mobile details summary .post-toc-title i.details{line-height:2em}.dark-theme .warpper .post-toc-mobile details summary .post-toc-title{background:#272c34}.warpper .post-toc-mobile details summary::-webkit-details-marker{display:none}.warpper .post-toc-mobile details[open] i.details{transform:rotate(180deg)}.warpper .post-toc-mobile .post-toc-content{border:2px solid #f5f5f5}.warpper .post-toc-mobile .post-toc-content>nav>ul{margin:.625rem 0}.warpper .post-toc-mobile .post-toc-content ul{padding-left:.625rem;list-style:none}.warpper .post-toc-mobile .post-toc-content ul ul{padding-left:1.25rem}.dark-theme .warpper .post-toc-mobile .post-toc-content{border:2px solid #272c34}.warpper .post-content .post-dummy-target:target{display:inline-block;position:relative;top:-5.6rem;visibility:hidden}.warpper .post-content h2,.warpper .post-content h3,.warpper .post-content h4,.warpper .post-content h5,.warpper .post-content h6{padding-top:.8rem;padding-bottom:.3rem}.warpper .post-content h2::before{content:"#";margin-right:.3125rem;color:#2d96bd}.dark-theme .warpper .post-content h2::before{color:#eee}.warpper .post-content h3::before,.warpper .post-content h4::before,.warpper .post-content h5::before,.warpper .post-content h6::before{content:"|";margin-right:.3125rem;color:#2d96bd}.dark-theme .warpper .post-content h3::before,.dark-theme .warpper .post-content h4::before,.dark-theme .warpper .post-content h5::before,.dark-theme .warpper .post-content h6::before{color:#eee}.warpper .post-content p{font-size:1rem;margin:.5rem 0;text-align:justify}.warpper .post-content a{color:#2d96bd}.dark-theme .warpper .post-content a{color:#eee}.warpper .post-content a:hover{color:#ef3982}.dark-theme .warpper .post-content a:hover:hover{color:#2d96bd;font-weight:700}.warpper .post-content ul{padding-left:2rem}.warpper .post-content ruby{background:#f5f5f5}.warpper .post-content ruby rt{color:#a9a9b3}.dark-theme .warpper .post-content ruby{background:#272c34}.dark-theme .warpper .post-content ruby rt{color:#87878d}.warpper .post-content .table-wrapper{overflow-x:auto}.warpper .post-content .table-wrapper>table{width:100%;max-width:100%;margin:.625rem 0;border-spacing:0;background:#fff}.dark-theme .warpper .post-content .table-wrapper>table{background:#272c34}.warpper .post-content .table-wrapper>table thead{background:#ededed}.dark-theme .warpper .post-content .table-wrapper>table thead{background-color:#20252b}.warpper .post-content .table-wrapper>table th,.warpper .post-content .table-wrapper>table td{padding:.3rem 1rem;border:1px double #dcdcdc}.dark-theme .warpper .post-content .table-wrapper>table th,.dark-theme .warpper .post-content .table-wrapper>table td{border:1px double #4a4b50}.warpper .post-content figure{text-align:center}.warpper .post-content .image-caption:not(:empty){min-width:20%;max-width:80%;display:inline-block;padding:.625rem;margin:0 auto;border-bottom:1px solid #d9d9d9;font-size:.875rem;color:#969696;line-height:1.7}.warpper .post-content img{display:block;max-width:100%;height:auto;margin:0 auto;overflow:hidden}.warpper .post-content blockquote{font-size:1rem;display:block;border-width:1px 0;border-style:solid;border-color:#dcdcdc;padding:1.5em 1.2em .5em;margin:0 0 2em;position:relative}.warpper .post-content blockquote::before{content:'\201C';position:absolute;top:0;left:50%;transform:translate(-50%,-50%);width:3rem;height:2rem;font:6em/1.08em pt sans,sans-serif;color:#2d96bd;text-align:center}.dark-theme .warpper .post-content blockquote::before{color:#eee}.warpper .post-content blockquote::after{content:"#blockquote" attr(cite);display:block;text-align:right;font-size:.875em;color:#2d96bd}.dark-theme .warpper .post-content blockquote::after{color:#eee}.dark-theme .warpper .post-content blockquote{border-color:#4a4b50}.warpper .post-content .footnotes{color:#a9a9b3}.dark-theme .warpper .post-content .footnotes{color:#87878d}.warpper .post-content code,.warpper .post-content pre{padding:7px;font-size:13px;font-family:Source Code Pro,Consolas,Liberation Mono,Menlo,Courier,monospace;background:#f5f5f5}.dark-theme .warpper .post-content code,.dark-theme .warpper .post-content pre{background:#272c34}.warpper .post-content code{padding:3px 5px;border-radius:4px;color:#e74c3c;background:#f5f5f5}.dark-theme .warpper .post-content code{color:#e5bf78;background:#272c34}.warpper .post-content p>code{background:#ededed}.dark-theme .warpper .post-content p>code{color:#e5bf78;background:#20252b}.warpper .post-content .highlight>.chroma{margin:1em 0;border-radius:6px;overflow-x:auto;position:relative;background:#f5f5f5}.warpper .post-content .highlight>.chroma code{padding:0}.warpper .post-content .highlight>.chroma table{position:relative}.warpper .post-content .highlight>.chroma table::after{position:absolute;top:0;right:0;left:0;padding:2px 7px;font-size:13px;font-weight:700;color:#b1b0b0;background:#ededed;content:'Code'}.dark-theme .warpper .post-content .highlight>.chroma table::after{background:#20252b}.warpper .post-content .highlight>.chroma.language-bash table::after{content:"Bash"}.warpper .post-content .highlight>.chroma.language-c table::after{content:"C"}.warpper .post-content .highlight>.chroma.language-cs table::after{content:"C#"}.warpper .post-content .highlight>.chroma.language-cpp table::after{content:"C++"}.warpper .post-content .highlight>.chroma.language-css table::after{content:"CSS"}.warpper .post-content .highlight>.chroma.language-coffeescript table::after{content:"CoffeeScript"}.warpper .post-content .highlight>.chroma.language-html table::after{content:"HTML"}.warpper .post-content .highlight>.chroma.language-xml table::after{content:"XML"}.warpper .post-content .highlight>.chroma.language-http table::after{content:"HTTP"}.warpper .post-content .highlight>.chroma.language-json table::after{content:"JSON"}.warpper .post-content .highlight>.chroma.language-java table::after{content:"Java"}.warpper .post-content .highlight>.chroma.language-js table::after{content:"JavaScript"}.warpper .post-content .highlight>.chroma.language-javascript table::after{content:"JavaScript"}.warpper .post-content .highlight>.chroma.language-makefile table::after{content:"Makefile"}.warpper .post-content .highlight>.chroma.language-markdown table::after{content:"Markdown"}.warpper .post-content .highlight>.chroma.language-objectivec table::after{content:"Objective-C"}.warpper .post-content .highlight>.chroma.language-php table::after{content:"PHP"}.warpper .post-content .highlight>.chroma.language-perl table::after{content:"Perl"}.warpper .post-content .highlight>.chroma.language-python table::after{content:"Python"}.warpper .post-content .highlight>.chroma.language-ruby table::after{content:"Ruby"}.warpper .post-content .highlight>.chroma.language-sql table::after{content:"SQL"}.warpper .post-content .highlight>.chroma.language-shell table::after{content:"Shell"}.warpper .post-content .highlight>.chroma.language-erlang table::after{content:"Erlang"}.warpper .post-content .highlight>.chroma.language-go table::after{content:"Go"}.warpper .post-content .highlight>.chroma.language-go-html-template table::after{content:"Go HTML Template"}.warpper .post-content .highlight>.chroma.language-groovy table::after{content:"Groovy"}.warpper .post-content .highlight>.chroma.language-haskell table::after{content:"Haskell"}.warpper .post-content .highlight>.chroma.language-kotlin table::after{content:"Kotlin"}.warpper .post-content .highlight>.chroma.language-clojure table::after{content:"Clojure"}.warpper .post-content .highlight>.chroma.language-less table::after{content:"Less"}.warpper .post-content .highlight>.chroma.language-lisp table::after{content:"Lisp"}.warpper .post-content .highlight>.chroma.language-lua table::after{content:"Lua"}.warpper .post-content .highlight>.chroma.language-matlab table::after{content:"Matlab"}.warpper .post-content .highlight>.chroma.language-rust table::after{content:"Rust"}.warpper .post-content .highlight>.chroma.language-scss table::after{content:"Scss"}.warpper .post-content .highlight>.chroma.language-scala table::after{content:"Scala"}.warpper .post-content .highlight>.chroma.language-swift table::after{content:"Swift"}.warpper .post-content .highlight>.chroma.language-typescript table::after{content:"TypeScript"}.warpper .post-content .highlight>.chroma.language-yml table::after{content:"YAML"}.warpper .post-content .highlight>.chroma.language-yaml table::after{content:"YAML"}.warpper .post-content .highlight>.chroma.language-toml table::after{content:"TOML"}.warpper .post-content .highlight>.chroma.language-diff table::after{content:"Diff"}.warpper .post-content .highlight>.chroma .lntd{line-height:20px}.warpper .post-content .highlight>.chroma .lntd:first-child{width:10px}.warpper .post-content .highlight>.chroma .lntd:first-child pre{margin:0;padding:38px 7px 8px}.warpper .post-content .highlight>.chroma .lntd:last-child{vertical-align:top}.warpper .post-content .highlight>.chroma .lntd:last-child pre{margin:0;padding:38px 10px 8px}.warpper .post-content .highlight>.chroma table,.warpper .post-content .highlight>.chroma tr,.warpper .post-content .highlight>.chroma td{margin:0;padding:0;width:100%;border-collapse:collapse;border-color:#f5f5f5}.dark-theme .warpper .post-content .highlight>.chroma table,.dark-theme .warpper .post-content .highlight>.chroma tr,.dark-theme .warpper .post-content .highlight>.chroma td{border-color:#272c34}.warpper .post-content .highlight>.chroma .lnt{color:#cacaca}.warpper .post-content .highlight>.chroma .hl{display:block;width:100%;background-color:#e8e8e8}.dark-theme .warpper .post-content .highlight>.chroma .hl{background-color:#1c2025}.warpper .post-content .highlight{}.warpper .post-content .highlight .p{color:#a9a9b3}.warpper .post-content .highlight .k{color:#859900}.warpper .post-content .highlight .kc{color:#859900;font-weight:700}.warpper .post-content .highlight .kd{color:#859900}.warpper .post-content .highlight .kn{color:#dc322f;font-weight:700}.warpper .post-content .highlight .kp{color:#859900}.warpper .post-content .highlight .kr{color:#859900}.warpper .post-content .highlight .kt{color:#859900;font-weight:700}.warpper .post-content .highlight .n{color:#268bd2}.warpper .post-content .highlight .na{color:#268bd2}.warpper .post-content .highlight .nb{color:#cb4b16}.warpper .post-content .highlight .bp{color:#268bd2}.warpper .post-content .highlight .nc{color:#cb4b16}.warpper .post-content .highlight .no{color:#268bd2}.warpper .post-content .highlight .nd{color:#268bd2}.warpper .post-content .highlight .ni{color:#268bd2}.warpper .post-content .highlight .ne{color:#268bd2}.warpper .post-content .highlight .nf{color:#268bd2}.warpper .post-content .highlight .fm{color:#268bd2}.warpper .post-content .highlight .nl{color:#268bd2}.warpper .post-content .highlight .nn{color:#268bd2}.warpper .post-content .highlight .nx{color:#268bd2}.warpper .post-content .highlight .py{color:#268bd2}.warpper .post-content .highlight .nt{color:#268bd2;font-weight:700}.warpper .post-content .highlight .nv{color:#268bd2}.warpper .post-content .highlight .vc{color:#268bd2}.warpper .post-content .highlight .vg{color:#268bd2}.warpper .post-content .highlight .vi{color:#268bd2}.warpper .post-content .highlight .vm{color:#268bd2}.warpper .post-content .highlight .l{color:#2aa198}.warpper .post-content .highlight .ld{color:#2aa198}.warpper .post-content .highlight .s{color:#2aa198}.warpper .post-content .highlight .sa{color:#2aa198}.warpper .post-content .highlight .sb{color:#2aa198}.warpper .post-content .highlight .sc{color:#2aa198}.warpper .post-content .highlight .dl{color:#2aa198}.warpper .post-content .highlight .sd{color:#2aa198}.warpper .post-content .highlight .s2{color:#2aa198}.warpper .post-content .highlight .se{color:#2aa198}.warpper .post-content .highlight .sh{color:#2aa198}.warpper .post-content .highlight .si{color:#2aa198}.warpper .post-content .highlight .sx{color:#2aa198}.warpper .post-content .highlight .sr{color:#2aa198}.warpper .post-content .highlight .s1{color:#2aa198}.warpper .post-content .highlight .ss{color:#2aa198}.warpper .post-content .highlight .m{color:#2aa198;font-weight:700}.warpper .post-content .highlight .mb{color:#2aa198;font-weight:700}.warpper .post-content .highlight .mf{color:#2aa198;font-weight:700}.warpper .post-content .highlight .mh{color:#2aa198;font-weight:700}.warpper .post-content .highlight .mi{color:#2aa198;font-weight:700}.warpper .post-content .highlight .il{color:#2aa198;font-weight:700}.warpper .post-content .highlight .mo{color:#2aa198;font-weight:700}.warpper .post-content .highlight .ow{color:#859900}.warpper .post-content .highlight .c{color:#93a1a1;font-style:italic}.warpper .post-content .highlight .ch{color:#93a1a1;font-style:italic}.warpper .post-content .highlight .cm{color:#93a1a1;font-style:italic}.warpper .post-content .highlight .c1{color:#93a1a1;font-style:italic}.warpper .post-content .highlight .cs{color:#93a1a1;font-style:italic}.warpper .post-content .highlight .cp{color:#93a1a1;font-style:italic}.warpper .post-content .highlight .cpf{color:#93a1a1;font-style:italic}.warpper .post-content .highlight .g{color:#d33682}.warpper .post-content .highlight .gd{color:#b58900}.warpper .post-content .highlight .ge{color:#d33682}.warpper .post-content .highlight .gr{color:#d33682}.warpper .post-content .highlight .gh{color:#d33682}.warpper .post-content .highlight .gi{color:#859900}.warpper .post-content .highlight .go{color:#d33682}.warpper .post-content .highlight .gp{color:#d33682}.warpper .post-content .highlight .gs{color:#d33682}.warpper .post-content .highlight .gu{color:#d33682}.warpper .post-content .highlight .gt{color:#d33682}.dark-theme .warpper .post-content .highlight{background:#272c34}.dark-theme .warpper .post-content .highlight .p{color:#a9a9b3}.dark-theme .warpper .post-content .highlight .k{color:#d371e3}.dark-theme .warpper .post-content .highlight .kc{color:#d371e3}.dark-theme .warpper .post-content .highlight .kd{color:#d371e3}.dark-theme .warpper .post-content .highlight .kn{color:#d371e3}.dark-theme .warpper .post-content .highlight .kp{color:#d371e3}.dark-theme .warpper .post-content .highlight .kr{color:#d371e3}.dark-theme .warpper .post-content .highlight .kt{color:#8be9fd}.dark-theme .warpper .post-content .highlight .na{color:#41b1f5}.dark-theme .warpper .post-content .highlight .nb{color:#8be9fd;font-style:italic}.dark-theme .warpper .post-content .highlight .nc{color:#e5bf78}.dark-theme .warpper .post-content .highlight .nf{color:#19b8c0}.dark-theme .warpper .post-content .highlight .nx{color:#f16473}.dark-theme .warpper .post-content .highlight .nl{color:#8be9fd;font-style:italic}.dark-theme .warpper .post-content .highlight .nt{color:#d371e3}.dark-theme .warpper .post-content .highlight .nv{color:#8be9fd;font-style:italic}.dark-theme .warpper .post-content .highlight .vc{color:#8be9fd;font-style:italic}.dark-theme .warpper .post-content .highlight .vg{color:#8be9fd;font-style:italic}.dark-theme .warpper .post-content .highlight .vi{color:#8be9fd;font-style:italic}.dark-theme .warpper .post-content .highlight .s{color:#8bc56f}.dark-theme .warpper .post-content .highlight .sa{color:#8bc56f}.dark-theme .warpper .post-content .highlight .sb{color:#8bc56f}.dark-theme .warpper .post-content .highlight .sc{color:#8bc56f}.dark-theme .warpper .post-content .highlight .dl{color:#8bc56f}.dark-theme .warpper .post-content .highlight .sd{color:#8bc56f}.dark-theme .warpper .post-content .highlight .s2{color:#8bc56f}.dark-theme .warpper .post-content .highlight .se{color:#8bc56f}.dark-theme .warpper .post-content .highlight .sh{color:#8bc56f}.dark-theme .warpper .post-content .highlight .si{color:#8bc56f}.dark-theme .warpper .post-content .highlight .sx{color:#8bc56f}.dark-theme .warpper .post-content .highlight .sr{color:#8bc56f}.dark-theme .warpper .post-content .highlight .s1{color:#8bc56f}.dark-theme .warpper .post-content .highlight .ss{color:#8bc56f}.dark-theme .warpper .post-content .highlight .m{color:#bd93f9}.dark-theme .warpper .post-content .highlight .mb{color:#bd93f9}.dark-theme .warpper .post-content .highlight .mf{color:#bd93f9}.dark-theme .warpper .post-content .highlight .mh{color:#bd93f9}.dark-theme .warpper .post-content .highlight .mi{color:#bd93f9}.dark-theme .warpper .post-content .highlight .il{color:#bd93f9}.dark-theme .warpper .post-content .highlight .mo{color:#bd93f9}.dark-theme .warpper .post-content .highlight .o{color:#d371e3}.dark-theme .warpper .post-content .highlight .ow{color:#d371e3}.dark-theme .warpper .post-content .highlight .c{color:#7e848f}.dark-theme .warpper .post-content .highlight .ch{color:#7e848f}.dark-theme .warpper .post-content .highlight .cm{color:#7e848f}.dark-theme .warpper .post-content .highlight .c1{color:#7e848f}.dark-theme .warpper .post-content .highlight .cs{color:#7e848f}.dark-theme .warpper .post-content .highlight .cp{color:#d371e3}.dark-theme .warpper .post-content .highlight .cpf{color:#d371e3}.dark-theme .warpper .post-content .highlight .gd{color:#8b080b}.dark-theme .warpper .post-content .highlight .ge{text-decoration:underline}.dark-theme .warpper .post-content .highlight .gh{font-weight:700}.dark-theme .warpper .post-content .highlight .gi{font-weight:700}.dark-theme .warpper .post-content .highlight .go{color:#44475a}.dark-theme .warpper .post-content .highlight .gu{font-weight:700}.dark-theme .warpper .post-content .highlight .gl{text-decoration:underline}.warpper .post-content .admonition{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);position:relative;margin:.9765em 0;padding:0 .75rem;border-left:.25rem solid #448aff;border-radius:.125rem;overflow:auto}.warpper .post-content .admonition .admonition-title{margin:0 -.75rem;padding:.5rem .75rem .5rem 2.5rem;border-bottom:.1rem solid rgba(68,138,255,.1);background-color:rgba(68,138,255,.1);font-weight:700}.warpper .post-content .admonition i.icon{font-size:16px;cursor:auto;position:absolute;left:.75rem;top:.75rem}.warpper .post-content .admonition.note{border-left-color:#448aff}.warpper .post-content .admonition.note i.icon{color:#448aff}.warpper .post-content .admonition.abstract{border-left-color:#00b0ff}.warpper .post-content .admonition.abstract .admonition-title{background-color:rgba(0,176,255,.1)}.warpper .post-content .admonition.abstract i.icon{color:#00b0ff}.warpper .post-content .admonition.info{border-left-color:#00b8d4}.warpper .post-content .admonition.info .admonition-title{background-color:rgba(0,184,212,.1)}.warpper .post-content .admonition.info i.icon{color:#00b8d4}.warpper .post-content .admonition.tip{border-left-color:#00bfa5}.warpper .post-content .admonition.tip .admonition-title{background-color:rgba(0,191,165,.1)}.warpper .post-content .admonition.tip i.icon{color:#00bfa5}.warpper .post-content .admonition.success{border-left-color:#00c853}.warpper .post-content .admonition.success .admonition-title{background-color:rgba(0,200,83,.1)}.warpper .post-content .admonition.success i.icon{color:#00c853}.warpper .post-content .admonition.question{border-left-color:#64dd17}.warpper .post-content .admonition.question .admonition-title{background-color:rgba(100,221,23,.1)}.warpper .post-content .admonition.question i.icon{color:#64dd17}.warpper .post-content .admonition.warning{border-left-color:#ff9100}.warpper .post-content .admonition.warning .admonition-title{background-color:rgba(255,145,0,.1)}.warpper .post-content .admonition.warning i.icon{color:#ff9100}.warpper .post-content .admonition.failure{border-left-color:#ff5252}.warpper .post-content .admonition.failure .admonition-title{background-color:rgba(255,82,82,.1)}.warpper .post-content .admonition.failure i.icon{color:#ff5252}.warpper .post-content .admonition.danger{border-left-color:#ff1744}.warpper .post-content .admonition.danger .admonition-title{background-color:rgba(255,23,68,.1)}.warpper .post-content .admonition.danger i.icon{color:#ff1744}.warpper .post-content .admonition.bug{border-left-color:#f50057}.warpper .post-content .admonition.bug .admonition-title{background-color:rgba(245,0,87,.1)}.warpper .post-content .admonition.bug i.icon{color:#f50057}.warpper .post-content .admonition.example{border-left-color:#651fff}.warpper .post-content .admonition.example .admonition-title{background-color:rgba(101,31,255,.1)}.warpper .post-content .admonition.example i.icon{color:#651fff}.warpper .post-content .admonition.quote{border-left-color:#9e9e9e}.warpper .post-content .admonition.quote .admonition-title{background-color:rgba(158,158,158,.1)}.warpper .post-content .admonition.quote i.icon{color:#9e9e9e}.warpper .post-content .admonition:last-child{margin-bottom:.75rem}.warpper .post-content details.admonition summary{display:block;outline:none;cursor:pointer}.warpper .post-content details.admonition summary::-webkit-details-marker{display:none}.warpper .post-content details.admonition summary i.details{position:absolute;top:.75rem;right:.75rem;color:#161209}.dark-theme .warpper .post-content details.admonition summary i.details{color:#a9a9b3}.warpper .post-content details.admonition[open] i.details{transform:rotate(180deg)}.warpper .post-content .mermaid{width:100%;margin:3% auto;text-align:center}.warpper .post-content .mermaid .label{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);color:#333}.warpper .post-content .mermaid .label text{fill:#333}.warpper .post-content .mermaid .node rect,.warpper .post-content .mermaid .node circle,.warpper .post-content .mermaid .node ellipse,.warpper .post-content .mermaid .node polygon{fill:#eee;stroke:#999;stroke-width:1px}.warpper .post-content .mermaid .node .label{text-align:center}.warpper .post-content .mermaid .node.clickable{cursor:pointer}.warpper .post-content .mermaid .arrowheadPath{fill:#333}.warpper .post-content .mermaid .edgePath .path{stroke:#666;stroke-width:1.5px}.warpper .post-content .mermaid .edgeLabel{background-color:#fff;text-align:center}.warpper .post-content .mermaid .cluster rect{fill:#eaf2fb;stroke:#26a;stroke-width:1px}.warpper .post-content .mermaid .cluster text{fill:#333}.warpper .post-content .mermaid div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:12px;background:#eaf2fb;border:1px solid #26a;border-radius:2px;pointer-events:none;z-index:100}.warpper .post-content .mermaid .actor{stroke:#999;fill:#eee}.warpper .post-content .mermaid text.actor{fill:#333;stroke:none}.warpper .post-content .mermaid .actor-line{stroke:#666}.warpper .post-content .mermaid .messageLine0{stroke-width:1.5;stroke-dasharray:'2 2';stroke:#333}.warpper .post-content .mermaid .messageLine1{stroke-width:1.5;stroke-dasharray:'2 2';stroke:#333}.warpper .post-content .mermaid #arrowhead{fill:#333}.warpper .post-content .mermaid .sequenceNumber{fill:#fff}.warpper .post-content .mermaid #sequencenumber{fill:#333}.warpper .post-content .mermaid #crosshead path{fill:#333!important;stroke:#333!important}.warpper .post-content .mermaid .messageText{fill:#333;stroke:none}.warpper .post-content .mermaid .labelBox{stroke:#999;fill:#eee}.warpper .post-content .mermaid .labelText{fill:#333;stroke:none}.warpper .post-content .mermaid .loopText{fill:#333;stroke:none}.warpper .post-content .mermaid .loopLine{stroke-width:2;stroke-dasharray:'2 2';stroke:#999}.warpper .post-content .mermaid .note{stroke:#770;fill:#ffa}.warpper .post-content .mermaid .noteText{fill:#000;stroke:none;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:14px}.warpper .post-content .mermaid .activation0{fill:#f4f4f4;stroke:#666}.warpper .post-content .mermaid .activation1{fill:#f4f4f4;stroke:#666}.warpper .post-content .mermaid .activation2{fill:#f4f4f4;stroke:#666}.warpper .post-content .mermaid .mermaid-main-font{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid .section{stroke:none;opacity:.2}.warpper .post-content .mermaid .section0{fill:#80b3e6}.warpper .post-content .mermaid .section2{fill:#80b3e6}.warpper .post-content .mermaid .section1,.warpper .post-content .mermaid .section3{fill:#fff;opacity:.2}.warpper .post-content .mermaid .sectionTitle0{fill:#333}.warpper .post-content .mermaid .sectionTitle1{fill:#333}.warpper .post-content .mermaid .sectionTitle2{fill:#333}.warpper .post-content .mermaid .sectionTitle3{fill:#333}.warpper .post-content .mermaid .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid .grid .tick{stroke:#e6e5e5;opacity:.3;shape-rendering:crispEdges}.warpper .post-content .mermaid .grid .tick text{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid .grid path{stroke-width:0}.warpper .post-content .mermaid .today{fill:none;stroke:#d42;stroke-width:2px}.warpper .post-content .mermaid .task{stroke-width:2}.warpper .post-content .mermaid .taskText{text-anchor:middle;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid .taskText:not([font-size]){font-size:11px}.warpper .post-content .mermaid .taskTextOutsideRight{fill:#333;text-anchor:start;font-size:11px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid .taskTextOutsideLeft{fill:#333;text-anchor:end;font-size:11px}.warpper .post-content .mermaid .task.clickable{cursor:pointer}.warpper .post-content .mermaid .taskText.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.warpper .post-content .mermaid .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.warpper .post-content .mermaid .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.warpper .post-content .mermaid .taskText0,.warpper .post-content .mermaid .taskText1,.warpper .post-content .mermaid .taskText2,.warpper .post-content .mermaid .taskText3{fill:#fff}.warpper .post-content .mermaid .task0,.warpper .post-content .mermaid .task1,.warpper .post-content .mermaid .task2,.warpper .post-content .mermaid .task3{fill:#26a;stroke:#1a4d80}.warpper .post-content .mermaid .taskTextOutside0,.warpper .post-content .mermaid .taskTextOutside2{fill:#333}.warpper .post-content .mermaid .taskTextOutside1,.warpper .post-content .mermaid .taskTextOutside3{fill:#333}.warpper .post-content .mermaid .active0,.warpper .post-content .mermaid .active1,.warpper .post-content .mermaid .active2,.warpper .post-content .mermaid .active3{fill:#eee;stroke:#1a4d80}.warpper .post-content .mermaid .activeText0,.warpper .post-content .mermaid .activeText1,.warpper .post-content .mermaid .activeText2,.warpper .post-content .mermaid .activeText3{fill:#333!important}.warpper .post-content .mermaid .done0,.warpper .post-content .mermaid .done1,.warpper .post-content .mermaid .done2,.warpper .post-content .mermaid .done3{stroke:#666;fill:#bbb;stroke-width:2}.warpper .post-content .mermaid .doneText0,.warpper .post-content .mermaid .doneText1,.warpper .post-content .mermaid .doneText2,.warpper .post-content .mermaid .doneText3{fill:#333!important}.warpper .post-content .mermaid .crit0,.warpper .post-content .mermaid .crit1,.warpper .post-content .mermaid .crit2,.warpper .post-content .mermaid .crit3{stroke:#b1361b;fill:#d42;stroke-width:2}.warpper .post-content .mermaid .activeCrit0,.warpper .post-content .mermaid .activeCrit1,.warpper .post-content .mermaid .activeCrit2,.warpper .post-content .mermaid .activeCrit3{stroke:#b1361b;fill:#eee;stroke-width:2}.warpper .post-content .mermaid .doneCrit0,.warpper .post-content .mermaid .doneCrit1,.warpper .post-content .mermaid .doneCrit2,.warpper .post-content .mermaid .doneCrit3{stroke:#b1361b;fill:#bbb;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}.warpper .post-content .mermaid .milestone{transform:rotate(45deg)scale(0.8,0.8)}.warpper .post-content .mermaid .milestoneText{font-style:italic}.warpper .post-content .mermaid .doneCritText0,.warpper .post-content .mermaid .doneCritText1,.warpper .post-content .mermaid .doneCritText2,.warpper .post-content .mermaid .doneCritText3{fill:#333!important}.warpper .post-content .mermaid .activeCritText0,.warpper .post-content .mermaid .activeCritText1,.warpper .post-content .mermaid .activeCritText2,.warpper .post-content .mermaid .activeCritText3{fill:#333!important}.warpper .post-content .mermaid .titleText{text-anchor:middle;font-size:18px;fill:#333;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid g.classGroup text{fill:#999;stroke:none;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:10px}.warpper .post-content .mermaid g.classGroup text .title{font-weight:bolder}.warpper .post-content .mermaid g.classGroup rect{fill:#eee;stroke:#999}.warpper .post-content .mermaid g.classGroup line{stroke:#999;stroke-width:1}.warpper .post-content .mermaid .classLabel .box{stroke:none;stroke-width:0;fill:#eee;opacity:.5}.warpper .post-content .mermaid .classLabel .label{fill:#999;font-size:10px}.warpper .post-content .mermaid .relation{stroke:#999;stroke-width:1;fill:none}.warpper .post-content .mermaid #compositionStart{fill:#999;stroke:#999;stroke-width:1}.warpper .post-content .mermaid #compositionEnd{fill:#999;stroke:#999;stroke-width:1}.warpper .post-content .mermaid #aggregationStart{fill:#eee;stroke:#999;stroke-width:1}.warpper .post-content .mermaid #aggregationEnd{fill:#eee;stroke:#999;stroke-width:1}.warpper .post-content .mermaid #dependencyStart{fill:#999;stroke:#999;stroke-width:1}.warpper .post-content .mermaid #dependencyEnd{fill:#999;stroke:#999;stroke-width:1}.warpper .post-content .mermaid #extensionStart{fill:#999;stroke:#999;stroke-width:1}.warpper .post-content .mermaid #extensionEnd{fill:#999;stroke:#999;stroke-width:1}.warpper .post-content .mermaid .commit-id,.warpper .post-content .mermaid .commit-msg,.warpper .post-content .mermaid .branch-label{fill:lightgrey;color:lightgrey;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid .pieTitleText{text-anchor:middle;font-size:25px;fill:#333;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid .slice{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid g.stateGroup text{fill:#999;stroke:none;font-size:10px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid g.stateGroup text{fill:#999;stroke:none;font-size:10px}.warpper .post-content .mermaid g.stateGroup .state-title{font-weight:bolder;fill:#000}.warpper .post-content .mermaid g.stateGroup rect{fill:#eee;stroke:#999}.warpper .post-content .mermaid g.stateGroup line{stroke:#999;stroke-width:1}.warpper .post-content .mermaid .transition{stroke:#999;stroke-width:1;fill:none}.warpper .post-content .mermaid .stateGroup .composit{fill:#fff;border-bottom:1px}.warpper .post-content .mermaid .state-note{stroke:#770;fill:#ffa}.warpper .post-content .mermaid .state-note text{fill:#000;stroke:none;font-size:10px}.warpper .post-content .mermaid .stateLabel .box{stroke:none;stroke-width:0;fill:#eee;opacity:.5}.warpper .post-content .mermaid .stateLabel text{fill:#000;font-size:10px;font-weight:700;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.warpper .post-content .mermaid :root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}.dark-theme .warpper .post-content .mermaid{}.dark-theme .warpper .post-content .mermaid .label{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);color:#333}.dark-theme .warpper .post-content .mermaid .label text{fill:#333}.dark-theme .warpper .post-content .mermaid .node rect,.dark-theme .warpper .post-content .mermaid .node circle,.dark-theme .warpper .post-content .mermaid .node ellipse,.dark-theme .warpper .post-content .mermaid .node polygon{fill:#bdd5ea;stroke:purple;stroke-width:1px}.dark-theme .warpper .post-content .mermaid .node .label{text-align:center}.dark-theme .warpper .post-content .mermaid .node.clickable{cursor:pointer}.dark-theme .warpper .post-content .mermaid .arrowheadPath{fill:lightgrey}.dark-theme .warpper .post-content .mermaid .edgePath .path{stroke:lightgrey;stroke-width:1.5px}.dark-theme .warpper .post-content .mermaid .edgeLabel{background-color:#e8e8e8;text-align:center}.dark-theme .warpper .post-content .mermaid .cluster rect{fill:#6d6d65;stroke:rgba(255,255,255,.25);stroke-width:1px}.dark-theme .warpper .post-content .mermaid .cluster text{fill:#f9fffe}.dark-theme .warpper .post-content .mermaid div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:12px;background:#6d6d65;border:1px solid rgba(255,255,255,.25);border-radius:2px;pointer-events:none;z-index:100}.dark-theme .warpper .post-content .mermaid .actor{stroke:#81b1db;fill:#bdd5ea}.dark-theme .warpper .post-content .mermaid text.actor{fill:#000;stroke:none}.dark-theme .warpper .post-content .mermaid .actor-line{stroke:lightgrey}.dark-theme .warpper .post-content .mermaid .messageLine0{stroke-width:1.5;stroke-dasharray:'2 2';stroke:lightgrey}.dark-theme .warpper .post-content .mermaid .messageLine1{stroke-width:1.5;stroke-dasharray:'2 2';stroke:lightgrey}.dark-theme .warpper .post-content .mermaid #arrowhead{fill:lightgrey}.dark-theme .warpper .post-content .mermaid .sequenceNumber{fill:#fff}.dark-theme .warpper .post-content .mermaid #sequencenumber{fill:lightgrey}.dark-theme .warpper .post-content .mermaid #crosshead path{fill:lightgrey!important;stroke:lightgrey!important}.dark-theme .warpper .post-content .mermaid .messageText{fill:lightgrey;stroke:none}.dark-theme .warpper .post-content .mermaid .labelBox{stroke:#81b1db;fill:#bdd5ea}.dark-theme .warpper .post-content .mermaid .labelText{fill:#323d47;stroke:none}.dark-theme .warpper .post-content .mermaid .loopText{fill:lightgrey;stroke:none}.dark-theme .warpper .post-content .mermaid .loopLine{stroke-width:2;stroke-dasharray:'2 2';stroke:#81b1db}.dark-theme .warpper .post-content .mermaid .note{stroke:rgba(255,255,255,.25);fill:#fff5ad}.dark-theme .warpper .post-content .mermaid .noteText{fill:#000;stroke:none;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:14px}.dark-theme .warpper .post-content .mermaid .activation0{fill:#f4f4f4;stroke:#666}.dark-theme .warpper .post-content .mermaid .activation1{fill:#f4f4f4;stroke:#666}.dark-theme .warpper .post-content .mermaid .activation2{fill:#f4f4f4;stroke:#666}.dark-theme .warpper .post-content .mermaid .mermaid-main-font{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid .section{stroke:none;opacity:.2}.dark-theme .warpper .post-content .mermaid .section0{fill:rgba(255,255,255,.3)}.dark-theme .warpper .post-content .mermaid .section2{fill:#eae8b9}.dark-theme .warpper .post-content .mermaid .section1,.dark-theme .warpper .post-content .mermaid .section3{fill:#fff;opacity:.2}.dark-theme .warpper .post-content .mermaid .sectionTitle0{fill:#f9fffe}.dark-theme .warpper .post-content .mermaid .sectionTitle1{fill:#f9fffe}.dark-theme .warpper .post-content .mermaid .sectionTitle2{fill:#f9fffe}.dark-theme .warpper .post-content .mermaid .sectionTitle3{fill:#f9fffe}.dark-theme .warpper .post-content .mermaid .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid .grid .tick{stroke:lightgrey;opacity:.3;shape-rendering:crispEdges}.dark-theme .warpper .post-content .mermaid .grid .tick text{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid .grid path{stroke-width:0}.dark-theme .warpper .post-content .mermaid .today{fill:none;stroke:#db5757;stroke-width:2px}.dark-theme .warpper .post-content .mermaid .task{stroke-width:2}.dark-theme .warpper .post-content .mermaid .taskText{text-anchor:middle;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid .taskText:not([font-size]){font-size:11px}.dark-theme .warpper .post-content .mermaid .taskTextOutsideRight{fill:#323d47;text-anchor:start;font-size:11px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid .taskTextOutsideLeft{fill:#323d47;text-anchor:end;font-size:11px}.dark-theme .warpper .post-content .mermaid .task.clickable{cursor:pointer}.dark-theme .warpper .post-content .mermaid .taskText.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.dark-theme .warpper .post-content .mermaid .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.dark-theme .warpper .post-content .mermaid .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.dark-theme .warpper .post-content .mermaid .taskText0,.dark-theme .warpper .post-content .mermaid .taskText1,.dark-theme .warpper .post-content .mermaid .taskText2,.dark-theme .warpper .post-content .mermaid .taskText3{fill:#323d47}.dark-theme .warpper .post-content .mermaid .task0,.dark-theme .warpper .post-content .mermaid .task1,.dark-theme .warpper .post-content .mermaid .task2,.dark-theme .warpper .post-content .mermaid .task3{fill:#bdd5ea;stroke:rgba(255,255,255,.5)}.dark-theme .warpper .post-content .mermaid .taskTextOutside0,.dark-theme .warpper .post-content .mermaid .taskTextOutside2{fill:lightgrey}.dark-theme .warpper .post-content .mermaid .taskTextOutside1,.dark-theme .warpper .post-content .mermaid .taskTextOutside3{fill:lightgrey}.dark-theme .warpper .post-content .mermaid .active0,.dark-theme .warpper .post-content .mermaid .active1,.dark-theme .warpper .post-content .mermaid .active2,.dark-theme .warpper .post-content .mermaid .active3{fill:#81b1db;stroke:rgba(255,255,255,.5)}.dark-theme .warpper .post-content .mermaid .activeText0,.dark-theme .warpper .post-content .mermaid .activeText1,.dark-theme .warpper .post-content .mermaid .activeText2,.dark-theme .warpper .post-content .mermaid .activeText3{fill:#323d47!important}.dark-theme .warpper .post-content .mermaid .done0,.dark-theme .warpper .post-content .mermaid .done1,.dark-theme .warpper .post-content .mermaid .done2,.dark-theme .warpper .post-content .mermaid .done3{stroke:grey;fill:lightgrey;stroke-width:2}.dark-theme .warpper .post-content .mermaid .doneText0,.dark-theme .warpper .post-content .mermaid .doneText1,.dark-theme .warpper .post-content .mermaid .doneText2,.dark-theme .warpper .post-content .mermaid .doneText3{fill:#323d47!important}.dark-theme .warpper .post-content .mermaid .crit0,.dark-theme .warpper .post-content .mermaid .crit1,.dark-theme .warpper .post-content .mermaid .crit2,.dark-theme .warpper .post-content .mermaid .crit3{stroke:#e83737;fill:#e83737;stroke-width:2}.dark-theme .warpper .post-content .mermaid .activeCrit0,.dark-theme .warpper .post-content .mermaid .activeCrit1,.dark-theme .warpper .post-content .mermaid .activeCrit2,.dark-theme .warpper .post-content .mermaid .activeCrit3{stroke:#e83737;fill:#81b1db;stroke-width:2}.dark-theme .warpper .post-content .mermaid .doneCrit0,.dark-theme .warpper .post-content .mermaid .doneCrit1,.dark-theme .warpper .post-content .mermaid .doneCrit2,.dark-theme .warpper .post-content .mermaid .doneCrit3{stroke:#e83737;fill:lightgrey;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}.dark-theme .warpper .post-content .mermaid .milestone{transform:rotate(45deg)scale(0.8,0.8)}.dark-theme .warpper .post-content .mermaid .milestoneText{font-style:italic}.dark-theme .warpper .post-content .mermaid .doneCritText0,.dark-theme .warpper .post-content .mermaid .doneCritText1,.dark-theme .warpper .post-content .mermaid .doneCritText2,.dark-theme .warpper .post-content .mermaid .doneCritText3{fill:#323d47!important}.dark-theme .warpper .post-content .mermaid .activeCritText0,.dark-theme .warpper .post-content .mermaid .activeCritText1,.dark-theme .warpper .post-content .mermaid .activeCritText2,.dark-theme .warpper .post-content .mermaid .activeCritText3{fill:#323d47!important}.dark-theme .warpper .post-content .mermaid .titleText{text-anchor:middle;font-size:18px;fill:#323d47;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid g.classGroup text{fill:purple;stroke:none;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:10px}.dark-theme .warpper .post-content .mermaid g.classGroup text .title{font-weight:bolder}.dark-theme .warpper .post-content .mermaid g.classGroup rect{fill:#bdd5ea;stroke:purple}.dark-theme .warpper .post-content .mermaid g.classGroup line{stroke:purple;stroke-width:1}.dark-theme .warpper .post-content .mermaid .classLabel .box{stroke:none;stroke-width:0;fill:#bdd5ea;opacity:.5}.dark-theme .warpper .post-content .mermaid .classLabel .label{fill:purple;font-size:10px}.dark-theme .warpper .post-content .mermaid .relation{stroke:purple;stroke-width:1;fill:none}.dark-theme .warpper .post-content .mermaid #compositionStart{fill:purple;stroke:purple;stroke-width:1}.dark-theme .warpper .post-content .mermaid #compositionEnd{fill:purple;stroke:purple;stroke-width:1}.dark-theme .warpper .post-content .mermaid #aggregationStart{fill:#bdd5ea;stroke:purple;stroke-width:1}.dark-theme .warpper .post-content .mermaid #aggregationEnd{fill:#bdd5ea;stroke:purple;stroke-width:1}.dark-theme .warpper .post-content .mermaid #dependencyStart{fill:purple;stroke:purple;stroke-width:1}.dark-theme .warpper .post-content .mermaid #dependencyEnd{fill:purple;stroke:purple;stroke-width:1}.dark-theme .warpper .post-content .mermaid #extensionStart{fill:purple;stroke:purple;stroke-width:1}.dark-theme .warpper .post-content .mermaid #extensionEnd{fill:purple;stroke:purple;stroke-width:1}.dark-theme .warpper .post-content .mermaid .commit-id,.dark-theme .warpper .post-content .mermaid .commit-msg,.dark-theme .warpper .post-content .mermaid .branch-label{fill:lightgrey;color:lightgrey;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid .pieTitleText{text-anchor:middle;font-size:25px;fill:#323d47;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid .slice{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid g.stateGroup text{fill:purple;stroke:none;font-size:10px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid g.stateGroup text{fill:purple;stroke:none;font-size:10px}.dark-theme .warpper .post-content .mermaid g.stateGroup .state-title{font-weight:bolder;fill:#000}.dark-theme .warpper .post-content .mermaid g.stateGroup rect{fill:#bdd5ea;stroke:purple}.dark-theme .warpper .post-content .mermaid g.stateGroup line{stroke:purple;stroke-width:1}.dark-theme .warpper .post-content .mermaid .transition{stroke:purple;stroke-width:1;fill:none}.dark-theme .warpper .post-content .mermaid .stateGroup .composit{fill:#fff;border-bottom:1px}.dark-theme .warpper .post-content .mermaid .state-note{stroke:rgba(255,255,255,.25);fill:#fff5ad}.dark-theme .warpper .post-content .mermaid .state-note text{fill:#000;stroke:none;font-size:10px}.dark-theme .warpper .post-content .mermaid .stateLabel .box{stroke:none;stroke-width:0;fill:#bdd5ea;opacity:.5}.dark-theme .warpper .post-content .mermaid .stateLabel text{fill:#000;font-size:10px;font-weight:700;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .warpper .post-content .mermaid :root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}.dark-theme .warpper .post-content .aplayer{background:#212121}.dark-theme .warpper .post-content .aplayer.aplayer-withlist .aplayer-info{border-bottom-color:#5c5c5c}.dark-theme .warpper .post-content .aplayer.aplayer-fixed .aplayer-list{border-color:#5c5c5c}.dark-theme .warpper .post-content .aplayer .aplayer-body{background-color:#212121}.dark-theme .warpper .post-content .aplayer .aplayer-info{border-top-color:#212121}.dark-theme .warpper .post-content .aplayer .aplayer-info .aplayer-music .aplayer-title{color:#fff}.dark-theme .warpper .post-content .aplayer .aplayer-info .aplayer-music .aplayer-author{color:#fff}.dark-theme .warpper .post-content .aplayer .aplayer-info .aplayer-controller .aplayer-time{color:#eee}.dark-theme .warpper .post-content .aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon path{fill:#eee}.dark-theme .warpper .post-content .aplayer .aplayer-list{background-color:#212121}.dark-theme .warpper .post-content .aplayer .aplayer-list::-webkit-scrollbar-thumb{background-color:#999}.dark-theme .warpper .post-content .aplayer .aplayer-list::-webkit-scrollbar-thumb:hover{background-color:#bbb}.dark-theme .warpper .post-content .aplayer .aplayer-list li{color:#fff;border-top-color:#666}.dark-theme .warpper .post-content .aplayer .aplayer-list li:hover{background:#4e4e4e}.dark-theme .warpper .post-content .aplayer .aplayer-list li.aplayer-list-light{background:#6c6c6c}.dark-theme .warpper .post-content .aplayer .aplayer-list li .aplayer-list-index{color:#ddd}.dark-theme .warpper .post-content .aplayer .aplayer-list li .aplayer-list-author{color:#ddd}.dark-theme .warpper .post-content .aplayer .aplayer-lrc{text-shadow:-1px -1px 0 #666}.dark-theme .warpper .post-content .aplayer .aplayer-lrc:before{background:-moz-linear-gradient(top,#212121 0%,rgba(33,33,33,0) 100%);background:-webkit-linear-gradient(top,#212121 0%,rgba(33,33,33,0) 100%);background:linear-gradient(to bottom,#212121 0%,rgba(33,33,33,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#212121',endColorstr='#00212121',GradientType=0 )}.dark-theme .warpper .post-content .aplayer .aplayer-lrc:after{background:-moz-linear-gradient(top,rgba(33,33,33,0) 0%,rgba(33,33,33,0.8) 100%);background:-webkit-linear-gradient(top,rgba(33,33,33,0) 0%,rgba(33,33,33,0.8) 100%);background:linear-gradient(to bottom,rgba(33,33,33,0) 0%,rgba(33,33,33,0.8) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212121',endColorstr='#cc212121',GradientType=0 )}.dark-theme .warpper .post-content .aplayer .aplayer-lrc p{color:#fff}.dark-theme .warpper .post-content .aplayer .aplayer-miniswitcher{background:#484848}.dark-theme .warpper .post-content .aplayer .aplayer-miniswitcher .aplayer-icon path{fill:#eee}.warpper .post-content .echarts{width:100%;height:30rem;margin:3% auto;text-align:center}.warpper .post-content .bilibili{position:relative;width:100%;height:0;padding-bottom:75%;margin:3% auto;text-align:center}.warpper .post-content .bilibili iframe{position:absolute;width:100%;height:100%;left:0;top:0}.warpper .post-content hr{margin:1rem 0;position:relative;border-top:1px dashed #dcdcdc;border-bottom:none}.dark-theme .warpper .post-content hr{border-top:1px dashed #4a4b50}.warpper .post-content kbd{display:inline-block;padding:.25em;background-color:#fff;border:1px solid #dcdcdc;border-bottom-color:#dcdcdc;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 #dcdcdc;box-shadow:inset 0 -1px 0 #dcdcdc;font-size:.8em;line-height:1.25rem;font-family:Source Code Pro,Consolas,Liberation Mono,Menlo,Courier,monospace;color:#e74c3c}.dark-theme .warpper .post-content kbd{background-color:#292a2d;border:1px solid #4a4b50;border-bottom-color:#4a4b50;-webkit-box-shadow:inset 0 -1px 0 #4a4b50;box-shadow:inset 0 -1px 0 #4a4b50;color:#e5bf78}.warpper .post-content .typeit .code{padding:.375rem;font-size:.875rem;font-family:Source Code Pro,Consolas,Liberation Mono,Menlo,Courier,monospace;font-weight:700;word-break:break-all}.warpper .post-content .align-left{text-align:left}.warpper .post-content .align-center{text-align:center}.warpper .post-content .align-right{text-align:right}.warpper .post-content .float-left{float:left}.warpper .post-content .float-right{float:right}.warpper .post-footer{margin-top:3rem}.warpper .post-footer .post-info{border-bottom:1px solid #dcdcdc;padding:1rem 0 .3rem}.dark-theme .warpper .post-footer .post-info{border-bottom:1px solid #4a4b50}.warpper .post-footer .post-info .post-info-line{display:flex;justify-content:space-between}.warpper .post-footer .post-info .post-info-line .post-info-mod{font-size:.8em;color:#a9a9b3}.dark-theme .warpper .post-footer .post-info .post-info-line .post-info-mod{color:#87878d}.warpper .post-footer .post-info .post-info-line .post-info-license{font-size:.8em;color:#a9a9b3}.dark-theme .warpper .post-footer .post-info .post-info-line .post-info-license{color:#87878d}.warpper .post-footer .post-info .post-info-line .post-info-md a{font-size:.8em;color:#2d96bd}.dark-theme .warpper .post-footer .post-info .post-info-line .post-info-md a{color:#eee}.warpper .post-footer .post-info .post-info-line .post-info-md a:hover{color:#ef3982}.dark-theme .warpper .post-footer .post-info .post-info-line .post-info-md a:hover{color:#2d96bd}.warpper .post-footer .post-info-more{padding:.3rem 0 1rem;display:flex;justify-content:space-between;font-size:.9rem}.warpper .post-footer .post-nav::before,.warpper .post-footer .post-nav::after{content:' ';display:table}.warpper .post-footer .post-nav a.prev,.warpper .post-footer .post-nav a.next{font-size:1rem;font-weight:600;transition-duration:.3s;transition-property:transform;transition-timing-function:ease-out}.warpper .post-footer .post-nav a.prev{float:left}.warpper .post-footer .post-nav a.prev:hover{transform:translateX(-4px)}.warpper .post-footer .post-nav a.next{float:right}.warpper .post-footer .post-nav a.next:hover{transform:translateX(4px)}.warpper .post-comment{padding:4rem 0}.warpper .home-intro{transform:translateY(0);padding:2rem 0}.warpper .home-intro .home-avatar img{width:6rem}.warpper .post{padding-top:1rem;padding-bottom:.8rem;color:#161209;border-bottom:1px dashed #dcdcdc}.dark-theme .warpper .post{color:#a9a9b3;border-bottom:1px dashed #4a4b50}.warpper .post .post-featured-image-preview{width:100%;padding:30% 0 0;position:relative;margin:.6rem auto}.warpper .post .post-featured-image-preview img{position:absolute;width:100%;height:100%;left:0;top:0;object-fit:cover}.warpper .post .post-list-title{font-size:1.6rem}.warpper .post .post-meta{font-size:.875rem!important}.warpper .post .post-meta a{color:#a9a9b3!important}.dark-theme .warpper .post .post-meta a{color:#87878d!important}.warpper .post .post-meta a:hover{color:#2d96bd!important}.dark-theme .warpper .post .post-meta a:hover{color:#fff!important}.warpper .post .post-content{padding-top:.2rem;font-size:.9rem;width:100%;max-height:7rem;overflow:hidden}.warpper .post .post-content h2,.warpper .post .post-content h3,.warpper .post .post-content h4,.warpper .post .post-content h5,.warpper .post .post-content h6{font-size:1rem;line-height:1rem;padding-top:.3rem;padding-bottom:.3rem}.warpper .post .post-content p{margin:0;padding-top:.3rem;padding-bottom:.3rem}.warpper .post .post-footer{margin-top:.5rem;display:flex;justify-content:space-between;align-items:center;font-size:.875rem!important}.warpper .post .post-footer a{color:#2d96bd!important}.dark-theme .warpper .post .post-footer a{color:#eee!important}.warpper .post .post-footer a:hover{color:#ef3982!important}.dark-theme .warpper .post .post-footer a:hover{color:#2d96bd!important}.warpper .post .post-footer .post-tags{padding:0}.warpper .post .post-footer .post-tags a{color:#161209!important}.dark-theme .warpper .post .post-footer .post-tags a{color:#a9a9b3!important}.warpper .post .post-footer .post-tags a:hover{color:#2d96bd!important}.dark-theme .warpper .post .post-footer .post-tags a:hover{color:#fff!important}.archive .post-title{text-align:right;padding-bottom:2rem}.archive .archive-item{margin-left:2rem}.archive .categories-card{margin:0 auto;margin-top:3rem;display:flex;align-items:center;justify-content:space-between;flex-direction:row;flex-wrap:wrap;padding:0 2.5rem;line-height:1.6rem}.archive .categories-card .card-item{font-size:.875rem;text-align:left;width:45%;display:flex;align-items:flex-start;margin-top:2rem;min-height:10rem;padding:0 2%;position:relative}.archive .categories-card .card-item .card-item-wrapper{width:100%;overflow:hidden}.archive .categories-card .card-item .card-item-wrapper .card-item-title{font-size:1.2rem;font-weight:700;display:inline-block}.archive .categories-card .card-item .card-item-wrapper span{float:right;padding-right:1rem}.archive .archive-item-link{display:inline-block;text-decoration:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:95%}.archive .archive-item-link:hover{color:#2d96bd;background-color:transparent}.dark-theme .archive .archive-item-link{color:#a9a9b3;text-decoration:none;transition:color .2s ease,border-color .2s ease,background .2s ease,opacity .2s ease}.dark-theme .archive .archive-item-link:hover{color:#fff;text-decoration:none;transition:color .2s ease,border-color .2s ease,background .2s ease,opacity .2s ease}.archive .archive-item-date{float:right;text-align:right;color:#a9a9b3}.dark-theme .archive .archive-item-date{color:#87878d}.archive .more-post{text-align:right}.archive .tag-cloud-tags{margin:10px 0}.archive .tag-cloud-tags a{display:inline-block;position:relative;margin:5px 10px;word-wrap:break-word;transition-duration:.3s;transition-property:transform;transition-timing-function:ease-out}.archive .tag-cloud-tags a:active,.archive .tag-cloud-tags a:focus,.archive .tag-cloud-tags a:hover{color:#2d96bd;transform:scale(1.1)}.dark-theme .archive .tag-cloud-tags a:active,.dark-theme .archive .tag-cloud-tags a:focus,.dark-theme .archive .tag-cloud-tags a:hover{color:#fff}.archive .tag-cloud-tags a small{color:#a9a9b3}.dark-theme .archive .tag-cloud-tags a small{color:#fff}.single .post-title{text-align:right;padding-bottom:2rem}.navbar{display:block;position:fixed;width:100%;z-index:100;height:4rem;line-height:4rem;background-color:#fafafa}.dark-theme .navbar{background-color:#252627}.navbar .navbar-container{width:auto;text-align:center;margin:0 6rem;display:flex;justify-content:space-between}.navbar .navbar-container .navbar-header a{padding:0 8px;font-size:20px}.navbar .navbar-container .navbar-header a i{line-height:2em}.navbar .navbar-container .navbar-menu a{padding:0 8px}.navbar .navbar-container .navbar-menu a.active{font-weight:900;color:#161209}.dark-theme .navbar .navbar-container .navbar-menu a.active{color:#fff}.navbar-mobile{display:none;position:fixed;width:100%;z-index:100;transition:all .3s ease 0s}.navbar-mobile .navbar-container{padding:0;margin:0;height:4.5em;line-height:4.5em;background:#fff}.navbar-mobile .navbar-container .navbar-header{display:flex;justify-content:space-between;align-items:center;width:100%;font-size:18px;padding-right:1em;padding-left:1em;box-sizing:border-box}.navbar-mobile .navbar-container .navbar-header .navbar-header-title{font-size:20px}.navbar-mobile .navbar-container .navbar-header .menu-toggle{cursor:pointer;line-height:4.5em}.navbar-mobile .navbar-container .navbar-header .menu-toggle span{display:block;background:#000;width:24px;height:2px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-transition:.2s margin .2s,.2s transform;-moz-transition:.2s margin .2s,.2s transform;transition:.2s margin .2s,.2s transform}.dark-theme .navbar-mobile .navbar-container .navbar-header .menu-toggle span{background:#a9a9b3}.navbar-mobile .navbar-container .navbar-header .menu-toggle span:nth-child(1){margin-bottom:8px}.navbar-mobile .navbar-container .navbar-header .menu-toggle span:nth-child(3){margin-top:8px}.navbar-mobile .navbar-container .navbar-header .menu-toggle.active span{-webkit-transition:.2s margin,.2s transform .2s;-moz-transition:.2s margin,.2s transform .2s;transition:.2s margin,.2s transform .2s}.navbar-mobile .navbar-container .navbar-header .menu-toggle.active span:nth-child(1){-moz-transform:rotate(45deg)translate(4px,6px);-ms-transform:rotate(45deg)translate(4px,6px);-webkit-transform:rotate(45deg)translate(4px,6px);transform:rotate(45deg)translate(4px,6px)}.navbar-mobile .navbar-container .navbar-header .menu-toggle.active span:nth-child(2){opacity:0}.navbar-mobile .navbar-container .navbar-header .menu-toggle.active span:nth-child(3){-moz-transform:rotate(-45deg)translate(8px,-10px);-ms-transform:rotate(-45deg)translate(8px,-10px);-webkit-transform:rotate(-45deg)translate(8px,-10px);transform:rotate(-45deg)translate(8px,-10px)}.navbar-mobile .navbar-container .navbar-menu{text-align:center;background:#fff;border-top:2px solid #161209;display:none;box-shadow:0 2px 4px rgba(0,0,0,.1),0 4px 8px rgba(0,0,0,.1)}.navbar-mobile .navbar-container .navbar-menu a{display:block;line-height:2.5em}.navbar-mobile .navbar-container .navbar-menu.active{display:block}.dark-theme .navbar-mobile .navbar-container .navbar-menu{background:#292a2d;border-top:2px solid #a9a9b3}.dark-theme .navbar-mobile .navbar-container{background:#292a2d}.copyright{font-size:.875rem}.copyright .copyright-line{width:100%}.dynamic-to-top{display:none;overflow:hidden;width:auto;z-index:90;position:fixed;bottom:2rem;right:2rem;top:auto;left:auto;font-family:sans-serif;font-size:1rem;color:#fff;text-decoration:none;text-shadow:0 1px 0 #333;font-weight:700;padding:1rem;border:1px solid #dcdcdc;background:#222;outline:none}.dynamic-to-top:hover{background:#000;cursor:pointer}.dynamic-to-top:active{background:#000;outline:none}.dynamic-to-top:focus,.dynamic-to-top:hover{outline:none}.dynamic-to-top span{display:block;overflow:hidden;width:.875rem;height:.75rem;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAKCAYAAACE2W/HAAAACXBIWXMAAArwAAAK8AFCrDSYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAKVJREFUeNqUz7ENgzAURdErUSXQMgdTZJFIqeg8DFI2YQeEvAEbUJja3y9NEiwCUXIlN/62jww7Saok3Z+r4pckXSRNWpskXb5deClHfeo7ylGrLqnbTmOMs/e+9d63McZ554GOlFLId0IIvXOuAUqgdM41IYQ+P5NSCpjZkitADRTZTwqgznUzWzCzZaMc9dbNbGEYhuuOclQB1OM43gBO/N/5MQAeMwpyB1MtLQAAAABJRU5ErkJggg==)no-repeat 50%}.dark-theme .dynamic-to-top{border:1px solid #4a4b50}.pagination{display:flex;flex-direction:row;justify-content:center;list-style:none;white-space:nowrap;width:100%;padding-top:1rem}.pagination a{-webkit-font-smoothing:antialiased;font-size:.8rem;color:#bfbfbf;letter-spacing:.1rem;font-weight:700;padding:5px;text-decoration:none;transition:.3s}.pagination li{padding-bottom:3px;margin:0 20px;box-sizing:border-box;position:relative;display:inline}.pagination li.disabled{display:none}.pagination li:hover a{color:#000}.dark-theme .pagination li:hover a{color:#fff}.pagination li:before,.pagination li:after{position:absolute;content:"";width:0;height:3px;background:#000;transition:.3s;bottom:0}.dark-theme .pagination li:before,.dark-theme .pagination li:after{background:#fff}.pagination li:before .active,.pagination li:after .active{width:100%}.pagination li:before{left:50%}.pagination li:after{right:50%}.pagination li:hover:before,.pagination li:hover:after{width:50%}.pagination li.active a{color:#000}.dark-theme .pagination li.active a{color:#fff}.pagination li.active:before,.pagination li.active:after{width:60%}@media only screen and (max-width:1800px){.warpper{max-width:780px}.warpper .post-toc{width:300px;margin-left:800px}}@media only screen and (max-width:1440px){.warpper{max-width:680px}.warpper .post-toc{width:240px;margin-left:700px}}@media only screen and (max-width:1200px){.warpper{max-width:560px}.warpper .post-toc{width:180px;margin-left:580px}}@media only screen and (max-width:960px){.navbar .navbar-container{margin:0 2rem}.warpper{max-width:80%}.warpper .post-toc{display:none}.warpper .post-toc-mobile{display:block}}@media only screen and (max-width:560px){.navbar{display:none}.navbar-mobile{display:block}.warpper{max-width:100%}.warpper .categories-card .card-item{width:100%}.dynamic-to-top{display:none!important}} \ No newline at end of file
+@import "https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900";@import "https://fonts.googleapis.com/css?family=Fira+Mono:400,700&display=swap&subset=latin-ext";/*!normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}html{font-family:Lato,-apple-system,BlinkMacSystemFont,PingFang-SC-Regular,Hiragino Sans GB,Microsoft Yahei,Arial,sans-serif}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-thumb{background-color:#87878d}::-webkit-scrollbar-thumb:hover{background-color:#a9a9b3}::selection{background:rgba(38,139,211,.2)}.dark-theme ::selection{background:rgba(38,139,211,.3)}body{font-size:16px;font-weight:400;line-height:1.5rem;background-color:#fff;color:#161209}body::before{content:"";background-repeat:no-repeat;background-position:50%;opacity:.05;position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1;-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%);-o-filter:grayscale(100%);filter:grayscale(100%);filter:gray}body::before.dark-theme{-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%);-o-filter:grayscale(100%);filter:grayscale(100%);filter:gray}body.dark-theme{color:#a9a9b3;background-color:#292a2d}a{color:#161209;text-decoration:none;transition:color .2s ease,border-color .2s ease,background .2s ease,opacity .2s ease}a:hover{color:#2d96bd}.dark-theme a{color:#a9a9b3}.dark-theme a:hover{color:#fff}.wrapper{display:flex;flex-direction:column;min-height:97.5vh;width:100%}.wrapper main{flex:1 0 auto}.wrapper main .container{padding-left:1rem;padding-right:1rem}.footer{height:2rem;width:100%;text-align:center;line-height:1.5rem;padding-top:2rem}.notfound{font-size:2rem;transform:translateY(35vh);text-align:center}.home-intro{transform:translateY(25vh);text-align:center}.home-intro .home-avatar{padding:.6rem}.home-intro .home-avatar img{width:8rem;height:auto;display:inline-block;-webkit-border-radius:100%;border-radius:100%;-webkit-box-shadow:0 0 0 .3618em rgba(0,0,0,.05);box-shadow:0 0 0 .3618em rgba(0,0,0,.05);margin:0 auto;-webkit-transition:all ease .4s;-moz-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s;cursor:pointer}.home-intro .home-avatar img:hover{position:relative;-webkit-transform:translateY(-0.75rem);-moz-transform:translateY(-0.75rem);-ms-transform:translateY(-0.75rem);-o-transform:translateY(-0.75rem);transform:translateY(-0.75rem);cursor:pointer}.home-intro .home-description{font-size:1rem;font-weight:400;padding:.4rem}.home-intro .home-social-links{padding-top:.6rem}.home-intro .home-social-links i{font-size:1.4rem}.page{position:relative;width:100%;max-width:980px;margin:0 auto;padding-top:6rem}.page .post-title{margin:0!important;font-size:1.8rem;line-height:3rem}.page .post-meta{font-size:.88rem;color:#a9a9b3}.page .post-meta span{display:inline-block}.dark-theme .page .post-meta{color:#87878d}.page .post-meta a{color:#2d96bd}.dark-theme .page .post-meta a{color:#eee}.page .post-meta a:hover{color:#ef3982}.dark-theme .page .post-meta a:hover{color:#2d96bd}.page .post-meta .author{font-size:1.05rem}.page .post-featured-image{padding-top:.6rem}.page .post-featured-image img{display:block;max-width:100%;height:auto;margin:0 auto;overflow:hidden}.page .post-toc{display:block;position:absolute;width:360px;margin-left:1000px;padding:.8rem;border-left:1px solid #dcdcdc;word-wrap:break-word;box-sizing:border-box;top:12rem}.dark-theme .page .post-toc{border-left:1px solid #4a4b50}.page .post-toc .post-toc-title{font-weight:400;text-transform:uppercase}.page .post-toc .post-toc-content.always-active ul{display:block}.page .post-toc .post-toc-content>nav>ul{margin:.625rem 0}.page .post-toc .post-toc-content ul{text-indent:-.85rem;padding-left:.625rem;list-style:none}.page .post-toc .post-toc-content ul a::before{content:"|";font-weight:bolder;margin-right:.5rem;color:#2d96bd}.dark-theme .page .post-toc .post-toc-content ul a::before{color:#eee}.page .post-toc .post-toc-content ul ul{padding-left:1.25rem;display:none}.page .post-toc .post-toc-content ul .has-active>ul{display:block}.page .post-toc .post-toc-content .toc-link.active{font-weight:700;color:#ef3982}.dark-theme .page .post-toc .post-toc-content .toc-link.active{color:#2d96bd}.page .post-toc .post-toc-content .toc-link.active::before{font-weight:bolder;color:#ef3982}.dark-theme .page .post-toc .post-toc-content .toc-link.active::before{color:#2d96bd}.page .post-toc-mobile{display:none;padding-top:.8rem}.page .post-toc-mobile details summary .post-toc-title{display:block;display:flex;justify-content:space-between;font-size:1.2em;font-weight:700;line-height:2em;padding:0 .625rem;background:#f5f5f5}.page .post-toc-mobile details summary .post-toc-title i.details{line-height:2em}.dark-theme .page .post-toc-mobile details summary .post-toc-title{background:#272c34}.page .post-toc-mobile details summary::-webkit-details-marker{display:none}.page .post-toc-mobile details[open] i.details{transform:rotate(180deg)}.page .post-toc-mobile .post-toc-content{border:2px solid #f5f5f5}.page .post-toc-mobile .post-toc-content>nav>ul{margin:.625rem 0}.page .post-toc-mobile .post-toc-content ul{padding-left:.625rem;list-style:none}.page .post-toc-mobile .post-toc-content ul ul{padding-left:1.25rem}.dark-theme .page .post-toc-mobile .post-toc-content{border:2px solid #272c34}.page .post-content .post-dummy-target:target{display:inline-block;position:relative;top:-5.6rem;visibility:hidden}.page .post-content h2,.page .post-content h3,.page .post-content h4,.page .post-content h5,.page .post-content h6{padding-top:.8rem;padding-bottom:.3rem}.page .post-content h2::before{content:"#";margin-right:.3125rem;color:#2d96bd}.dark-theme .page .post-content h2::before{color:#eee}.page .post-content h3::before,.page .post-content h4::before,.page .post-content h5::before,.page .post-content h6::before{content:"|";margin-right:.3125rem;color:#2d96bd}.dark-theme .page .post-content h3::before,.dark-theme .page .post-content h4::before,.dark-theme .page .post-content h5::before,.dark-theme .page .post-content h6::before{color:#eee}.page .post-content p{font-size:1rem;margin:.5rem 0;text-align:justify}.page .post-content a{color:#2d96bd}.dark-theme .page .post-content a{color:#eee}.page .post-content a:hover{color:#ef3982}.dark-theme .page .post-content a:hover:hover{color:#2d96bd;font-weight:700}.page .post-content ul{padding-left:2rem}.page .post-content ruby{background:#f5f5f5}.page .post-content ruby rt{color:#a9a9b3}.dark-theme .page .post-content ruby{background:#272c34}.dark-theme .page .post-content ruby rt{color:#87878d}.page .post-content .table-wrapper{overflow-x:auto}.page .post-content .table-wrapper::-webkit-scrollbar{background-color:#fff}.dark-theme .page .post-content .table-wrapper::-webkit-scrollbar{background-color:#272c34}.page .post-content .table-wrapper>table{width:100%;max-width:100%;margin:.625rem 0;border-spacing:0;background:#fff}.dark-theme .page .post-content .table-wrapper>table{background:#272c34}.page .post-content .table-wrapper>table thead{background:#ededed}.dark-theme .page .post-content .table-wrapper>table thead{background-color:#20252b}.page .post-content .table-wrapper>table th,.page .post-content .table-wrapper>table td{padding:.3rem 1rem;border:1px double #dcdcdc}.dark-theme .page .post-content .table-wrapper>table th,.dark-theme .page .post-content .table-wrapper>table td{border:1px double #4a4b50}.page .post-content figure{text-align:center}.page .post-content .image-caption:not(:empty){min-width:20%;max-width:80%;display:inline-block;padding:.625rem;margin:0 auto;border-bottom:1px solid #d9d9d9;font-size:.875rem;color:#969696;line-height:1.7}.page .post-content img{display:block;max-width:100%;height:auto;margin:0 auto;overflow:hidden}.page .post-content blockquote{font-size:1rem;display:block;border-width:1px 0;border-style:solid;border-color:#dcdcdc;padding:1.5em 1.2em .5em;margin:0 0 2em;position:relative}.page .post-content blockquote::before{content:'\201C';position:absolute;top:0;left:50%;transform:translate(-50%,-50%);width:3rem;height:2rem;font:6em/1.08em pt sans,sans-serif;color:#2d96bd;text-align:center}.dark-theme .page .post-content blockquote::before{color:#eee}.page .post-content blockquote::after{content:"#blockquote" attr(cite);display:block;text-align:right;font-size:.875em;color:#2d96bd}.dark-theme .page .post-content blockquote::after{color:#eee}.dark-theme .page .post-content blockquote{border-color:#4a4b50}.page .post-content .footnotes{color:#a9a9b3}.dark-theme .page .post-content .footnotes{color:#87878d}.page .post-content code,.page .post-content pre{font-size:13px;font-family:Fira Mono,Source Code Pro,Menlo,monospace;color:#e74c3c;padding:5px;background:#f5f5f5}.dark-theme .page .post-content code,.dark-theme .page .post-content pre{color:#e5bf78;background:#272c34}.page .post-content .highlight>pre.chroma{padding:38px 7px 8px;overflow-x:auto}.page .post-content .highlight>.chroma{margin:1em 0;position:relative;font-family:Fira Mono,Source Code Pro,Menlo,monospace}.page .post-content .highlight>.chroma code{padding:0}.page .post-content .highlight>.chroma pre{margin:0;padding:38px 7px 8px;overflow-x:visible}.page .post-content .highlight>.chroma::after{position:absolute;top:0;right:0;left:0;padding:2px 7px;font-size:13px;font-weight:700;color:#b1b0b0;background:#ededed;content:'Code'}.dark-theme .page .post-content .highlight>.chroma::after{color:#b1b0b0;background:#20252b}.page .post-content .highlight>.chroma.language-bash::after{content:"Bash"}.page .post-content .highlight>.chroma.language-c::after{content:"C"}.page .post-content .highlight>.chroma.language-cs::after{content:"C#"}.page .post-content .highlight>.chroma.language-cpp::after{content:"C++"}.page .post-content .highlight>.chroma.language-css::after{content:"CSS"}.page .post-content .highlight>.chroma.language-coffeescript::after{content:"CoffeeScript"}.page .post-content .highlight>.chroma.language-html::after{content:"HTML"}.page .post-content .highlight>.chroma.language-xml::after{content:"XML"}.page .post-content .highlight>.chroma.language-http::after{content:"HTTP"}.page .post-content .highlight>.chroma.language-json::after{content:"JSON"}.page .post-content .highlight>.chroma.language-java::after{content:"Java"}.page .post-content .highlight>.chroma.language-js::after{content:"JavaScript"}.page .post-content .highlight>.chroma.language-javascript::after{content:"JavaScript"}.page .post-content .highlight>.chroma.language-makefile::after{content:"Makefile"}.page .post-content .highlight>.chroma.language-markdown::after{content:"Markdown"}.page .post-content .highlight>.chroma.language-objectivec::after{content:"Objective-C"}.page .post-content .highlight>.chroma.language-php::after{content:"PHP"}.page .post-content .highlight>.chroma.language-perl::after{content:"Perl"}.page .post-content .highlight>.chroma.language-python::after{content:"Python"}.page .post-content .highlight>.chroma.language-ruby::after{content:"Ruby"}.page .post-content .highlight>.chroma.language-sql::after{content:"SQL"}.page .post-content .highlight>.chroma.language-shell::after{content:"Shell"}.page .post-content .highlight>.chroma.language-erlang::after{content:"Erlang"}.page .post-content .highlight>.chroma.language-go::after{content:"Go"}.page .post-content .highlight>.chroma.language-go-html-template::after{content:"Go HTML Template"}.page .post-content .highlight>.chroma.language-groovy::after{content:"Groovy"}.page .post-content .highlight>.chroma.language-haskell::after{content:"Haskell"}.page .post-content .highlight>.chroma.language-kotlin::after{content:"Kotlin"}.page .post-content .highlight>.chroma.language-clojure::after{content:"Clojure"}.page .post-content .highlight>.chroma.language-less::after{content:"Less"}.page .post-content .highlight>.chroma.language-lisp::after{content:"Lisp"}.page .post-content .highlight>.chroma.language-lua::after{content:"Lua"}.page .post-content .highlight>.chroma.language-matlab::after{content:"Matlab"}.page .post-content .highlight>.chroma.language-rust::after{content:"Rust"}.page .post-content .highlight>.chroma.language-scss::after{content:"Scss"}.page .post-content .highlight>.chroma.language-scala::after{content:"Scala"}.page .post-content .highlight>.chroma.language-swift::after{content:"Swift"}.page .post-content .highlight>.chroma.language-typescript::after{content:"TypeScript"}.page .post-content .highlight>.chroma.language-yml::after{content:"YAML"}.page .post-content .highlight>.chroma.language-yaml::after{content:"YAML"}.page .post-content .highlight>.chroma.language-toml::after{content:"TOML"}.page .post-content .highlight>.chroma.language-diff::after{content:"Diff"}.page .post-content .highlight>.chroma .lntd{line-height:20px}.page .post-content .highlight>.chroma .lntd:first-child{width:10px}.page .post-content .highlight>.chroma .lntd:last-child{vertical-align:top}.page .post-content .highlight>.chroma table,.page .post-content .highlight>.chroma tr,.page .post-content .highlight>.chroma td{margin:0;padding:0;width:100%;border-collapse:collapse;border-color:#f5f5f5}.dark-theme .page .post-content .highlight>.chroma table,.dark-theme .page .post-content .highlight>.chroma tr,.dark-theme .page .post-content .highlight>.chroma td{border-color:#272c34}.page .post-content .highlight>.chroma .lnt{color:#b1b0b0}.page .post-content .highlight>.chroma .hl{display:block;background-color:#e8e8e8}.dark-theme .page .post-content .highlight>.chroma .hl{background-color:#1c2025}.page .post-content .highlight{}.page .post-content .highlight .p{color:#a9a9b3}.page .post-content .highlight .k{color:#859900}.page .post-content .highlight .kc{color:#859900;font-weight:700}.page .post-content .highlight .kd{color:#859900}.page .post-content .highlight .kn{color:#dc322f;font-weight:700}.page .post-content .highlight .kp{color:#859900}.page .post-content .highlight .kr{color:#859900}.page .post-content .highlight .kt{color:#859900;font-weight:700}.page .post-content .highlight .n{color:#268bd2}.page .post-content .highlight .na{color:#268bd2}.page .post-content .highlight .nb{color:#cb4b16}.page .post-content .highlight .bp{color:#268bd2}.page .post-content .highlight .nc{color:#cb4b16}.page .post-content .highlight .no{color:#268bd2}.page .post-content .highlight .nd{color:#268bd2}.page .post-content .highlight .ni{color:#268bd2}.page .post-content .highlight .ne{color:#268bd2}.page .post-content .highlight .nf{color:#268bd2}.page .post-content .highlight .fm{color:#268bd2}.page .post-content .highlight .nl{color:#268bd2}.page .post-content .highlight .nn{color:#268bd2}.page .post-content .highlight .nx{color:#268bd2}.page .post-content .highlight .py{color:#268bd2}.page .post-content .highlight .nt{color:#268bd2;font-weight:700}.page .post-content .highlight .nv{color:#268bd2}.page .post-content .highlight .vc{color:#268bd2}.page .post-content .highlight .vg{color:#268bd2}.page .post-content .highlight .vi{color:#268bd2}.page .post-content .highlight .vm{color:#268bd2}.page .post-content .highlight .l{color:#2aa198}.page .post-content .highlight .ld{color:#2aa198}.page .post-content .highlight .s{color:#2aa198}.page .post-content .highlight .sa{color:#2aa198}.page .post-content .highlight .sb{color:#2aa198}.page .post-content .highlight .sc{color:#2aa198}.page .post-content .highlight .dl{color:#2aa198}.page .post-content .highlight .sd{color:#2aa198}.page .post-content .highlight .s2{color:#2aa198}.page .post-content .highlight .se{color:#2aa198}.page .post-content .highlight .sh{color:#2aa198}.page .post-content .highlight .si{color:#2aa198}.page .post-content .highlight .sx{color:#2aa198}.page .post-content .highlight .sr{color:#2aa198}.page .post-content .highlight .s1{color:#2aa198}.page .post-content .highlight .ss{color:#2aa198}.page .post-content .highlight .m{color:#2aa198;font-weight:700}.page .post-content .highlight .mb{color:#2aa198;font-weight:700}.page .post-content .highlight .mf{color:#2aa198;font-weight:700}.page .post-content .highlight .mh{color:#2aa198;font-weight:700}.page .post-content .highlight .mi{color:#2aa198;font-weight:700}.page .post-content .highlight .il{color:#2aa198;font-weight:700}.page .post-content .highlight .mo{color:#2aa198;font-weight:700}.page .post-content .highlight .ow{color:#859900}.page .post-content .highlight .c{color:#93a1a1;font-style:italic}.page .post-content .highlight .ch{color:#93a1a1;font-style:italic}.page .post-content .highlight .cm{color:#93a1a1;font-style:italic}.page .post-content .highlight .c1{color:#93a1a1;font-style:italic}.page .post-content .highlight .cs{color:#93a1a1;font-style:italic}.page .post-content .highlight .cp{color:#93a1a1;font-style:italic}.page .post-content .highlight .cpf{color:#93a1a1;font-style:italic}.page .post-content .highlight .g{color:#d33682}.page .post-content .highlight .gd{color:#b58900}.page .post-content .highlight .ge{color:#d33682}.page .post-content .highlight .gr{color:#d33682}.page .post-content .highlight .gh{color:#d33682}.page .post-content .highlight .gi{color:#859900}.page .post-content .highlight .go{color:#d33682}.page .post-content .highlight .gp{color:#d33682}.page .post-content .highlight .gs{color:#d33682}.page .post-content .highlight .gu{color:#d33682}.page .post-content .highlight .gt{color:#d33682}.dark-theme .page .post-content .highlight{background:#272c34}.dark-theme .page .post-content .highlight .p{color:#a9a9b3}.dark-theme .page .post-content .highlight .k{color:#d371e3}.dark-theme .page .post-content .highlight .kc{color:#d371e3}.dark-theme .page .post-content .highlight .kd{color:#d371e3}.dark-theme .page .post-content .highlight .kn{color:#d371e3}.dark-theme .page .post-content .highlight .kp{color:#d371e3}.dark-theme .page .post-content .highlight .kr{color:#d371e3}.dark-theme .page .post-content .highlight .kt{color:#8be9fd}.dark-theme .page .post-content .highlight .na{color:#41b1f5}.dark-theme .page .post-content .highlight .nb{color:#8be9fd;font-style:italic}.dark-theme .page .post-content .highlight .nc{color:#e5bf78}.dark-theme .page .post-content .highlight .nf{color:#19b8c0}.dark-theme .page .post-content .highlight .nx{color:#f16473}.dark-theme .page .post-content .highlight .nl{color:#8be9fd;font-style:italic}.dark-theme .page .post-content .highlight .nt{color:#d371e3}.dark-theme .page .post-content .highlight .nv{color:#8be9fd;font-style:italic}.dark-theme .page .post-content .highlight .vc{color:#8be9fd;font-style:italic}.dark-theme .page .post-content .highlight .vg{color:#8be9fd;font-style:italic}.dark-theme .page .post-content .highlight .vi{color:#8be9fd;font-style:italic}.dark-theme .page .post-content .highlight .s{color:#8bc56f}.dark-theme .page .post-content .highlight .sa{color:#8bc56f}.dark-theme .page .post-content .highlight .sb{color:#8bc56f}.dark-theme .page .post-content .highlight .sc{color:#8bc56f}.dark-theme .page .post-content .highlight .dl{color:#8bc56f}.dark-theme .page .post-content .highlight .sd{color:#8bc56f}.dark-theme .page .post-content .highlight .s2{color:#8bc56f}.dark-theme .page .post-content .highlight .se{color:#8bc56f}.dark-theme .page .post-content .highlight .sh{color:#8bc56f}.dark-theme .page .post-content .highlight .si{color:#8bc56f}.dark-theme .page .post-content .highlight .sx{color:#8bc56f}.dark-theme .page .post-content .highlight .sr{color:#8bc56f}.dark-theme .page .post-content .highlight .s1{color:#8bc56f}.dark-theme .page .post-content .highlight .ss{color:#8bc56f}.dark-theme .page .post-content .highlight .m{color:#bd93f9}.dark-theme .page .post-content .highlight .mb{color:#bd93f9}.dark-theme .page .post-content .highlight .mf{color:#bd93f9}.dark-theme .page .post-content .highlight .mh{color:#bd93f9}.dark-theme .page .post-content .highlight .mi{color:#bd93f9}.dark-theme .page .post-content .highlight .il{color:#bd93f9}.dark-theme .page .post-content .highlight .mo{color:#bd93f9}.dark-theme .page .post-content .highlight .o{color:#d371e3}.dark-theme .page .post-content .highlight .ow{color:#d371e3}.dark-theme .page .post-content .highlight .c{color:#7e848f}.dark-theme .page .post-content .highlight .ch{color:#7e848f}.dark-theme .page .post-content .highlight .cm{color:#7e848f}.dark-theme .page .post-content .highlight .c1{color:#7e848f}.dark-theme .page .post-content .highlight .cs{color:#7e848f}.dark-theme .page .post-content .highlight .cp{color:#d371e3}.dark-theme .page .post-content .highlight .cpf{color:#d371e3}.dark-theme .page .post-content .highlight .gd{color:#8b080b}.dark-theme .page .post-content .highlight .ge{text-decoration:underline}.dark-theme .page .post-content .highlight .gh{font-weight:700}.dark-theme .page .post-content .highlight .gi{font-weight:700}.dark-theme .page .post-content .highlight .go{color:#44475a}.dark-theme .page .post-content .highlight .gu{font-weight:700}.dark-theme .page .post-content .highlight .gl{text-decoration:underline}.page .post-content .admonition{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);position:relative;margin:.9765em 0;padding:0 .75rem;border-left:.25rem solid #448aff;border-radius:.125rem;overflow:auto}.page .post-content .admonition .admonition-title{margin:0 -.75rem;padding:.5rem .75rem .5rem 2.5rem;border-bottom:.1rem solid rgba(68,138,255,.1);background-color:rgba(68,138,255,.1);font-weight:700}.page .post-content .admonition i.icon{font-size:16px;cursor:auto;position:absolute;left:.75rem;top:.75rem}.page .post-content .admonition.note{border-left-color:#448aff}.page .post-content .admonition.note i.icon{color:#448aff}.page .post-content .admonition.abstract{border-left-color:#00b0ff}.page .post-content .admonition.abstract .admonition-title{background-color:rgba(0,176,255,.1)}.page .post-content .admonition.abstract i.icon{color:#00b0ff}.page .post-content .admonition.info{border-left-color:#00b8d4}.page .post-content .admonition.info .admonition-title{background-color:rgba(0,184,212,.1)}.page .post-content .admonition.info i.icon{color:#00b8d4}.page .post-content .admonition.tip{border-left-color:#00bfa5}.page .post-content .admonition.tip .admonition-title{background-color:rgba(0,191,165,.1)}.page .post-content .admonition.tip i.icon{color:#00bfa5}.page .post-content .admonition.success{border-left-color:#00c853}.page .post-content .admonition.success .admonition-title{background-color:rgba(0,200,83,.1)}.page .post-content .admonition.success i.icon{color:#00c853}.page .post-content .admonition.question{border-left-color:#64dd17}.page .post-content .admonition.question .admonition-title{background-color:rgba(100,221,23,.1)}.page .post-content .admonition.question i.icon{color:#64dd17}.page .post-content .admonition.warning{border-left-color:#ff9100}.page .post-content .admonition.warning .admonition-title{background-color:rgba(255,145,0,.1)}.page .post-content .admonition.warning i.icon{color:#ff9100}.page .post-content .admonition.failure{border-left-color:#ff5252}.page .post-content .admonition.failure .admonition-title{background-color:rgba(255,82,82,.1)}.page .post-content .admonition.failure i.icon{color:#ff5252}.page .post-content .admonition.danger{border-left-color:#ff1744}.page .post-content .admonition.danger .admonition-title{background-color:rgba(255,23,68,.1)}.page .post-content .admonition.danger i.icon{color:#ff1744}.page .post-content .admonition.bug{border-left-color:#f50057}.page .post-content .admonition.bug .admonition-title{background-color:rgba(245,0,87,.1)}.page .post-content .admonition.bug i.icon{color:#f50057}.page .post-content .admonition.example{border-left-color:#651fff}.page .post-content .admonition.example .admonition-title{background-color:rgba(101,31,255,.1)}.page .post-content .admonition.example i.icon{color:#651fff}.page .post-content .admonition.quote{border-left-color:#9e9e9e}.page .post-content .admonition.quote .admonition-title{background-color:rgba(158,158,158,.1)}.page .post-content .admonition.quote i.icon{color:#9e9e9e}.page .post-content .admonition:last-child{margin-bottom:.75rem}.page .post-content details.admonition summary{display:block;outline:none;cursor:pointer}.page .post-content details.admonition summary::-webkit-details-marker{display:none}.page .post-content details.admonition summary i.details{position:absolute;top:.75rem;right:.75rem;color:#161209}.dark-theme .page .post-content details.admonition summary i.details{color:#a9a9b3}.page .post-content details.admonition[open] i.details{transform:rotate(180deg)}.page .post-content .mermaid{width:100%;margin:3% auto;text-align:center}.page .post-content .mermaid .label{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);color:#333}.page .post-content .mermaid .label text{fill:#333}.page .post-content .mermaid .node rect,.page .post-content .mermaid .node circle,.page .post-content .mermaid .node ellipse,.page .post-content .mermaid .node polygon{fill:#eee;stroke:#999;stroke-width:1px}.page .post-content .mermaid .node .label{text-align:center}.page .post-content .mermaid .node.clickable{cursor:pointer}.page .post-content .mermaid .arrowheadPath{fill:#333}.page .post-content .mermaid .edgePath .path{stroke:#666;stroke-width:1.5px}.page .post-content .mermaid .edgeLabel{background-color:#fff;text-align:center}.page .post-content .mermaid .cluster rect{fill:#eaf2fb;stroke:#26a;stroke-width:1px}.page .post-content .mermaid .cluster text{fill:#333}.page .post-content .mermaid div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:12px;background:#eaf2fb;border:1px solid #26a;border-radius:2px;pointer-events:none;z-index:100}.page .post-content .mermaid .actor{stroke:#999;fill:#eee}.page .post-content .mermaid text.actor{fill:#333;stroke:none}.page .post-content .mermaid .actor-line{stroke:#666}.page .post-content .mermaid .messageLine0{stroke-width:1.5;stroke-dasharray:'2 2';stroke:#333}.page .post-content .mermaid .messageLine1{stroke-width:1.5;stroke-dasharray:'2 2';stroke:#333}.page .post-content .mermaid #arrowhead{fill:#333}.page .post-content .mermaid .sequenceNumber{fill:#fff}.page .post-content .mermaid #sequencenumber{fill:#333}.page .post-content .mermaid #crosshead path{fill:#333!important;stroke:#333!important}.page .post-content .mermaid .messageText{fill:#333;stroke:none}.page .post-content .mermaid .labelBox{stroke:#999;fill:#eee}.page .post-content .mermaid .labelText{fill:#333;stroke:none}.page .post-content .mermaid .loopText{fill:#333;stroke:none}.page .post-content .mermaid .loopLine{stroke-width:2;stroke-dasharray:'2 2';stroke:#999}.page .post-content .mermaid .note{stroke:#770;fill:#ffa}.page .post-content .mermaid .noteText{fill:#000;stroke:none;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:14px}.page .post-content .mermaid .activation0{fill:#f4f4f4;stroke:#666}.page .post-content .mermaid .activation1{fill:#f4f4f4;stroke:#666}.page .post-content .mermaid .activation2{fill:#f4f4f4;stroke:#666}.page .post-content .mermaid .mermaid-main-font{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid .section{stroke:none;opacity:.2}.page .post-content .mermaid .section0{fill:#80b3e6}.page .post-content .mermaid .section2{fill:#80b3e6}.page .post-content .mermaid .section1,.page .post-content .mermaid .section3{fill:#fff;opacity:.2}.page .post-content .mermaid .sectionTitle0{fill:#333}.page .post-content .mermaid .sectionTitle1{fill:#333}.page .post-content .mermaid .sectionTitle2{fill:#333}.page .post-content .mermaid .sectionTitle3{fill:#333}.page .post-content .mermaid .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid .grid .tick{stroke:#e6e5e5;opacity:.3;shape-rendering:crispEdges}.page .post-content .mermaid .grid .tick text{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid .grid path{stroke-width:0}.page .post-content .mermaid .today{fill:none;stroke:#d42;stroke-width:2px}.page .post-content .mermaid .task{stroke-width:2}.page .post-content .mermaid .taskText{text-anchor:middle;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid .taskText:not([font-size]){font-size:11px}.page .post-content .mermaid .taskTextOutsideRight{fill:#333;text-anchor:start;font-size:11px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid .taskTextOutsideLeft{fill:#333;text-anchor:end;font-size:11px}.page .post-content .mermaid .task.clickable{cursor:pointer}.page .post-content .mermaid .taskText.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.page .post-content .mermaid .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.page .post-content .mermaid .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.page .post-content .mermaid .taskText0,.page .post-content .mermaid .taskText1,.page .post-content .mermaid .taskText2,.page .post-content .mermaid .taskText3{fill:#fff}.page .post-content .mermaid .task0,.page .post-content .mermaid .task1,.page .post-content .mermaid .task2,.page .post-content .mermaid .task3{fill:#26a;stroke:#1a4d80}.page .post-content .mermaid .taskTextOutside0,.page .post-content .mermaid .taskTextOutside2{fill:#333}.page .post-content .mermaid .taskTextOutside1,.page .post-content .mermaid .taskTextOutside3{fill:#333}.page .post-content .mermaid .active0,.page .post-content .mermaid .active1,.page .post-content .mermaid .active2,.page .post-content .mermaid .active3{fill:#eee;stroke:#1a4d80}.page .post-content .mermaid .activeText0,.page .post-content .mermaid .activeText1,.page .post-content .mermaid .activeText2,.page .post-content .mermaid .activeText3{fill:#333!important}.page .post-content .mermaid .done0,.page .post-content .mermaid .done1,.page .post-content .mermaid .done2,.page .post-content .mermaid .done3{stroke:#666;fill:#bbb;stroke-width:2}.page .post-content .mermaid .doneText0,.page .post-content .mermaid .doneText1,.page .post-content .mermaid .doneText2,.page .post-content .mermaid .doneText3{fill:#333!important}.page .post-content .mermaid .crit0,.page .post-content .mermaid .crit1,.page .post-content .mermaid .crit2,.page .post-content .mermaid .crit3{stroke:#b1361b;fill:#d42;stroke-width:2}.page .post-content .mermaid .activeCrit0,.page .post-content .mermaid .activeCrit1,.page .post-content .mermaid .activeCrit2,.page .post-content .mermaid .activeCrit3{stroke:#b1361b;fill:#eee;stroke-width:2}.page .post-content .mermaid .doneCrit0,.page .post-content .mermaid .doneCrit1,.page .post-content .mermaid .doneCrit2,.page .post-content .mermaid .doneCrit3{stroke:#b1361b;fill:#bbb;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}.page .post-content .mermaid .milestone{transform:rotate(45deg)scale(0.8,0.8)}.page .post-content .mermaid .milestoneText{font-style:italic}.page .post-content .mermaid .doneCritText0,.page .post-content .mermaid .doneCritText1,.page .post-content .mermaid .doneCritText2,.page .post-content .mermaid .doneCritText3{fill:#333!important}.page .post-content .mermaid .activeCritText0,.page .post-content .mermaid .activeCritText1,.page .post-content .mermaid .activeCritText2,.page .post-content .mermaid .activeCritText3{fill:#333!important}.page .post-content .mermaid .titleText{text-anchor:middle;font-size:18px;fill:#333;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid g.classGroup text{fill:#999;stroke:none;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:10px}.page .post-content .mermaid g.classGroup text .title{font-weight:bolder}.page .post-content .mermaid g.classGroup rect{fill:#eee;stroke:#999}.page .post-content .mermaid g.classGroup line{stroke:#999;stroke-width:1}.page .post-content .mermaid .classLabel .box{stroke:none;stroke-width:0;fill:#eee;opacity:.5}.page .post-content .mermaid .classLabel .label{fill:#999;font-size:10px}.page .post-content .mermaid .relation{stroke:#999;stroke-width:1;fill:none}.page .post-content .mermaid #compositionStart{fill:#999;stroke:#999;stroke-width:1}.page .post-content .mermaid #compositionEnd{fill:#999;stroke:#999;stroke-width:1}.page .post-content .mermaid #aggregationStart{fill:#eee;stroke:#999;stroke-width:1}.page .post-content .mermaid #aggregationEnd{fill:#eee;stroke:#999;stroke-width:1}.page .post-content .mermaid #dependencyStart{fill:#999;stroke:#999;stroke-width:1}.page .post-content .mermaid #dependencyEnd{fill:#999;stroke:#999;stroke-width:1}.page .post-content .mermaid #extensionStart{fill:#999;stroke:#999;stroke-width:1}.page .post-content .mermaid #extensionEnd{fill:#999;stroke:#999;stroke-width:1}.page .post-content .mermaid .commit-id,.page .post-content .mermaid .commit-msg,.page .post-content .mermaid .branch-label{fill:lightgrey;color:lightgrey;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid .pieTitleText{text-anchor:middle;font-size:25px;fill:#333;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid .slice{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid g.stateGroup text{fill:#999;stroke:none;font-size:10px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid g.stateGroup text{fill:#999;stroke:none;font-size:10px}.page .post-content .mermaid g.stateGroup .state-title{font-weight:bolder;fill:#000}.page .post-content .mermaid g.stateGroup rect{fill:#eee;stroke:#999}.page .post-content .mermaid g.stateGroup line{stroke:#999;stroke-width:1}.page .post-content .mermaid .transition{stroke:#999;stroke-width:1;fill:none}.page .post-content .mermaid .stateGroup .composit{fill:#fff;border-bottom:1px}.page .post-content .mermaid .state-note{stroke:#770;fill:#ffa}.page .post-content .mermaid .state-note text{fill:#000;stroke:none;font-size:10px}.page .post-content .mermaid .stateLabel .box{stroke:none;stroke-width:0;fill:#eee;opacity:.5}.page .post-content .mermaid .stateLabel text{fill:#000;font-size:10px;font-weight:700;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.page .post-content .mermaid :root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}.dark-theme .page .post-content .mermaid{}.dark-theme .page .post-content .mermaid .label{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);color:#333}.dark-theme .page .post-content .mermaid .label text{fill:#333}.dark-theme .page .post-content .mermaid .node rect,.dark-theme .page .post-content .mermaid .node circle,.dark-theme .page .post-content .mermaid .node ellipse,.dark-theme .page .post-content .mermaid .node polygon{fill:#bdd5ea;stroke:purple;stroke-width:1px}.dark-theme .page .post-content .mermaid .node .label{text-align:center}.dark-theme .page .post-content .mermaid .node.clickable{cursor:pointer}.dark-theme .page .post-content .mermaid .arrowheadPath{fill:lightgrey}.dark-theme .page .post-content .mermaid .edgePath .path{stroke:lightgrey;stroke-width:1.5px}.dark-theme .page .post-content .mermaid .edgeLabel{background-color:#e8e8e8;text-align:center}.dark-theme .page .post-content .mermaid .cluster rect{fill:#6d6d65;stroke:rgba(255,255,255,.25);stroke-width:1px}.dark-theme .page .post-content .mermaid .cluster text{fill:#f9fffe}.dark-theme .page .post-content .mermaid div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:12px;background:#6d6d65;border:1px solid rgba(255,255,255,.25);border-radius:2px;pointer-events:none;z-index:100}.dark-theme .page .post-content .mermaid .actor{stroke:#81b1db;fill:#bdd5ea}.dark-theme .page .post-content .mermaid text.actor{fill:#000;stroke:none}.dark-theme .page .post-content .mermaid .actor-line{stroke:lightgrey}.dark-theme .page .post-content .mermaid .messageLine0{stroke-width:1.5;stroke-dasharray:'2 2';stroke:lightgrey}.dark-theme .page .post-content .mermaid .messageLine1{stroke-width:1.5;stroke-dasharray:'2 2';stroke:lightgrey}.dark-theme .page .post-content .mermaid #arrowhead{fill:lightgrey}.dark-theme .page .post-content .mermaid .sequenceNumber{fill:#fff}.dark-theme .page .post-content .mermaid #sequencenumber{fill:lightgrey}.dark-theme .page .post-content .mermaid #crosshead path{fill:lightgrey!important;stroke:lightgrey!important}.dark-theme .page .post-content .mermaid .messageText{fill:lightgrey;stroke:none}.dark-theme .page .post-content .mermaid .labelBox{stroke:#81b1db;fill:#bdd5ea}.dark-theme .page .post-content .mermaid .labelText{fill:#323d47;stroke:none}.dark-theme .page .post-content .mermaid .loopText{fill:lightgrey;stroke:none}.dark-theme .page .post-content .mermaid .loopLine{stroke-width:2;stroke-dasharray:'2 2';stroke:#81b1db}.dark-theme .page .post-content .mermaid .note{stroke:rgba(255,255,255,.25);fill:#fff5ad}.dark-theme .page .post-content .mermaid .noteText{fill:#000;stroke:none;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:14px}.dark-theme .page .post-content .mermaid .activation0{fill:#f4f4f4;stroke:#666}.dark-theme .page .post-content .mermaid .activation1{fill:#f4f4f4;stroke:#666}.dark-theme .page .post-content .mermaid .activation2{fill:#f4f4f4;stroke:#666}.dark-theme .page .post-content .mermaid .mermaid-main-font{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid .section{stroke:none;opacity:.2}.dark-theme .page .post-content .mermaid .section0{fill:rgba(255,255,255,.3)}.dark-theme .page .post-content .mermaid .section2{fill:#eae8b9}.dark-theme .page .post-content .mermaid .section1,.dark-theme .page .post-content .mermaid .section3{fill:#fff;opacity:.2}.dark-theme .page .post-content .mermaid .sectionTitle0{fill:#f9fffe}.dark-theme .page .post-content .mermaid .sectionTitle1{fill:#f9fffe}.dark-theme .page .post-content .mermaid .sectionTitle2{fill:#f9fffe}.dark-theme .page .post-content .mermaid .sectionTitle3{fill:#f9fffe}.dark-theme .page .post-content .mermaid .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid .grid .tick{stroke:lightgrey;opacity:.3;shape-rendering:crispEdges}.dark-theme .page .post-content .mermaid .grid .tick text{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid .grid path{stroke-width:0}.dark-theme .page .post-content .mermaid .today{fill:none;stroke:#db5757;stroke-width:2px}.dark-theme .page .post-content .mermaid .task{stroke-width:2}.dark-theme .page .post-content .mermaid .taskText{text-anchor:middle;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid .taskText:not([font-size]){font-size:11px}.dark-theme .page .post-content .mermaid .taskTextOutsideRight{fill:#323d47;text-anchor:start;font-size:11px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid .taskTextOutsideLeft{fill:#323d47;text-anchor:end;font-size:11px}.dark-theme .page .post-content .mermaid .task.clickable{cursor:pointer}.dark-theme .page .post-content .mermaid .taskText.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.dark-theme .page .post-content .mermaid .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.dark-theme .page .post-content .mermaid .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163!important;font-weight:700}.dark-theme .page .post-content .mermaid .taskText0,.dark-theme .page .post-content .mermaid .taskText1,.dark-theme .page .post-content .mermaid .taskText2,.dark-theme .page .post-content .mermaid .taskText3{fill:#323d47}.dark-theme .page .post-content .mermaid .task0,.dark-theme .page .post-content .mermaid .task1,.dark-theme .page .post-content .mermaid .task2,.dark-theme .page .post-content .mermaid .task3{fill:#bdd5ea;stroke:rgba(255,255,255,.5)}.dark-theme .page .post-content .mermaid .taskTextOutside0,.dark-theme .page .post-content .mermaid .taskTextOutside2{fill:lightgrey}.dark-theme .page .post-content .mermaid .taskTextOutside1,.dark-theme .page .post-content .mermaid .taskTextOutside3{fill:lightgrey}.dark-theme .page .post-content .mermaid .active0,.dark-theme .page .post-content .mermaid .active1,.dark-theme .page .post-content .mermaid .active2,.dark-theme .page .post-content .mermaid .active3{fill:#81b1db;stroke:rgba(255,255,255,.5)}.dark-theme .page .post-content .mermaid .activeText0,.dark-theme .page .post-content .mermaid .activeText1,.dark-theme .page .post-content .mermaid .activeText2,.dark-theme .page .post-content .mermaid .activeText3{fill:#323d47!important}.dark-theme .page .post-content .mermaid .done0,.dark-theme .page .post-content .mermaid .done1,.dark-theme .page .post-content .mermaid .done2,.dark-theme .page .post-content .mermaid .done3{stroke:grey;fill:lightgrey;stroke-width:2}.dark-theme .page .post-content .mermaid .doneText0,.dark-theme .page .post-content .mermaid .doneText1,.dark-theme .page .post-content .mermaid .doneText2,.dark-theme .page .post-content .mermaid .doneText3{fill:#323d47!important}.dark-theme .page .post-content .mermaid .crit0,.dark-theme .page .post-content .mermaid .crit1,.dark-theme .page .post-content .mermaid .crit2,.dark-theme .page .post-content .mermaid .crit3{stroke:#e83737;fill:#e83737;stroke-width:2}.dark-theme .page .post-content .mermaid .activeCrit0,.dark-theme .page .post-content .mermaid .activeCrit1,.dark-theme .page .post-content .mermaid .activeCrit2,.dark-theme .page .post-content .mermaid .activeCrit3{stroke:#e83737;fill:#81b1db;stroke-width:2}.dark-theme .page .post-content .mermaid .doneCrit0,.dark-theme .page .post-content .mermaid .doneCrit1,.dark-theme .page .post-content .mermaid .doneCrit2,.dark-theme .page .post-content .mermaid .doneCrit3{stroke:#e83737;fill:lightgrey;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}.dark-theme .page .post-content .mermaid .milestone{transform:rotate(45deg)scale(0.8,0.8)}.dark-theme .page .post-content .mermaid .milestoneText{font-style:italic}.dark-theme .page .post-content .mermaid .doneCritText0,.dark-theme .page .post-content .mermaid .doneCritText1,.dark-theme .page .post-content .mermaid .doneCritText2,.dark-theme .page .post-content .mermaid .doneCritText3{fill:#323d47!important}.dark-theme .page .post-content .mermaid .activeCritText0,.dark-theme .page .post-content .mermaid .activeCritText1,.dark-theme .page .post-content .mermaid .activeCritText2,.dark-theme .page .post-content .mermaid .activeCritText3{fill:#323d47!important}.dark-theme .page .post-content .mermaid .titleText{text-anchor:middle;font-size:18px;fill:#323d47;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid g.classGroup text{fill:purple;stroke:none;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family);font-size:10px}.dark-theme .page .post-content .mermaid g.classGroup text .title{font-weight:bolder}.dark-theme .page .post-content .mermaid g.classGroup rect{fill:#bdd5ea;stroke:purple}.dark-theme .page .post-content .mermaid g.classGroup line{stroke:purple;stroke-width:1}.dark-theme .page .post-content .mermaid .classLabel .box{stroke:none;stroke-width:0;fill:#bdd5ea;opacity:.5}.dark-theme .page .post-content .mermaid .classLabel .label{fill:purple;font-size:10px}.dark-theme .page .post-content .mermaid .relation{stroke:purple;stroke-width:1;fill:none}.dark-theme .page .post-content .mermaid #compositionStart{fill:purple;stroke:purple;stroke-width:1}.dark-theme .page .post-content .mermaid #compositionEnd{fill:purple;stroke:purple;stroke-width:1}.dark-theme .page .post-content .mermaid #aggregationStart{fill:#bdd5ea;stroke:purple;stroke-width:1}.dark-theme .page .post-content .mermaid #aggregationEnd{fill:#bdd5ea;stroke:purple;stroke-width:1}.dark-theme .page .post-content .mermaid #dependencyStart{fill:purple;stroke:purple;stroke-width:1}.dark-theme .page .post-content .mermaid #dependencyEnd{fill:purple;stroke:purple;stroke-width:1}.dark-theme .page .post-content .mermaid #extensionStart{fill:purple;stroke:purple;stroke-width:1}.dark-theme .page .post-content .mermaid #extensionEnd{fill:purple;stroke:purple;stroke-width:1}.dark-theme .page .post-content .mermaid .commit-id,.dark-theme .page .post-content .mermaid .commit-msg,.dark-theme .page .post-content .mermaid .branch-label{fill:lightgrey;color:lightgrey;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid .pieTitleText{text-anchor:middle;font-size:25px;fill:#323d47;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid .slice{font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid g.stateGroup text{fill:purple;stroke:none;font-size:10px;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid g.stateGroup text{fill:purple;stroke:none;font-size:10px}.dark-theme .page .post-content .mermaid g.stateGroup .state-title{font-weight:bolder;fill:#000}.dark-theme .page .post-content .mermaid g.stateGroup rect{fill:#bdd5ea;stroke:purple}.dark-theme .page .post-content .mermaid g.stateGroup line{stroke:purple;stroke-width:1}.dark-theme .page .post-content .mermaid .transition{stroke:purple;stroke-width:1;fill:none}.dark-theme .page .post-content .mermaid .stateGroup .composit{fill:#fff;border-bottom:1px}.dark-theme .page .post-content .mermaid .state-note{stroke:rgba(255,255,255,.25);fill:#fff5ad}.dark-theme .page .post-content .mermaid .state-note text{fill:#000;stroke:none;font-size:10px}.dark-theme .page .post-content .mermaid .stateLabel .box{stroke:none;stroke-width:0;fill:#bdd5ea;opacity:.5}.dark-theme .page .post-content .mermaid .stateLabel text{fill:#000;font-size:10px;font-weight:700;font-family:trebuchet ms,verdana,arial;font-family:var(--mermaid-font-family)}.dark-theme .page .post-content .mermaid :root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}.dark-theme .page .post-content .aplayer{background:#212121}.dark-theme .page .post-content .aplayer.aplayer-withlist .aplayer-info{border-bottom-color:#5c5c5c}.dark-theme .page .post-content .aplayer.aplayer-fixed .aplayer-list{border-color:#5c5c5c}.dark-theme .page .post-content .aplayer .aplayer-body{background-color:#212121}.dark-theme .page .post-content .aplayer .aplayer-info{border-top-color:#212121}.dark-theme .page .post-content .aplayer .aplayer-info .aplayer-music .aplayer-title{color:#fff}.dark-theme .page .post-content .aplayer .aplayer-info .aplayer-music .aplayer-author{color:#fff}.dark-theme .page .post-content .aplayer .aplayer-info .aplayer-controller .aplayer-time{color:#eee}.dark-theme .page .post-content .aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon path{fill:#eee}.dark-theme .page .post-content .aplayer .aplayer-list{background-color:#212121}.dark-theme .page .post-content .aplayer .aplayer-list::-webkit-scrollbar-thumb{background-color:#999}.dark-theme .page .post-content .aplayer .aplayer-list::-webkit-scrollbar-thumb:hover{background-color:#bbb}.dark-theme .page .post-content .aplayer .aplayer-list li{color:#fff;border-top-color:#666}.dark-theme .page .post-content .aplayer .aplayer-list li:hover{background:#4e4e4e}.dark-theme .page .post-content .aplayer .aplayer-list li.aplayer-list-light{background:#6c6c6c}.dark-theme .page .post-content .aplayer .aplayer-list li .aplayer-list-index{color:#ddd}.dark-theme .page .post-content .aplayer .aplayer-list li .aplayer-list-author{color:#ddd}.dark-theme .page .post-content .aplayer .aplayer-lrc{text-shadow:-1px -1px 0 #666}.dark-theme .page .post-content .aplayer .aplayer-lrc:before{background:-moz-linear-gradient(top,#212121 0%,rgba(33,33,33,0) 100%);background:-webkit-linear-gradient(top,#212121 0%,rgba(33,33,33,0) 100%);background:linear-gradient(to bottom,#212121 0%,rgba(33,33,33,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#212121',endColorstr='#00212121',GradientType=0 )}.dark-theme .page .post-content .aplayer .aplayer-lrc:after{background:-moz-linear-gradient(top,rgba(33,33,33,0) 0%,rgba(33,33,33,0.8) 100%);background:-webkit-linear-gradient(top,rgba(33,33,33,0) 0%,rgba(33,33,33,0.8) 100%);background:linear-gradient(to bottom,rgba(33,33,33,0) 0%,rgba(33,33,33,0.8) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212121',endColorstr='#cc212121',GradientType=0 )}.dark-theme .page .post-content .aplayer .aplayer-lrc p{color:#fff}.dark-theme .page .post-content .aplayer .aplayer-miniswitcher{background:#484848}.dark-theme .page .post-content .aplayer .aplayer-miniswitcher .aplayer-icon path{fill:#eee}.page .post-content .echarts{width:100%;height:30rem;margin:3% auto;text-align:center}.page .post-content .bilibili{position:relative;width:100%;height:0;padding-bottom:75%;margin:3% auto;text-align:center}.page .post-content .bilibili iframe{position:absolute;width:100%;height:100%;left:0;top:0}.page .post-content hr{margin:1rem 0;position:relative;border-top:1px dashed #dcdcdc;border-bottom:none}.dark-theme .page .post-content hr{border-top:1px dashed #4a4b50}.page .post-content kbd{display:inline-block;padding:.25em;background-color:#fff;border:1px solid #dcdcdc;border-bottom-color:#dcdcdc;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 #dcdcdc;box-shadow:inset 0 -1px 0 #dcdcdc;font-size:.8em;line-height:1.25rem;font-family:Fira Mono,Source Code Pro,Menlo,monospace;color:#e74c3c}.dark-theme .page .post-content kbd{background-color:#292a2d;border:1px solid #4a4b50;border-bottom-color:#4a4b50;-webkit-box-shadow:inset 0 -1px 0 #4a4b50;box-shadow:inset 0 -1px 0 #4a4b50;color:#e5bf78}.page .post-content .typeit .code{padding:.375rem;font-size:.875rem;font-family:Fira Mono,Source Code Pro,Menlo,monospace;font-weight:700;word-break:break-all}.page .post-content .align-left{text-align:left}.page .post-content .align-center{text-align:center}.page .post-content .align-right{text-align:right}.page .post-content .float-left{float:left}.page .post-content .float-right{float:right}.page .post-footer{margin-top:3rem}.page .post-footer .post-info{border-bottom:1px solid #dcdcdc;padding:1rem 0 .3rem}.dark-theme .page .post-footer .post-info{border-bottom:1px solid #4a4b50}.page .post-footer .post-info .post-info-line{display:flex;justify-content:space-between}.page .post-footer .post-info .post-info-line .post-info-mod{font-size:.8em;color:#a9a9b3}.dark-theme .page .post-footer .post-info .post-info-line .post-info-mod{color:#87878d}.page .post-footer .post-info .post-info-line .post-info-license{font-size:.8em;color:#a9a9b3}.dark-theme .page .post-footer .post-info .post-info-line .post-info-license{color:#87878d}.page .post-footer .post-info .post-info-line .post-info-md a{font-size:.8em;color:#2d96bd}.dark-theme .page .post-footer .post-info .post-info-line .post-info-md a{color:#eee}.page .post-footer .post-info .post-info-line .post-info-md a:hover{color:#ef3982}.dark-theme .page .post-footer .post-info .post-info-line .post-info-md a:hover{color:#2d96bd}.page .post-footer .post-info-more{padding:.3rem 0 1rem;display:flex;justify-content:space-between;font-size:.9rem}.page .post-footer .post-nav::before,.page .post-footer .post-nav::after{content:' ';display:table}.page .post-footer .post-nav a.prev,.page .post-footer .post-nav a.next{font-size:1rem;font-weight:600;transition-duration:.3s;transition-property:transform;transition-timing-function:ease-out}.page .post-footer .post-nav a.prev{float:left}.page .post-footer .post-nav a.prev:hover{transform:translateX(-4px)}.page .post-footer .post-nav a.next{float:right}.page .post-footer .post-nav a.next:hover{transform:translateX(4px)}.page .post-comment{padding:4rem 0}.page .home-intro{transform:translateY(0);padding:2rem 0}.page .home-intro .home-avatar img{width:6rem}.page .post{padding-top:1rem;padding-bottom:.8rem;color:#161209;border-bottom:1px dashed #dcdcdc}.dark-theme .page .post{color:#a9a9b3;border-bottom:1px dashed #4a4b50}.page .post .post-featured-image-preview{width:100%;padding:30% 0 0;position:relative;margin:.6rem auto}.page .post .post-featured-image-preview img{position:absolute;width:100%;height:100%;left:0;top:0;object-fit:cover}.page .post .post-list-title{font-size:1.6rem}.page .post .post-meta{font-size:.875rem!important}.page .post .post-meta a{color:#a9a9b3!important}.dark-theme .page .post .post-meta a{color:#87878d!important}.page .post .post-meta a:hover{color:#2d96bd!important}.dark-theme .page .post .post-meta a:hover{color:#fff!important}.page .post .post-content{padding-top:.2rem;font-size:.9rem;width:100%;max-height:7rem;overflow:hidden}.page .post .post-content h2,.page .post .post-content h3,.page .post .post-content h4,.page .post .post-content h5,.page .post .post-content h6{font-size:1rem;line-height:1rem;padding-top:.3rem;padding-bottom:.3rem}.page .post .post-content p{margin:0;padding-top:.3rem;padding-bottom:.3rem}.page .post .post-footer{margin-top:.5rem;display:flex;justify-content:space-between;align-items:center;font-size:.875rem!important}.page .post .post-footer a{color:#2d96bd!important}.dark-theme .page .post .post-footer a{color:#eee!important}.page .post .post-footer a:hover{color:#ef3982!important}.dark-theme .page .post .post-footer a:hover{color:#2d96bd!important}.page .post .post-footer .post-tags{padding:0}.page .post .post-footer .post-tags a{color:#161209!important}.dark-theme .page .post .post-footer .post-tags a{color:#a9a9b3!important}.page .post .post-footer .post-tags a:hover{color:#2d96bd!important}.dark-theme .page .post .post-footer .post-tags a:hover{color:#fff!important}.archive .post-title{text-align:right;padding-bottom:2rem}.archive .archive-item{margin-left:2rem}.archive .categories-card{margin:0 auto;margin-top:3rem;display:flex;align-items:center;justify-content:space-between;flex-direction:row;flex-wrap:wrap;padding:0 2.5rem;line-height:1.6rem}.archive .categories-card .card-item{font-size:.875rem;text-align:left;width:45%;display:flex;align-items:flex-start;margin-top:2rem;min-height:10rem;padding:0 2%;position:relative}.archive .categories-card .card-item .card-item-wrapper{width:100%;overflow:hidden}.archive .categories-card .card-item .card-item-wrapper .card-item-title{font-size:1.2rem;font-weight:700;display:inline-block}.archive .categories-card .card-item .card-item-wrapper span{float:right;padding-right:1rem}.archive .archive-item-link{display:inline-block;text-decoration:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:95%}.archive .archive-item-link:hover{color:#2d96bd;background-color:transparent}.dark-theme .archive .archive-item-link{color:#a9a9b3;text-decoration:none;transition:color .2s ease,border-color .2s ease,background .2s ease,opacity .2s ease}.dark-theme .archive .archive-item-link:hover{color:#fff;text-decoration:none;transition:color .2s ease,border-color .2s ease,background .2s ease,opacity .2s ease}.archive .archive-item-date{float:right;text-align:right;color:#a9a9b3}.dark-theme .archive .archive-item-date{color:#87878d}.archive .more-post{text-align:right}.archive .tag-cloud-tags{margin:10px 0}.archive .tag-cloud-tags a{display:inline-block;position:relative;margin:5px 10px;word-wrap:break-word;transition-duration:.3s;transition-property:transform;transition-timing-function:ease-out}.archive .tag-cloud-tags a:active,.archive .tag-cloud-tags a:focus,.archive .tag-cloud-tags a:hover{color:#2d96bd;transform:scale(1.1)}.dark-theme .archive .tag-cloud-tags a:active,.dark-theme .archive .tag-cloud-tags a:focus,.dark-theme .archive .tag-cloud-tags a:hover{color:#fff}.archive .tag-cloud-tags a small{color:#a9a9b3}.dark-theme .archive .tag-cloud-tags a small{color:#fff}.single .post-title{text-align:right;padding-bottom:2rem}.navbar{display:block;position:fixed;width:100%;z-index:100;height:4rem;line-height:4rem;background-color:#fafafa}.dark-theme .navbar{background-color:#252627}.navbar .navbar-container{width:auto;text-align:center;margin:0 6rem;display:flex;justify-content:space-between}.navbar .navbar-container .navbar-header a{padding:0 8px;font-size:20px}.navbar .navbar-container .navbar-header a i{line-height:2em}.navbar .navbar-container .navbar-menu a{padding:0 8px}.navbar .navbar-container .navbar-menu a.active{font-weight:900;color:#161209}.dark-theme .navbar .navbar-container .navbar-menu a.active{color:#fff}.navbar-mobile{display:none;position:fixed;width:100%;z-index:100;transition:all .3s ease 0s}.navbar-mobile .navbar-container{padding:0;margin:0;height:4.5em;line-height:4.5em;background:#fff}.navbar-mobile .navbar-container .navbar-header{display:flex;justify-content:space-between;align-items:center;width:100%;font-size:18px;padding-right:1em;padding-left:1em;box-sizing:border-box}.navbar-mobile .navbar-container .navbar-header .navbar-header-title{font-size:20px}.navbar-mobile .navbar-container .navbar-header .menu-toggle{cursor:pointer;line-height:4.5em}.navbar-mobile .navbar-container .navbar-header .menu-toggle span{display:block;background:#000;width:24px;height:2px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-transition:.2s margin .2s,.2s transform;-moz-transition:.2s margin .2s,.2s transform;transition:.2s margin .2s,.2s transform}.dark-theme .navbar-mobile .navbar-container .navbar-header .menu-toggle span{background:#a9a9b3}.navbar-mobile .navbar-container .navbar-header .menu-toggle span:nth-child(1){margin-bottom:8px}.navbar-mobile .navbar-container .navbar-header .menu-toggle span:nth-child(3){margin-top:8px}.navbar-mobile .navbar-container .navbar-header .menu-toggle.active span{-webkit-transition:.2s margin,.2s transform .2s;-moz-transition:.2s margin,.2s transform .2s;transition:.2s margin,.2s transform .2s}.navbar-mobile .navbar-container .navbar-header .menu-toggle.active span:nth-child(1){-moz-transform:rotate(45deg)translate(4px,6px);-ms-transform:rotate(45deg)translate(4px,6px);-webkit-transform:rotate(45deg)translate(4px,6px);transform:rotate(45deg)translate(4px,6px)}.navbar-mobile .navbar-container .navbar-header .menu-toggle.active span:nth-child(2){opacity:0}.navbar-mobile .navbar-container .navbar-header .menu-toggle.active span:nth-child(3){-moz-transform:rotate(-45deg)translate(8px,-10px);-ms-transform:rotate(-45deg)translate(8px,-10px);-webkit-transform:rotate(-45deg)translate(8px,-10px);transform:rotate(-45deg)translate(8px,-10px)}.navbar-mobile .navbar-container .navbar-menu{text-align:center;background:#fff;border-top:2px solid #161209;display:none;box-shadow:0 2px 4px rgba(0,0,0,.1),0 4px 8px rgba(0,0,0,.1)}.navbar-mobile .navbar-container .navbar-menu a{display:block;line-height:2.5em}.navbar-mobile .navbar-container .navbar-menu.active{display:block}.dark-theme .navbar-mobile .navbar-container .navbar-menu{background:#292a2d;border-top:2px solid #a9a9b3}.dark-theme .navbar-mobile .navbar-container{background:#292a2d}.copyright{font-size:.875rem}.copyright .copyright-line{width:100%}.dynamic-to-top{display:none;overflow:hidden;width:auto;z-index:90;position:fixed;bottom:2rem;right:2rem;top:auto;left:auto;font-family:sans-serif;font-size:1rem;color:#fff;text-decoration:none;text-shadow:0 1px 0 #333;font-weight:700;padding:1rem;border:1px solid #dcdcdc;background:#222;outline:none}.dynamic-to-top:hover{background:#000;cursor:pointer}.dynamic-to-top:active{background:#000;outline:none}.dynamic-to-top:focus,.dynamic-to-top:hover{outline:none}.dynamic-to-top span{display:block;overflow:hidden;width:.875rem;height:.75rem;background:url(data:image/png;base64,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)no-repeat 50%}.dark-theme .dynamic-to-top{border:1px solid #4a4b50}.pagination{display:flex;flex-direction:row;justify-content:center;list-style:none;white-space:nowrap;width:100%;padding-top:1rem}.pagination a{-webkit-font-smoothing:antialiased;font-size:.8rem;color:#bfbfbf;letter-spacing:.1rem;font-weight:700;padding:5px;text-decoration:none;transition:.3s}.pagination li{padding-bottom:3px;margin:0 20px;box-sizing:border-box;position:relative;display:inline}.pagination li.disabled{display:none}.pagination li:hover a{color:#000}.dark-theme .pagination li:hover a{color:#fff}.pagination li:before,.pagination li:after{position:absolute;content:"";width:0;height:3px;background:#000;transition:.3s;bottom:0}.dark-theme .pagination li:before,.dark-theme .pagination li:after{background:#fff}.pagination li:before .active,.pagination li:after .active{width:100%}.pagination li:before{left:50%}.pagination li:after{right:50%}.pagination li:hover:before,.pagination li:hover:after{width:50%}.pagination li.active a{color:#000}.dark-theme .pagination li.active a{color:#fff}.pagination li.active:before,.pagination li.active:after{width:60%}@media only screen and (max-width:1800px){.page{max-width:780px}.page .post-toc{width:300px;margin-left:800px}}@media only screen and (max-width:1440px){.page{max-width:680px}.page .post-toc{width:240px;margin-left:700px}}@media only screen and (max-width:1200px){.page{max-width:560px}.page .post-toc{width:180px;margin-left:580px}}@media only screen and (max-width:960px){.navbar .navbar-container{margin:0 2rem}.page{max-width:80%}.page .post-toc{display:none}.page .post-toc-mobile{display:block}}@media only screen and (max-width:560px){.navbar{display:none}.navbar-mobile{display:block}.page{max-width:100%}.page .categories-card .card-item{width:100%}.dynamic-to-top{display:none!important}} \ No newline at end of file
diff --git a/theme.toml b/theme.toml
index 1ab21ae..2a6d23e 100644
--- a/theme.toml
+++ b/theme.toml
@@ -22,7 +22,7 @@ features = [
"syntax-highlighting",
"SEO Optimized"
]
-min_version = "0.53"
+min_version = "0.62.0"
[author]
name = "Dillon"