commit 07775036ce361e2dfd950d98a72dbdef52f8cbf2 Author: Juan Date: Fri Jul 4 16:10:22 2025 -0400 Initial Blog Commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..5154615 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/ananke"] + path = themes/ananke + url = https://github.com/theNewDynamic/gohugo-theme-ananke.git diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..5ec9756 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,10 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +description: "" +image: "" +categories: [] + +--- + diff --git a/content/posts/hi-post.md b/content/posts/hi-post.md new file mode 100644 index 0000000..75d80a9 --- /dev/null +++ b/content/posts/hi-post.md @@ -0,0 +1,12 @@ +--- +title: "Hello World" +date: 2024-04-04T02:46:07-04:00 +draft: false +categories: ["Terminal", "Hugo"] +tags: ["css", "terminal-style", "tutorial"] +description: "this is quick description of this post" + +--- + +# yoooo +this is one of my first articles homies. so i wil try my best to write it the best i can diff --git a/content/posts/new-test-post.md b/content/posts/new-test-post.md new file mode 100644 index 0000000..a00e96c --- /dev/null +++ b/content/posts/new-test-post.md @@ -0,0 +1,8 @@ +--- +title: "New Test Post" +date: 2024-04-04T02:35:21-04:00 +draft: false +params: + topic: Games +--- + diff --git a/content/posts/test-post.md b/content/posts/test-post.md new file mode 100644 index 0000000..da51fa0 --- /dev/null +++ b/content/posts/test-post.md @@ -0,0 +1,12 @@ +--- +title: "Test Post" +date: 2023-07-22T23:03:09-04:00 +draft: False +categories: ['Games'] +--- + +## Introduction + +This is **bold** text, and this is *emphasized* text. + +Visit the [Hugo](https://gohugo.io) website! \ No newline at end of file diff --git a/content/projects/project.md b/content/projects/project.md new file mode 100644 index 0000000..e33aa00 --- /dev/null +++ b/content/projects/project.md @@ -0,0 +1,5 @@ +--- +title: Project uno +date: 2024-04-04T02:35:21-04:00 +description: this is a description of my project very very nice +--- \ No newline at end of file diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..5af54c5 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,14 @@ +baseURL = '/' +languageCode = 'en-us' +title = 'mshj.net' +theme = 'terminal' + +# Enable tags and categories +[taxonomies] + category = "categories" + tag = "tags" + +# Define permalinks (important for taxonomy URLs) +[permalinks] + tags = "/tags/:slug/" + categories = "/categories/:slug/" diff --git a/public/2023/07/test-post/index.html b/public/2023/07/test-post/index.html new file mode 100644 index 0000000..f259c95 --- /dev/null +++ b/public/2023/07/test-post/index.html @@ -0,0 +1,79 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+

Test Post

+
+ +

2023-07-22

+
+ Categories: + + Games + +
+ + +
+ +

Introduction

+

This is bold text, and this is emphasized text.

+

Visit the Hugo website!

+ +
+ + +
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/2024/04/hello-world/index.html b/public/2024/04/hello-world/index.html new file mode 100644 index 0000000..a3b439e --- /dev/null +++ b/public/2024/04/hello-world/index.html @@ -0,0 +1,91 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+

Hello World

+
+ +

2024-04-04

+
+ Categories: + + Terminal + + Hugo + +
+ + +
+ Tags: + + css + + terminal-style + + tutorial + +
+ +
+ +

yoooo

+

this is one of my first articles homies. so i wil try my best to write it the best i can

+ +
+ + +
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/2024/04/hi-post/index.html b/public/2024/04/hi-post/index.html new file mode 100644 index 0000000..809f4e8 --- /dev/null +++ b/public/2024/04/hi-post/index.html @@ -0,0 +1,87 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+

Hi Post

+
+ +

2024-04-04

+
+ Categories: + + Terminal + + Hugo + +
+ + +
+ Tags: + + css + + terminal-style + + tutorial + +
+ +
+ +

yoooo

+

this is one of my first articles homies. so i wil try my best to write it the best i can

+ +
+ + +
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/2024/04/new-test-post/index.html b/public/2024/04/new-test-post/index.html new file mode 100644 index 0000000..cc19481 --- /dev/null +++ b/public/2024/04/new-test-post/index.html @@ -0,0 +1,68 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+

New Test Post

+
+ + +
+ + +
+ + +
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..16d637a --- /dev/null +++ b/public/404.html @@ -0,0 +1,75 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ +

404

+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/categories/games/index.html b/public/categories/games/index.html new file mode 100644 index 0000000..1379a72 --- /dev/null +++ b/public/categories/games/index.html @@ -0,0 +1,88 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +
+
+
+
+
Category: Games
+
+ +
+
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/categories/games/index.xml b/public/categories/games/index.xml new file mode 100644 index 0000000..a1c7aa3 --- /dev/null +++ b/public/categories/games/index.xml @@ -0,0 +1,19 @@ + + + + Games on mshj.net + //localhost:1313/categories/games/ + Recent content in Games on mshj.net + Hugo + en-us + Sat, 22 Jul 2023 23:03:09 -0400 + + + Test Post + //localhost:1313/posts/test-post/ + Sat, 22 Jul 2023 23:03:09 -0400 + //localhost:1313/posts/test-post/ + <h2 id="introduction">Introduction</h2> <p>This is <strong>bold</strong> text, and this is <em>emphasized</em> text.</p> <p>Visit the <a href="https://gohugo.io">Hugo</a> website!</p> + + + diff --git a/public/categories/hugo/index.html b/public/categories/hugo/index.html new file mode 100644 index 0000000..75f47b0 --- /dev/null +++ b/public/categories/hugo/index.html @@ -0,0 +1,89 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+
Category: Hugo
+
+ +
+
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/categories/hugo/index.xml b/public/categories/hugo/index.xml new file mode 100644 index 0000000..aff6558 --- /dev/null +++ b/public/categories/hugo/index.xml @@ -0,0 +1,19 @@ + + + + Hugo on mshj.net + //localhost:1313/categories/hugo/ + Recent content in Hugo on mshj.net + Hugo + en-us + Thu, 04 Apr 2024 02:46:07 -0400 + + + Hello World + //localhost:1313/posts/hi-post/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/posts/hi-post/ + <h1 id="yoooo">yoooo</h1> <p>this is one of my first articles homies. so i wil try my best to write it the best i can</p> + + + diff --git a/public/categories/index.html b/public/categories/index.html new file mode 100644 index 0000000..69f2110 --- /dev/null +++ b/public/categories/index.html @@ -0,0 +1,101 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+
Category: Categories
+
+ +
+
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/categories/index.xml b/public/categories/index.xml new file mode 100644 index 0000000..1d0d8da --- /dev/null +++ b/public/categories/index.xml @@ -0,0 +1,33 @@ + + + + Categories on mshj.net + //localhost:1313/categories/ + Recent content in Categories on mshj.net + Hugo + en-us + Thu, 04 Apr 2024 02:46:07 -0400 + + + Hugo + //localhost:1313/categories/hugo/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/categories/hugo/ + + + + Terminal + //localhost:1313/categories/terminal/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/categories/terminal/ + + + + Games + //localhost:1313/categories/games/ + Sat, 22 Jul 2023 23:03:09 -0400 + //localhost:1313/categories/games/ + + + + diff --git a/public/categories/terminal/index.html b/public/categories/terminal/index.html new file mode 100644 index 0000000..d0d7e63 --- /dev/null +++ b/public/categories/terminal/index.html @@ -0,0 +1,89 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+
Category: Terminal
+
+ +
+
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/categories/terminal/index.xml b/public/categories/terminal/index.xml new file mode 100644 index 0000000..d276d03 --- /dev/null +++ b/public/categories/terminal/index.xml @@ -0,0 +1,19 @@ + + + + Terminal on mshj.net + //localhost:1313/categories/terminal/ + Recent content in Terminal on mshj.net + Hugo + en-us + Thu, 04 Apr 2024 02:46:07 -0400 + + + Hello World + //localhost:1313/posts/hi-post/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/posts/hi-post/ + <h1 id="yoooo">yoooo</h1> <p>this is one of my first articles homies. so i wil try my best to write it the best i can</p> + + + diff --git a/public/css/main.900100e9dbee2d56c58fac8bb717037cae7e26a9c36c29d2ff587bdd65f0cbbe510b41d81a3bb234919cdfdc7550d786b2fab70c8fc507772d732fe097106d12.css b/public/css/main.900100e9dbee2d56c58fac8bb717037cae7e26a9c36c29d2ff587bdd65f0cbbe510b41d81a3bb234919cdfdc7550d786b2fab70c8fc507772d732fe097106d12.css new file mode 100644 index 0000000..09e8ec6 --- /dev/null +++ b/public/css/main.900100e9dbee2d56c58fac8bb717037cae7e26a9c36c29d2ff587bdd65f0cbbe510b41d81a3bb234919cdfdc7550d786b2fab70c8fc507772d732fe097106d12.css @@ -0,0 +1,3 @@ +body[a="dark"]{background-color:#000;color:#fff}body[a="dark"] a{color:#79a8ff}body[a="dark"] a:visited{color:#f78fe7}body[a="dark"] details{border:thin solid #fff}body[a="dark"] details summary{color:#fff}body[a="dark"] details[open] summary{border-bottom:1px solid #fff}body[a="dark"] pre{background:#000}body[a="dark"] code:not(pre>code){background-color:#fff;color:#000}body[a="dark"] *:target{background:#2f3849;color:#fff}body[a="dark"] table,body[a="dark"] th,body[a="dark"] td{border:thin solid #fff}body[a="dark"] .toc{border:thin solid #fff;padding:1rem}body[a="dark"] figcaption{color:#000}body[a="dark"] blockquote{border:thin solid #fff}body[a="light"]{background-color:#fff;color:#000}body[a="light"] a{color:#3548cf}body[a="light"] a:visited{color:#8f0075}body[a="light"] details{border:thin solid #000}body[a="light"] details summary{color:#000}body[a="light"] details[open] summary{border-bottom:1px solid #000}body[a="light"] pre{background:#fff}body[a="light"] code:not(pre>code){background-color:#000;color:#fff}body[a="light"] *:target{background:#dae5ec;color:#000}body[a="light"] table,body[a="light"] th,body[a="light"] td{border:thin solid #000}body[a="light"] .toc{border:thin solid #000;padding:1rem}body[a="light"] figcaption{color:#595959}body[a="light"] blockquote{border:thin solid #000}@media (prefers-color-scheme: dark){body[a="auto"]{background-color:#000;color:#fff}body[a="auto"] a{color:#79a8ff}body[a="auto"] a:visited{color:#f78fe7}body[a="auto"] details{border:thin solid #fff}body[a="auto"] details summary{color:#fff}body[a="auto"] details[open] summary{border-bottom:1px solid #fff}body[a="auto"] pre{background:#000}body[a="auto"] code:not(pre>code){background-color:#fff;color:#000}body[a="auto"] *:target{background:#2f3849;color:#fff}body[a="auto"] table,body[a="auto"] th,body[a="auto"] td{border:thin solid #fff}body[a="auto"] .toc{border:thin solid #fff;padding:1rem}body[a="auto"] figcaption{color:#000}body[a="auto"] blockquote{border:thin solid #fff}}@media (prefers-color-scheme: light){body[a="auto"]{background-color:#fff;color:#000}body[a="auto"] a{color:#3548cf}body[a="auto"] a:visited{color:#8f0075}body[a="auto"] details{border:thin solid #000}body[a="auto"] details summary{color:#000}body[a="auto"] details[open] summary{border-bottom:1px solid #000}body[a="auto"] pre{background:#fff}body[a="auto"] code:not(pre>code){background-color:#000;color:#fff}body[a="auto"] *:target{background:#dae5ec;color:#000}body[a="auto"] table,body[a="auto"] th,body[a="auto"] td{border:thin solid #000}body[a="auto"] .toc{border:thin solid #000;padding:1rem}body[a="auto"] figcaption{color:#595959}body[a="auto"] blockquote{border:thin solid #000}}html{height:100%}body{font-family:monospace;font-size:16px;line-height:1.4;margin:0;min-height:100%;overflow-wrap:break-word}h2,h3,h4,h5,h6{margin-top:1.5rem}p{margin:1rem 0}li{margin:0.4rem 0}a{text-decoration:none}a:hover{text-decoration:underline}hr{text-align:center;border:0;margin:2rem 0}hr:before{content:'/////'}hr:after{content:attr(data-content) "/////"}pre{padding:1em;overflow-x:auto}table{width:100%}table,th,td{border-collapse:collapse;padding:0.4rem}code{text-size-adjust:100%;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%}code:not(pre>code){padding:0.1em 0.2em;font-size:90%}code.has-jax{-webkit-font-smoothing:antialiased;background:inherit !important;border:none !important;font-size:100%}blockquote{padding:1rem}blockquote p{margin:0}img{max-width:100%;display:block;margin:0 auto}figcaption{text-align:center;opacity:0.5}details{padding:1rem}details summary{text-decoration:none}details[open] summary{margin-bottom:0.5em;padding-bottom:0.5em}.post-meta{display:flex;justify-content:space-between;align-items:center}.w{max-width:640px;margin:0 auto;padding:4rem 2rem}.toc{padding:1rem} + +/*# sourceMappingURL=main.css.map */ \ No newline at end of file diff --git a/public/css/main.css.map b/public/css/main.css.map new file mode 100644 index 0000000..37aba51 --- /dev/null +++ b/public/css/main.css.map @@ -0,0 +1,13 @@ +{ + "version": 3, + "file": "main.css", + "sourceRoot": "/home/mshj/Documents/projects/mshj_blog", + "sources": [ + "themes/nostyleplease/assets/css/main.scss" + ], + "sourcesContent": [ + "// -------------- THEME SWITCHER -------------- //\n@mixin theme($--bg-color, $--primary-text-color, $--secondary-text-color, $--link-color, $--visited-link-color, $--highlight) {\n background-color: $--bg-color;\n\n color: $--primary-text-color;\n\n a {\n color: $--link-color;\n &:visited { color: $--visited-link-color; }\n }\n\n details {\n border: thin solid $--primary-text-color;\n }\n\n details summary {\n color: $--primary-text-color;\n }\n\n details[open] summary {\n border-bottom: 1px solid $--primary-text-color;\n }\n\n pre {\n background: $--bg-color;\n }\n\n code:not(pre > code) {\n background-color: $--primary-text-color;\n color: $--bg-color;\n }\n\n *:target {\n background: $--highlight;\n color: $--primary-text-color;\n }\n\n table, th, td {\n border: thin solid $--primary-text-color;\n }\n\n .toc {\n border: thin solid $--primary-text-color;\n padding: 1rem;\n }\n\n figcaption { color: $--secondary-text-color; }\n\n blockquote {\n border: thin solid $--primary-text-color;\n }\n}\n\n@mixin dark-appearance {\n @include theme(#000000, #ffffff, #000000, #79a8ff, #f78fe7, #2f3849); // modus-vivendi\n}\n\n@mixin light-appearance {\n @include theme(#ffffff, #000000, #595959, #3548cf, #8f0075, #dae5ec); // modus-operandi\n}\n\nbody[a=\"dark\"] { @include dark-appearance; }\nbody[a=\"light\"] { @include light-appearance; }\n\n@media (prefers-color-scheme: dark) {\n body[a=\"auto\"] { @include dark-appearance; }\n}\n\n@media (prefers-color-scheme: light) {\n body[a=\"auto\"] { @include light-appearance; }\n}\n\n// -------------------------------------------- //\n\nhtml { height: 100%; }\n\nbody {\n font-family: monospace;\n font-size: 16px;\n line-height: 1.4;\n margin: 0;\n min-height: 100%;\n overflow-wrap: break-word;\n}\n\nh2, h3, h4, h5, h6 { margin-top: 1.5rem; }\n\np { margin: 1rem 0; }\n\nli { margin: 0.4rem 0; }\n\na {\n text-decoration: none;\n &:hover { text-decoration: underline; }\n}\n\nhr {\n text-align: center;\n border: 0;\n margin: 2rem 0;\n\n &:before { content: '/////' }\n &:after { content: attr(data-content) '/////' }\n}\n\npre {\n padding: 1em;\n overflow-x: auto; /* Fix pre content overflowing parent without scroll bar */\n}\n\ntable { width: 100%; }\n\ntable, th, td {\n border-collapse: collapse;\n padding: 0.4rem;\n}\n\ncode {\n text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n -moz-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\n\ncode:not(pre > code) {\n padding: 0.1em 0.2em;\n font-size: 90%;\n}\n\ncode.has-jax {\n -webkit-font-smoothing: antialiased;\n background: inherit !important;\n border: none !important;\n font-size: 100%;\n}\n\nblockquote {\n padding: 1rem;\n\n p { margin: 0; }\n}\n\nimg {\n max-width: 100%;\n display: block;\n margin: 0 auto;\n}\n\nfigcaption {\n text-align: center;\n opacity: 0.5;\n}\n\ndetails {\n padding: 1rem;\n}\n\ndetails summary {\n text-decoration: none;\n}\n\ndetails[open] summary {\n margin-bottom: 0.5em;\n padding-bottom: 0.5em;\n}\n\n.post-meta {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.w {\n max-width: 640px;\n margin: 0 auto;\n padding: 4rem 2rem;\n}\n\n.toc {\n padding: 1rem;\n}\n" + ], + "names": [], + "mappings": "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" +} \ No newline at end of file diff --git a/public/css/styles.css b/public/css/styles.css new file mode 100644 index 0000000..28399a1 --- /dev/null +++ b/public/css/styles.css @@ -0,0 +1,334 @@ +/* Sleek Terminal Card */ +.card-container { + --terminal-bg: #1a1d23; + --terminal-border: #2c3e50; + --terminal-accent: #3498db; + --terminal-text: #ecf0f1; + --terminal-highlight: #2ecc71; + + color: var(--terminal-text) !important; + font-family: 'SF Mono', 'Menlo', monospace; + padding: 1rem; + position: relative; + overflow: hidden; + transition: all 0.3s ease; + max-width: 700px; + margin: 1.5rem auto; +} + +.main-content { + flex-grow: 1; + width: 100%; + padding-bottom: 60px; +} + + +/* Card container adjustments */ +.card-container { + margin: 0 auto; + width: 100%; + max-width: 700px; + padding-right: 1.5rem; + padding-bottom: 1.5rem; + padding-left: 1.5rem; + padding-top: 0; +} + +/* Header styling */ +.card-container header { + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + margin-bottom: 0.5rem; + padding-bottom: 0.75rem; + font-size: 1.2rem; + font-weight: 600; + background-color: transparent; + padding: 0; + border: none; +} + +.card-container header h1 { + padding-top: 0; +} + +.card-container header h2 { + color: var(--terminal-text); + font-size: inherit; + font-weight: inherit; + margin: 0; + letter-spacing: -0.5px; +} + +/* Body content */ +.content-wrapper { + line-height: 1.6; + font-size: 1rem; +} + +/* Code blocks */ +.content-wrapper pre { + background: rgba(0, 0, 0, 0.2); + border-radius: 4px; + padding: 0.75rem; + overflow-x: auto; +} + + +/* Status indicator */ +.card-container::after { + content: '●'; + position: absolute; + top: 12px; + right: 15px; + color: var(--terminal-highlight); + font-size: 0.8rem; + text-shadow: 0 0 8px currentColor; + display: none; +} + +/* Menu list */ +.menu-list { + list-style-type: none !important; + padding: 0; + margin: 0; +} + +.menu-list li { + margin-bottom: 0.5rem; + list-style: none; +} + +.meta-info { + font-size: 0.8rem; + color: #666; + margin-left: 0.5rem; +} +/* Tag list */ +.tag-list { + margin-top: 1rem; + font-size: 0.8rem; +} + +/* Tag link */ +.tag-link { + text-decoration: none; + color: #ffffff; + padding: 0.1rem 0.3rem; + border-radius: 0.3rem; + margin-right: 0.3rem; +} + +.tag-link:nth-child(8n+1) { + background-color: #f2f2f2; +} + +.tag-link:nth-child(8n+2) { + background-color: #ff69b4; +} + +.tag-link:nth-child(8n+3) { + background-color: #33cc33; +} + +.tag-link:nth-child(8n+4) { + background-color: #6666ff; +} + +.tag-link:nth-child(8n+5) { + background-color: #ffff66; +} + +.tag-link:nth-child(8n+6) { + background-color: #ff9966; +} + +.tag-link:nth-child(8n+7) { + background-color: #cc66cc; +} + +.tag-link:nth-child(8n+0) { + background-color: #66cccc; +} +.tag-link:hover { + background-color: #ddd; + color: #333; +} + +.components-grid { + display: grid; + grid-column-gap: 1.4em; + grid-template-columns: auto; + grid-template-rows: auto; +} + +.image-grid { + display: grid; + grid-template-rows: auto; + display: grid; + grid-gap: 1em; + grid-template-rows: auto; + grid-template-columns: repeat(auto-fit, + minmax(calc(var(--page-width) / 12), 1fr)); +} + +.header-container { + display: flex; + align-items: center; +} + +.mini-header { + font-size: 0.8rem; + color: #666; + margin-left: 1rem; + border-right: 2px solid #666; + animation: blink 0.7s infinite; +} + +@keyframes blink { + 0% { + border-color: #666; + } + 50% { + border-color: transparent; + } + 100% { + border-color: #666; + } +} + +@media only screen and (min-width: 70em) { + .components-grid { + grid-template-columns: 3fr 9fr; + } + + .components-grid aside { + position: sticky; + top: calc(var(--global-space) * 2); + } +} + +.terminal-tags { + margin-top: 1rem; + line-height: 2; +} + +.terminal-tag { + background-color: var(--secondary-color); + color: var(--background-color); + padding: 0.2rem 0.5rem; + margin-right: 0.5rem; + text-decoration: none; + font-size: 0.8rem; + border-radius: 3px; +} + +.terminal-tag:hover { + background-color: var(--primary-color); +} + +.terminal-meta { + opacity: 0.7; + font-size: 0.8rem; + margin-left: 0.5rem; +} + + +.post-list { + display: flex; + flex-direction: column; + padding: 1rem; + border: 1px solid #eee; + border-radius: 20px; + margin-bottom: 1.5rem; + position:static !important; + +} +.post-list li { + list-style: none; + margin: 0; + padding: 0; +} + +.post-list-title { + font-weight: 600; + color: #333; + margin-bottom: 0.5rem; +} + + +.post-list-description { + color: #e6e6e6; + font-size: 0.9rem; + line-height: 1.4; + margin: 0 0 0 0; +} + +/* Add spacing between list items */ +.post-list + .post-list { + margin-top: 1.5rem; +} + +/* Subtle hover effect */ +.post-list:hover { + border-radius: 24px; +} + +.site-footer { + margin-top: auto; + width: 100%; + padding: 1rem; + text-align: center; +} + +.footer-nav a { + text-decoration: none; + color: #666; + margin: 0 0.5rem; + display: inline-block; +} + +.footer-nav a:hover { + color: #333; +} + +.footer-nav svg { + vertical-align: middle; +} + +.site-footer p { + font-size: 0.9rem; + color: #666; + margin: 0.5rem 0; +} + +body { + display: flex; + flex-direction: column; + min-height: 100vh; +} + +:root { + --global-font-size: 15px; + --global-line-height: 1.4em; + --global-space: 10px; + --font-stack: Menlo, Monaco, Lucida Console, Liberation Mono, + DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, + serif; + --mono-font-stack: Menlo, Monaco, Lucida Console, Liberation Mono, + DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, + serif; + --background-color: #15151b !important; + --page-width: 60em; + --font-color: #e8e9ed; + --invert-font-color: #222225; + --secondary-color: #a3abba; + --tertiary-color: #a3abba; + --primary-color: #62c4ff; + --error-color: #ff3c74; + --progress-bar-background: #3f3f44; + --progress-bar-fill: #62c4ff; + --code-bg-color: #3f3f44; + --input-style: solid; + --display-h1-decoration: none; +} + + diff --git a/public/genres/index.html b/public/genres/index.html new file mode 100644 index 0000000..3b86b80 --- /dev/null +++ b/public/genres/index.html @@ -0,0 +1,106 @@ + + + + + + + + +
+ +
+
+

mshj.net

+
+
+
+ +
+
+ +

blog

+ +
+
+
+

List of Posts

+ + +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/genres/index.xml b/public/genres/index.xml new file mode 100644 index 0000000..748549f --- /dev/null +++ b/public/genres/index.xml @@ -0,0 +1,11 @@ + + + + Genres on mshj.net + http://localhost:1313/genres/ + Recent content in Genres on mshj.net + Hugo + en-us + + + diff --git a/public/images/atom.png b/public/images/atom.png new file mode 100644 index 0000000..7ede1d6 Binary files /dev/null and b/public/images/atom.png differ diff --git a/public/images/keeper.png b/public/images/keeper.png new file mode 100644 index 0000000..18e6dd0 Binary files /dev/null and b/public/images/keeper.png differ diff --git a/public/images/punpun.jpg b/public/images/punpun.jpg new file mode 100644 index 0000000..9fde822 Binary files /dev/null and b/public/images/punpun.jpg differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..4284c7c --- /dev/null +++ b/public/index.html @@ -0,0 +1,113 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +
+
+
+

My nama jef:

+

My nam is Mshj. consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. In pellentesque massa placerat duis ultricies. Nec dui nunc mattis enim. Massa id neque aliquam vestibulum morbi blandit. Ut tortor pretium viverra suspendisse potenti nullam.

+ + +

Latest Blog Posts

+ + + +

Latest Projects

+ +
    + +
  • +

    Project uno

    + +

    this is a description of my project very very nice

    + +
  • + +
+ + +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/index.xml b/public/index.xml new file mode 100644 index 0000000..30394ed --- /dev/null +++ b/public/index.xml @@ -0,0 +1,40 @@ + + + + mshj.net + //localhost:1313/ + Recent content on mshj.net + Hugo + en-us + Thu, 04 Apr 2024 02:46:07 -0400 + + + Hello World + //localhost:1313/posts/hi-post/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/posts/hi-post/ + <h1 id="yoooo">yoooo</h1> <p>this is one of my first articles homies. so i wil try my best to write it the best i can</p> + + + New Test Post + //localhost:1313/posts/new-test-post/ + Thu, 04 Apr 2024 02:35:21 -0400 + //localhost:1313/posts/new-test-post/ + + + + Project uno + //localhost:1313/projects/project/ + Thu, 04 Apr 2024 02:35:21 -0400 + //localhost:1313/projects/project/ + + + + Test Post + //localhost:1313/posts/test-post/ + Sat, 22 Jul 2023 23:03:09 -0400 + //localhost:1313/posts/test-post/ + <h2 id="introduction">Introduction</h2> <p>This is <strong>bold</strong> text, and this is <em>emphasized</em> text.</p> <p>Visit the <a href="https://gohugo.io">Hugo</a> website!</p> + + + diff --git a/public/js/mouse_coords.js b/public/js/mouse_coords.js new file mode 100644 index 0000000..afc7e7a --- /dev/null +++ b/public/js/mouse_coords.js @@ -0,0 +1,9 @@ +const p = document.createElement("p"); +p.style.textAlign = "center"; +p.style.fontSize = "18pt"; +p.innerHTML = "C'mon, move your mouse!" +document.body.append(p); + +document.addEventListener("mousemove", e => { + p.innerHTML = `mouseX: ${e.clientX}, mouseY: ${e.clientY}`; +}); \ No newline at end of file diff --git a/public/js/topbar.js b/public/js/topbar.js new file mode 100644 index 0000000..9c258cf --- /dev/null +++ b/public/js/topbar.js @@ -0,0 +1,14 @@ +const miniHeader = document.getElementById('mini-header'); +const texts = ['use linux', 'i hate css', 'gpl everything', 'made with love']; // add your random text here +const text = texts[Math.floor(Math.random() * texts.length)]; +let charIndex = 0; + +function typeText() { + if (charIndex < text.length) { + miniHeader.textContent += text.charAt(charIndex); + charIndex++; + setTimeout(typeText, 50); // adjust the typing speed here + } +} + +typeText(); \ No newline at end of file diff --git a/public/posts/2020-07-06-strange-post/index.html b/public/posts/2020-07-06-strange-post/index.html new file mode 100644 index 0000000..23aee73 --- /dev/null +++ b/public/posts/2020-07-06-strange-post/index.html @@ -0,0 +1,47 @@ + + + + + + + + + + strange post with custom js + + + + + + + + + + + + +
+
+ + +
+

strange post with custom js

+ + + +

This post is strange. It also has some custom js.

+ +
+ +
+
+ + diff --git a/public/posts/2020-07-07-overview-post/index.html b/public/posts/2020-07-07-overview-post/index.html new file mode 100644 index 0000000..615fb92 --- /dev/null +++ b/public/posts/2020-07-07-overview-post/index.html @@ -0,0 +1,141 @@ + + + + + + + + + + overview + + + + + + + + + + + + +
+
+ + +
+

overview

+ + + +

Lorem ipsum1 dolor sit amet, consectetur adipiscing elit. Pellentesque vel lacinia neque. Praesent nulla quam, ullamcorper in sollicitudin ac, molestie sed justo. Cras aliquam, sapien id consectetur accumsan, augue magna faucibus ex, ut ultricies turpis tortor vel ante. In at rutrum tellus.

+

Sample heading 1

+

Sample heading 2

+

Sample heading 3

+

Sample heading 4

+
Sample heading 5
+
Sample heading 6
+

Mauris viverra dictum ultricies. Vestibulum quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Etiam id nisl ut lorem gravida euismod.

+

Lists

+

Unordered:

+
    +
  • Fusce non velit cursus ligula mattis convallis vel at metus2.
  • +
  • Sed pharetra tellus massa, non elementum eros vulputate non.
  • +
  • Suspendisse potenti.
  • +
+

Ordered:

+
    +
  1. Quisque arcu felis, laoreet vel accumsan sit amet, fermentum at nunc.
  2. +
  3. Sed massa quam, auctor in eros quis, porttitor tincidunt orci.
  4. +
  5. Nulla convallis id sapien ornare viverra.
  6. +
  7. Nam a est eget ligula pellentesque posuere.
  8. +
+

Blockquote

+

The following is a blockquote:

+
+

Suspendisse tempus dolor nec risus sodales posuere. Proin dui dui, mollis a consectetur molestie, lobortis vitae tellus.

+

Thematic breaks ()

+

Mauris viverra dictum ultricies3. Vestibulum quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Etiam id nisl ut lorem gravida euismod. You can put some text inside the horizontal rule like so.

+
+

{data-content = “with text”}

+

Mauris viverra dictum ultricies. Vestibulum quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Etiam id nisl ut lorem gravida euismod. Or you can just have an clean horizontal rule.

+
+

Mauris viverra dictum ultricies. Vestibulum quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Etiam id nisl ut lorem gravida euismod. Or you can just have an clean horizontal rule.

+

Code

+

Now some code:

+
const ultimateTruth = 'this theme is the best!';
+console.log(ultimateTruth);
+

And here is some inline code!

+

Tables

+

Now a table:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
TablesAreCool
col 3 isright-aligned$1600
col 2 iscentered$12
zebra stripesare neat$1
+

Images

+

theme logo +{.ioda}

+

Logo of no style, please! theme4

+
+

{data-content = “footnotes”}

+
+
+
    +
  1. +

    this is a footnote. It should highlight if you click on the corresponding superscript number. ↩︎

    +
  2. +
  3. +

    hey there, i’m using no style please! ↩︎

    +
  4. +
  5. +

    this is another footnote. ↩︎

    +
  6. +
  7. +

    this is a very very long footnote to test if a very very long footnote brings some problems or not. I strongly hope that there are no problems but you know sometimes problems arise from nowhere. ↩︎

    +
  8. +
+
+ +
+ +
+
+ diff --git a/public/posts/2020-07-08-language-tests/index.html b/public/posts/2020-07-08-language-tests/index.html new file mode 100644 index 0000000..2f59e74 --- /dev/null +++ b/public/posts/2020-07-08-language-tests/index.html @@ -0,0 +1,83 @@ + + + + + + + + + + Language Tests + + + + + + + + + + + + +
+
+ + +
+

Language Tests

+ + + +

Note: I took this test post from moving, which is another Jekyll theme which is better that this one so I should not have linked it because now you will decide to use it instead of mine.

+

1. 日本語テスト

+

This is a Japanese test post to show you how japanese is displayed.

+

私は昨日ついにその助力家というのの上よりするたなけれ。 +最も今をお話団はちょうどこの前後なかろでくらいに困りがいるたをは帰着考えたなかって、そうにもするでうたらない。 +がたを知っないはずも同時に九月をいよいよたありた。

+

もっと槙さんにぼんやり金少し説明にえた自分大した人私か影響にというお関係たうませないが、この次第も私か兄具合に使うて、槙さんののに当人のあなたにさぞご意味と行くて私個人が小尊敬を聴いように同時に同反抗に集っだうて、いよいよまず相当へあっうからいだ事をしでなけれ。

+
+

それでそれでもご時日をしはずはたったいやと突き抜けるますて、その元がは行ったてという獄を尽すていけですた。

+

この中道具の日その学校はあなたごろがすまなりかとネルソンさんの考えるですん、辺の事実ないというご盲従ありたですと、爺さんのためが薬缶が結果までの箸の当時してならて、多少の十月にためからそういう上からとにかくしましないと触れべきものたで、ないうですと多少お人達したのでたた。

+

From すぐ使えるダミーテキスト - 日本語 Lorem ipsum.

+

2. 繁体中文测试

+

This is a chinese test post to show you how chinese is displayed.

+

善我王上魚、產生資西員合兒臉趣論。畫衣生這著爸毛親可時,安程幾?合學作。觀經而作建。都非子作這!法如言子你關!手師也。

+

以也座論頭室業放。要車時地變此親不老高小是統習直麼調未,行年香一?

+

就竟在,是我童示讓利分和異種百路關母信過明驗有個歷洋中前合著區亮風值新底車有正結,進快保的行戰從:弟除文辦條國備當來際年每小腳識世可的的外的廣下歌洲保輪市果底天影;全氣具些回童但倒影發狀在示,數上學大法很,如要我……月品大供這起服滿老?應學傳者國:山式排只不之然清同關;細車是!停屋常間又,資畫領生,相們制在?公別的人寫教資夠。資再我我!只臉夫藝量不路政吃息緊回力之;兒足灣電空時局我怎初安。意今一子區首者微陸現際安除發連由子由而走學體區園我車當會,經時取頭,嚴了新科同?很夫營動通打,出和導一樂,查旅他。坐是收外子發物北看蘭戰坐車身做可來。道就學務。

+

國新故。

+
+

工步他始能詩的,裝進分星海演意學值例道……於財型目古香亮自和這乎?化經溫詩。只賽嚴大一主價世哥受的沒有中年即病行金拉麼河。主小路了種就小為廣不?

+

From 亂數假文產生器 - Chinese Lorem Ipsum.

+

3. 简体中文测试

+

效育声去本义然空,各值太法心想,场强实地。 题铁习点儿表管少间千,只何政亲织文意部,千影画派证男须。 手反取长风治增非等直难群,连取及天他己事头级,影数弦适把气快目人。 专议以省通引而千个,格则口段度样水热马,地教少务改磨。 包思外心半院应她算斯,市外会快记路又火学,劳如肃它准众丧边。

+
+

团算部住县单总边素格军所,合音府教看和广光采率位转,位用品根确针百。 证其标元角工方海接交他,论象切万世认一响义,治然身本风弦带题。 向我次路持加北,她不反心。 说总元军例市决,现始即算证养,规走还壳。

+

因林可相儿应满军,热影省条律因资再,整肃赤心将届。 局广写两量备验还,南教事争工民的,备进研上布。 素身电活非直,速这区交示从,百层达。 资量那毛什京身,白这快。 半打容三手开常价或,手严量般象式效,名可重芽门适。 来设什一我么,光界美么或,住身式准。 造酸改表委验众办地百养,商物战众本列听度名院,制压录丽快与千机内。 住需当四议决得命南然照按民置,当住命形金决否矿单外。 气象理离开新集增际,三划方工义很年关,拉许准孝口。 构片出干计由备美打养,持育总指承入无己。

+

From 假文生成器, lorem ipsum Chinese

+ +
+ +
+
+ diff --git a/public/posts/2020-07-08-very-very-very-long-title-and-very-very-very-short-content/index.html b/public/posts/2020-07-08-very-very-very-long-title-and-very-very-very-short-content/index.html new file mode 100644 index 0000000..1487a9d --- /dev/null +++ b/public/posts/2020-07-08-very-very-very-long-title-and-very-very-very-short-content/index.html @@ -0,0 +1,46 @@ + + + + + + + + + + very very very long title and very very very short content + + + + + + + + + + + + +
+
+ + +
+

very very very long title and very very very short content

+ + + +

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vel lacinia neque. Praesent nulla quam, ullamcorper in sollicitudin ac, molestie sed justo. Cras aliquam, sapien id consectetur accumsan, augue magna faucibus ex, ut ultricies turpis tortor vel ante. In at rutrum tellus. Nullam vestibulum metus eu purus malesuada, volutpat mattis leo facilisis.

+ +
+ +
+
+ diff --git a/public/posts/2020-07-09-post-example-with-headings-and-toc/index.html b/public/posts/2020-07-09-post-example-with-headings-and-toc/index.html new file mode 100644 index 0000000..cd18823 --- /dev/null +++ b/public/posts/2020-07-09-post-example-with-headings-and-toc/index.html @@ -0,0 +1,68 @@ + + + + + + + + + + headings and toc + + + + + + + + + + + + +
+
+ + +
+

headings and toc

+ + + +

Mauris viverra dictum ultricies. Vestibulum quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Nunc a egestas tortor, sed feugiat leo.

+

Table of contents

+ +

Mauris viverra dictum ultricies. Vestibulum quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Nunc a egestas tortor, sed feugiat leo. Vestibulum porta tincidunt tellus, vitae ornare tortor. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed nunc neque, tempor in iaculis non, faucibus et metus. Etiam id nisl ut lorem gravida euismod.

+

The start

+

Fusce non velit cursus ligula mattis convallis vel at metus. Sed pharetra tellus massa, non elementum eros vulputate non. Suspendisse potenti. Quisque arcu felis, laoreet vel accumsan sit amet, fermentum at nunc. Sed massa quam, auctor in eros quis, porttitor tincidunt orci. Nulla convallis id sapien ornare viverra. Cras nec est lacinia ligula porta tincidunt. Nam a est eget ligula pellentesque posuere. Maecenas quis enim ac risus accumsan scelerisque. Aliquam vitae libero sapien. Etiam convallis, metus nec suscipit condimentum, quam massa congue velit, sit amet sollicitudin nisi tortor a lectus. Cras a arcu enim. Suspendisse hendrerit euismod est ac gravida. Donec vitae elit tristique, suscipit eros at, aliquam augue. In ac faucibus dui. Sed tempor lacus tristique elit sagittis, vitae tempor massa convallis.

+

The middle

+

Proin quis velit et eros auctor laoreet. Aenean eget nibh odio. Suspendisse mollis enim pretium, fermentum urna vitae, egestas purus. Donec convallis tincidunt purus, scelerisque fermentum eros sagittis vel. Aliquam ac aliquet risus, tempus iaculis est. Fusce molestie mauris non interdum hendrerit. Curabitur ullamcorper, eros vitae interdum volutpat, lacus magna lacinia turpis, at accumsan dui tortor vel lectus. Aenean risus massa, semper non lectus rutrum, facilisis imperdiet mi. Praesent sed quam quis purus auctor ornare et sed augue. Vestibulum non quam quis ligula luctus placerat sed sit amet erat. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Fusce auctor, sem eu volutpat dignissim, turpis nibh malesuada arcu, in consequat elit mauris quis sem. Nam tristique sit amet enim vel accumsan. Sed id nibh commodo, dictum sem id, semper quam.

+

The end

+

Donec ex lectus, tempus non lacinia quis, pretium non ipsum. Praesent est nunc, rutrum vel tellus eu, tristique laoreet purus. In rutrum orci sit amet ex ornare, sit amet finibus lacus laoreet. Etiam ac facilisis purus, eget porttitor odio. Suspendisse tempus dolor nec risus sodales posuere. Proin dui dui, mollis a consectetur molestie, lobortis vitae tellus. Vivamus at purus sed urna sollicitudin mattis. Mauris lacinia libero in lobortis pulvinar. Nullam sit amet condimentum justo. Donec orci justo, pharetra ut dolor non, interdum finibus orci. Proin vitae ante a dui sodales commodo ac id elit. Nunc vel accumsan nunc, sit amet congue nunc. Aliquam in lacinia velit. Integer lobortis luctus eros, in fermentum metus aliquet a. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.

+ +
+ +
+
+ diff --git a/public/posts/2020-07-09-post-example-with-hr/index.html b/public/posts/2020-07-09-post-example-with-hr/index.html new file mode 100644 index 0000000..c8f0c2b --- /dev/null +++ b/public/posts/2020-07-09-post-example-with-hr/index.html @@ -0,0 +1,73 @@ + + + + + + + + + + hr + + + + + + + + + + + + +
+
+ + +
+

hr

+ + + +

Lorem ipsum1 dolor sit amet, consectetur adipiscing elit. Pellentesque vel lacinia neque. Praesent nulla quam, ullamcorper in sollicitudin ac, molestie sed justo. Cras aliquam, sapien id consectetur accumsan, augue magna faucibus ex, ut ultricies turpis tortor vel ante. In at rutrum tellus. Nullam vestibulum metus eu purus malesuada, volutpat mattis leo facilisis. Sed consectetur, nisl et semper laoreet, velit augue congue nunc, eget eleifend odio erat eu sapien. Phasellus dictum efficitur dapibus. Morbi porta lacinia tincidunt. Nam aliquet est mi, nec lacinia ipsum elementum sed. Nam feugiat ipsum tortor, et pretium purus sollicitudin et.

+
+

Mauris viverra dictum ultricies2. Vestibulum3 quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Nunc a egestas tortor, sed feugiat leo. Vestibulum porta tincidunt tellus, vitae ornare tortor. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed nunc neque, tempor in iaculis non, faucibus et metus. Etiam id nisl ut lorem gravida euismod.

+

Fusce non velit cursus ligula mattis convallis vel at metus. Sed pharetra tellus massa, non elementum eros vulputate non. Suspendisse potenti. Quisque arcu felis, laoreet vel accumsan sit amet, fermentum at nunc. Sed massa quam, auctor in eros quis, porttitor tincidunt orci. Nulla convallis id sapien ornare viverra. Cras nec est lacinia ligula porta tincidunt. Nam a est eget ligula pellentesque posuere. Maecenas quis enim ac risus accumsan scelerisque. Aliquam vitae libero sapien. Etiam convallis, metus nec suscipit condimentum, quam massa congue velit, sit amet sollicitudin nisi tortor a lectus. Cras a arcu enim. Suspendisse hendrerit euismod est ac gravida. Donec vitae elit tristique, suscipit eros at, aliquam augue. In ac faucibus dui. Sed tempor lacus tristique elit sagittis, vitae tempor massa convallis.

+
+

{data-content=“discussions”}

+

This article has been discussed here:

+ +

Feel free to reach out at my email to leave feedback and talk about the article.

+
+

{data-content=“footnotes”}

+
+
+
    +
  1. +

    Okay here I should put something about “ipsum”. ↩︎

    +
  2. +
  3. +

    same goes for this. ↩︎

    +
  4. +
  5. +

    I studied latin in high school but im not able to translate anything! By the way this is a longer footnote and i think it is still pretty cool, even prettier than shortier ones even though it does not say anything useful but whatever. ↩︎

    +
  6. +
+
+ +
+ +
+
+ diff --git a/public/posts/hi-post/index.html b/public/posts/hi-post/index.html new file mode 100644 index 0000000..f7e0be0 --- /dev/null +++ b/public/posts/hi-post/index.html @@ -0,0 +1,108 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +
+
+
+
+

Hello World

+
+ +

2024-04-04

+
+ Categories: + + Terminal + + Hugo + +
+ + +
+ Tags: + + css + + terminal-style + + tutorial + +
+ +
+ +

yoooo

+

this is one of my first articles homies. so i wil try my best to write it the best i can

+ +
+ + +
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/posts/index.html b/public/posts/index.html new file mode 100644 index 0000000..f91f38d --- /dev/null +++ b/public/posts/index.html @@ -0,0 +1,92 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+

List of Posts

+ + +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/posts/index.xml b/public/posts/index.xml new file mode 100644 index 0000000..4824463 --- /dev/null +++ b/public/posts/index.xml @@ -0,0 +1,33 @@ + + + + Posts on mshj.net + //localhost:1313/posts/ + Recent content in Posts on mshj.net + Hugo + en-us + Thu, 04 Apr 2024 02:46:07 -0400 + + + Hello World + //localhost:1313/posts/hi-post/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/posts/hi-post/ + <h1 id="yoooo">yoooo</h1> <p>this is one of my first articles homies. so i wil try my best to write it the best i can</p> + + + New Test Post + //localhost:1313/posts/new-test-post/ + Thu, 04 Apr 2024 02:35:21 -0400 + //localhost:1313/posts/new-test-post/ + + + + Test Post + //localhost:1313/posts/test-post/ + Sat, 22 Jul 2023 23:03:09 -0400 + //localhost:1313/posts/test-post/ + <h2 id="introduction">Introduction</h2> <p>This is <strong>bold</strong> text, and this is <em>emphasized</em> text.</p> <p>Visit the <a href="https://gohugo.io">Hugo</a> website!</p> + + + diff --git a/public/posts/new-test-post/index.html b/public/posts/new-test-post/index.html new file mode 100644 index 0000000..cfe7f03 --- /dev/null +++ b/public/posts/new-test-post/index.html @@ -0,0 +1,85 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +
+
+
+
+

New Test Post

+
+ + +
+ + +
+ + +
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/posts/test-cjk/index.html b/public/posts/test-cjk/index.html new file mode 100644 index 0000000..ee936bb --- /dev/null +++ b/public/posts/test-cjk/index.html @@ -0,0 +1,91 @@ + + + + + + + + + + Test CJK + + + + + + + + + + + + +
+
+ + +
+

Test CJK

+ + + +

1. 简体中文测试

+

秋,夜,王趺坐收银台前,篝灯如吠。明灭之际有兽前来采购:鹿角虎爪,云雾缭绕,眼睛碧绿如同玻璃;店中不见生人已久。坐,齿轮捻动,肩胛慢慢松弛,衣袖如瓷。在货架之间,忘记面孔的人有迷失的风险。一份白色,我有天空中游动穿过云的骨。一份蓝色,有雨水溅落金属制品间的空气。绿色,有薄而冰凉至温润的指甲。黑色有窗外随风沙沙的水草。兽狡黠,想必没有红色。王赧然,有常住仓库,深居简出,肥而不腻的三文鱼。颜色,声音,温度,气味,这一切尽可落在你一人身上。但,让我与你的眼睛对饮一杯。所以熬煮越来越粘稠的空气,坛中有清冽,眼前有孤灯,然后让身体舒展沉浮。兽目睹这一切,嘴微张,牙齿柔软,荧光微微。第二天,王尚未醒来,脸上躺着一枚红叶,身体轻轻摇晃。

+

From 便利店之王

+

2. 繁体中文测试

+

善我王上魚、產生資西員合兒臉趣論。畫衣生這著爸毛親可時,安程幾?合學作。觀經而作建。都非子作這!法如言子你關!手師也。

+

以也座論頭室業放。要車時地變此親不老高小是統習直麼調未,行年香一?

+

就竟在,是我童示讓利分和異種百路關母信過明驗有個歷洋中前合著區亮風值新底車有正結,進快保的行戰從:弟除文辦條國備當來際年每小腳識世可的的外的廣下歌洲保輪市果底天影;全氣具些回童但倒影發狀在示,數上學大法很,如要我……月品大供這起服滿老?應學傳者國:山式排只不之然清同關;細車是!停屋常間又,資畫領生,相們制在?公別的人寫教資夠。資再我我!只臉夫藝量不路政吃息緊回力之;兒足灣電空時局我怎初安。意今一子區首者微陸現際安除發連由子由而走學體區園我車當會,經時取頭,嚴了新科同?很夫營動通打,出和導一樂,查旅他。坐是收外子發物北看蘭戰坐車身做可來。道就學務。

+

國新故。

+
+

工步他始能詩的,裝進分星海演意學值例道……於財型目古香亮自和這乎?化經溫詩。只賽嚴大一主價世哥受的沒有中年即病行金拉麼河。主小路了種就小為廣不?

+

From 亂數假文產生器 - Chinese Lorem Ipsum.

+

3. 日本語テスト

+

私は昨日ついにその助力家というのの上よりするたなけれ。 +最も今をお話団はちょうどこの前後なかろでくらいに困りがいるたをは帰着考えたなかって、そうにもするでうたらない。 +がたを知っないはずも同時に九月をいよいよたありた。

+

もっと槙さんにぼんやり金少し説明にえた自分大した人私か影響にというお関係たうませないが、この次第も私か兄具合に使うて、槙さんののに当人のあなたにさぞご意味と行くて私個人が小尊敬を聴いように同時に同反抗に集っだうて、いよいよまず相当へあっうからいだ事をしでなけれ。

+
+

それでそれでもご時日をしはずはたったいやと突き抜けるますて、その元がは行ったてという獄を尽すていけですた。

+

この中道具の日その学校はあなたごろがすまなりかとネルソンさんの考えるですん、辺の事実ないというご盲従ありたですと、爺さんのためが薬缶が結果までの箸の当時してならて、多少の十月にためからそういう上からとにかくしましないと触れべきものたで、ないうですと多少お人達したのでたた。

+

From すぐ使えるダミーテキスト - 日本語 Lorem ipsum.

+

4. 한국어 예문

+

국가원로자문회의의 의장은 직전대통령이 된다. 다만, 직전대통령이 없을 때에는 대통령이 지명한다. 모든 국민은 법률이 정하는 바에 의하여 공무담임권을 가진다. 국가는 노인과 청소년의 복지향상을 위한 정책을 실시할 의무를 진다. 학교교육 및 평생교육을 포함한 교육제도와 그 운영, 교육재정 및 교원의 지위에 관한 기본적인 사항은 법률로 정한다.

+

국회의원은 국회에서 직무상 행한 발언과 표결에 관하여 국회외에서 책임을 지지 아니한다. 국회의 정기회는 법률이 정하는 바에 의하여 매년 1회 집회되며, 국회의 임시회는 대통령 또는 국회재적의원 4분의 1 이상의 요구에 의하여 집회된다. 모든 국민은 근로의 권리를 가진다. 국가는 사회적·경제적 방법으로 근로자의 고용의 증진과 적정임금의 보장에 노력하여야 하며, 법률이 정하는 바에 의하여 최저임금제를 시행하여야 한다.

+

대법원장은 국회의 동의를 얻어 대통령이 임명한다. 대통령이 궐위된 때 또는 대통령 당선자가 사망하거나 판결 기타의 사유로 그 자격을 상실한 때에는 60일 이내에 후임자를 선거한다. 공무원의 직무상 불법행위로 손해를 받은 국민은 법률이 정하는 바에 의하여 국가 또는 공공단체에 정당한 배상을 청구할 수 있다. 이 경우 공무원 자신의 책임은 면제되지 아니한다.

+

From 한글 Lorem Ipsum

+ +
+ +
+
+ diff --git a/public/posts/test-highlight/index.html b/public/posts/test-highlight/index.html new file mode 100644 index 0000000..4c44294 --- /dev/null +++ b/public/posts/test-highlight/index.html @@ -0,0 +1,675 @@ + + + + + + + + + + Test Highlight + + + + + + + + + + + + +
+
+ + +
+

Test Highlight

+ + + +

Test for C

+
#define UNICODE
+#include <windows.h>
+ 
+int main(int argc, char **argv) {
+  int speed = 0, speed1 = 0, speed2 = 0; // 1-20
+  printf("Set Mouse Speed by Maverick\n");
+ 
+  SystemParametersInfo(SPI_GETMOUSESPEED, 0, &speed, 0);
+  printf("Current speed: %2d\n", speed);
+ 
+  if (argc == 1) return 0;
+  if (argc >= 2) sscanf(argv[1], "%d", &speed1);
+  if (argc >= 3) sscanf(argv[2], "%d", &speed2);
+ 
+  if (argc == 2) // set speed to first value
+    speed = speed1;
+  else if (speed == speed1 || speed == speed2) // alternate
+    speed = speed1 + speed2 - speed;
+  else
+    speed = speed1;  // start with first value
+ 
+  SystemParametersInfo(SPI_SETMOUSESPEED, 0,  speed, 0);
+  SystemParametersInfo(SPI_GETMOUSESPEED, 0, &speed, 0);
+  printf("New speed:     %2d\n", speed);
+  return 0;
+}
+

Test for Java

+
import java.util.Map;
+import java.util.TreeSet;
+ 
+public class GetEnv {
+  /**
+   * let's test generics
+   * @param args the command line arguments
+   */
+  public static void main(String[] args) {
+    // get a map of environment variables
+    Map<String, String> env = System.getenv();
+    // build a sorted set out of the keys and iterate
+    for(String k: new TreeSet<String>(env.keySet())) {
+      System.out.printf("%s = %s\n", k, env.get(k));
+    }
+  }    
+}
+

Test for Perl

+
#!perl -w
+ 
+# Time-stamp: <2002/04/06, 13:12:13 (EST), maverick, csvformat.pl>
+# Two pass CSV file to table formatter
+ 
+$delim = $#ARGV >= 1 ? $ARGV[1] : ',';
+print STDERR "Split pattern: $delim\n";
+ 
+# first pass
+open F, "<$ARGV[0]" or die;
+while(<F>)
+{
+  chomp;
+  $i = 0;
+  map { $max[$_->[1]] = $_->[0] if $_->[0] > ($max[$_->[1]] || 0) }
+    (map {[length $_, $i++]} split($delim));
+}
+close F;
+ 
+print STDERR 'Field width:   ', join(', ', @max), "\n";
+print STDERR join(' ', map {'-' x $_} @max);
+ 
+# second pass
+open F, "<$ARGV[0]" or die;
+while(<F>)
+  {
+  chomp;
+  $i = 0;
+  map { printf("%-$max[$_->[1]]s ", $_->[0]) }
+    (map {[$_, $i++]} split($delim));
+  print "\n";
+}
+close F;
+

Test for Python

+
# test python (sample from offlineimap)
+ 
+class ExitNotifyThread(Thread):
+    """This class is designed to alert a "monitor" to the fact that a thread has
+    exited and to provide for the ability for it to find out why."""
+    def run(self):
+        global exitthreads, profiledir
+        self.threadid = thread.get_ident()
+        try:
+            if not profiledir:          # normal case
+                Thread.run(self)
+            else:
+                try:
+                    import cProfile as profile
+                except ImportError:
+                    import profile
+                prof = profile.Profile()
+                try:
+                    prof = prof.runctx("Thread.run(self)", globals(), locals())
+                except SystemExit:
+                    pass
+                prof.dump_stats( \
+                            profiledir + "/" + str(self.threadid) + "_" + \
+                            self.getName() + ".prof")
+        except:
+            self.setExitCause('EXCEPTION')
+            if sys:
+                self.setExitException(sys.exc_info()[1])
+                tb = traceback.format_exc()
+                self.setExitStackTrace(tb)
+        else:
+            self.setExitCause('NORMAL')
+        if not hasattr(self, 'exitmessage'):
+            self.setExitMessage(None)
+ 
+        if exitthreads:
+            exitthreads.put(self, True)
+ 
+    def setExitCause(self, cause):
+        self.exitcause = cause
+    def getExitCause(self):
+        """Returns the cause of the exit, one of:
+        'EXCEPTION' -- the thread aborted because of an exception
+        'NORMAL' -- normal termination."""
+        return self.exitcause
+    def setExitException(self, exc):
+        self.exitexception = exc
+    def getExitException(self):
+        """If getExitCause() is 'EXCEPTION', holds the value from
+        sys.exc_info()[1] for this exception."""
+        return self.exitexception
+    def setExitStackTrace(self, st):
+        self.exitstacktrace = st
+    def getExitStackTrace(self):
+        """If getExitCause() is 'EXCEPTION', returns a string representing
+        the stack trace for this exception."""
+        return self.exitstacktrace
+    def setExitMessage(self, msg):
+        """Sets the exit message to be fetched by a subsequent call to
+        getExitMessage.  This message may be any object or type except
+        None."""
+        self.exitmessage = msg
+    def getExitMessage(self):
+        """For any exit cause, returns the message previously set by
+        a call to setExitMessage(), or None if there was no such message
+        set."""
+        return self.exitmessage
+

Test for Bash

+
#!/bin/bash
+cd $ROOT_DIR
+DOT_FILES="lastpass weechat ssh Xauthority"
+for dotfile in $DOT_FILES; do conform_link "$DATA_DIR/$dotfile" ".$dotfile"; done
+ 
+# TODO: refactor with suffix variables (or common cron values)
+ 
+case "$PLATFORM" in
+    linux)
+        #conform_link "$CONF_DIR/shell/zshenv" ".zshenv"
+        crontab -l > $ROOT_DIR/tmp/crontab-conflict-arch
+        cd $ROOT_DIR/$CONF_DIR/cron
+        if [[ "$(diff ~/tmp/crontab-conflict-arch crontab-current-arch)" == ""
+            ]];
+            then # no difference with current backup
+                logger "$LOG_PREFIX: crontab live settings match stored "\
+                    "settings; no restore required"
+                rm ~/tmp/crontab-conflict-arch
+            else # current crontab settings in file do not match live settings
+                crontab $ROOT_DIR/$CONF_DIR/cron/crontab-current-arch
+                logger "$LOG_PREFIX: crontab stored settings conflict with "\
+                    "live settings; stored settings restored. "\
+                    "Previous settings recorded in ~/tmp/crontab-conflict-arch."
+        fi
+    ;;
+

Test for Haskell

+
{-# LANGUAGE OverloadedStrings #-}
+module Main where
+ 
+--import Prelude hiding (id)
+--import Control.Category (id)
+import Control.Arrow ((>>>), (***), arr)
+import Control.Monad (forM_)
+-- import Data.Monoid (mempty, mconcat)
+ 
+-- import System.FilePath
+ 
+import Hakyll
+ 
+ 
+main :: IO ()
+main = hakyll $ do
+ 
+    route   "css/*" $ setExtension "css"
+    compile "css/*" $ byExtension (error "Not a (S)CSS file")
+        [ (".css",  compressCssCompiler)
+        , (".scss", sass)
+        ]
+ 
+    route   "js/**" idRoute
+    compile "js/**" copyFileCompiler
+ 
+    route   "img/*" idRoute
+    compile "img/*" copyFileCompiler
+ 
+    compile "templates/*" templateCompiler
+ 
+    forM_ ["test.md", "index.md"] $ \page -> do
+        route   page $ setExtension "html"
+        compile page $ pageCompiler
+            >>> applyTemplateCompiler "templates/default.html"
+            >>> relativizeUrlsCompiler
+ 
+sass :: Compiler Resource String
+sass = getResourceString >>> unixFilter "sass" ["-s", "--scss"]
+                         >>> arr compressCss
+

Test for PHP

+
<?php
+require_once($GLOBALS['g_campsiteDir']. "/$ADMIN_DIR/country/common.php");
+require_once($GLOBALS['g_campsiteDir']. "/classes/SimplePager.php");
+camp_load_translation_strings("api");
+ 
+$f_country_language_selected = camp_session_get('f_language_selected', '');
+$f_country_offset = camp_session_get('f_country_offset', 0);
+if (empty($f_country_language_selected)) {
+    $f_country_language_selected = null;
+}
+$ItemsPerPage = 20;
+$languages = Language::GetLanguages(null, null, null, array(), array(), true);
+$numCountries = Country::GetNumCountries($f_country_language_selected);
+ 
+$pager = new SimplePager($numCountries, $ItemsPerPage, "index.php?");
+ 
+$crumbs = array();
+$crumbs[] = array(getGS("Configure"), "");
+$crumbs[] = array(getGS("Countries"), "");
+echo camp_html_breadcrumbs($crumbs);
+ 
+?>
+ 
+<?php  if ($g_user->hasPermission("ManageCountries")) { ?>
+<table BORDER="0" CELLSPACING="0" CELLPADDING="1">
+    <tr>
+        <td><a href="add.php"><?php putGS("Add new"); ?></a></td>
+    </tr>
+</table>
+

Test for Javascript

+
import isTypedArray from 'lodash/isTypedArray';
+import reverse from 'lodash/reverse';
+import sortBy from 'lodash/sortBy';
+import take from 'lodash/take';
+import { food101Classes } from './food101';
+export function food101topK(classProbabilities, k = 5) {
+  const probs = isTypedArray(classProbabilities)
+    ? Array.prototype.slice.call(classProbabilities)
+    : classProbabilities;
+  const sorted = reverse(
+    sortBy(
+      probs.map((prob, index) => [ prob, index ]),
+      probIndex => probIndex[0]
+    )
+  );
+  const topK = take(sorted, k).map(probIndex => {
+    const iClass = food101Classes[probIndex[1]];
+    return {
+      id: probIndex[1],
+      name: iClass.replace(/_/, ' '),
+      probability: probIndex[0]
+    };
+  });
+  return topK;
+};
+

Test for HTML

+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html><head>
+<title>A Tiny Page</title>
+<style type="text/css">
+<!--
+      p { font-size:15pt; color:#000 }
+    -->
+</style></head><!-- real comment -->
+<body bgcolor="#FFFFFF" text="#000000" link="#0000CC">
+<script language="javascript" type="text/javascript">
+      function changeHeight(h) {
+        var tds = document.getElementsByTagName("td");
+        for(var i = 0; i < tds.length; i++) {
+          tds[i].setAttribute("height", h + "px");
+      }}
+</script>
+<h1>abc</h1>
+<h2>def</h2>
+<p>Testing page</p>
+</body></html>
+

Test for CSS

+
/*
+Monokai style - ported by Luigi Maselli - http://grigio.org
+*/
+.hljs {
+  display: block;
+  overflow-x: auto;
+  padding: 0.5em;
+  background: #272822; color: #ddd;
+}
+.hljs-tag,
+.hljs-keyword,
+.hljs-selector-tag,
+.hljs-literal,
+.hljs-strong,
+.hljs-name {
+  color: #f92672;
+}
+.hljs-code {
+  color: #66d9ef;
+}
+.hljs-class .hljs-title {
+  color: white;
+}
+
+
+ +
+
+ diff --git a/public/posts/test-markdown/index.html b/public/posts/test-markdown/index.html new file mode 100644 index 0000000..f6a40f3 --- /dev/null +++ b/public/posts/test-markdown/index.html @@ -0,0 +1,229 @@ + + + + + + + + + + Test Markdown + + + + + + + + + + + + +
+
+ + +
+

Test Markdown

+ + + +

Markdown Test Page

+ +
+

Headings

+

Heading one

+

Sint sit cillum pariatur eiusmod nulla pariatur ipsum. Sit laborum anim qui mollit tempor pariatur nisi minim dolor. Aliquip et adipisicing sit sit fugiat commodo id sunt.

+

Heading two

+

Aute officia nulla deserunt do deserunt cillum velit magna. Officia veniam culpa anim minim dolore labore pariatur voluptate id ad est duis quis velit dolor pariatur enim.

+

Heading three

+

Voluptate cupidatat cillum elit quis ipsum eu voluptate fugiat consectetur enim. Quis ut voluptate culpa ex anim aute consectetur dolore proident voluptate exercitation eiusmod.

+

Heading four

+

Commodo fugiat aliqua minim quis pariatur mollit id tempor. Non occaecat minim esse enim aliqua adipisicing nostrud duis consequat eu adipisicing qui.

+
Heading five
+

Veniam enim esse amet veniam deserunt laboris amet enim consequat. Minim nostrud deserunt cillum consectetur commodo eu enim nostrud ullamco occaecat excepteur.

+
Heading six
+

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

+

[Top]

+

Paragraphs

+

Incididunt ex adipisicing ea ullamco consectetur in voluptate proident fugiat tempor deserunt reprehenderit ullamco id dolore laborum.

+

Officia dolore laborum aute incididunt commodo nisi velit est est elit et dolore elit exercitation. Enim aliquip magna id ipsum aliquip consectetur ad nulla quis. Incididunt pariatur dolor consectetur cillum enim velit cupidatat laborum quis ex.

+

Officia irure in non voluptate adipisicing sit amet tempor duis dolore deserunt enim ut. Reprehenderit incididunt in ad anim et deserunt deserunt Lorem laborum quis. Enim aute anim labore proident laboris voluptate elit excepteur in.

+

[Top]

+

Blockquotes

+

Ad nisi laborum aute cupidatat magna deserunt eu id laboris id. Aliquip nulla cupidatat sint ex Lorem mollit laborum dolor amet est ut esse aute.

+
+

Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure.

+

Labore ea magna Lorem consequat aliquip consectetur cillum duis dolore. Et veniam dolor qui incididunt minim amet laboris sit.

+
+

Qui est sit et reprehenderit aute est esse enim aliqua id aliquip ea anim. Pariatur sint reprehenderit mollit velit voluptate enim consectetur sint enim. Quis exercitation proident elit non id qui culpa dolore esse aliquip consequat.

+

Ipsum excepteur cupidatat sunt minim ad eiusmod tempor sit.

+
+

Deserunt excepteur adipisicing culpa pariatur cillum laboris ullamco nisi fugiat cillum officia. In cupidatat nulla aliquip tempor ad Lorem Lorem quis voluptate officia consectetur pariatur ex in est duis. Mollit id esse est elit exercitation voluptate nostrud nisi laborum magna dolore dolore tempor in est consectetur.

+

Adipisicing voluptate ipsum culpa voluptate id aute laboris labore esse fugiat veniam ullamco occaecat do ut. Tempor et esse reprehenderit veniam proident ipsum irure sit ullamco et labore ea excepteur nulla labore ut. Ex aute minim quis tempor in eu id id irure ea nostrud dolor esse.

+

[Top]

+

Lists

+

Ordered List

+
    +
  1. Longan
  2. +
  3. Lychee
  4. +
  5. Excepteur ad cupidatat do elit laborum amet cillum reprehenderit consequat quis. +Deserunt officia esse aliquip consectetur duis ut labore laborum commodo aliquip aliquip velit pariatur dolore.
  6. +
  7. Marionberry
  8. +
  9. Melon +
      +
    • Cantaloupe
    • +
    • Honeydew
    • +
    • Watermelon
    • +
    +
  10. +
  11. Miracle fruit
  12. +
  13. Mulberry
  14. +
+

Unordered List

+
    +
  • Olive
  • +
  • Orange +
      +
    • Blood orange
    • +
    • Clementine
    • +
    +
  • +
  • Papaya
  • +
  • Ut aute ipsum occaecat nisi culpa Lorem id occaecat cupidatat id id magna laboris ad duis. Fugiat cillum dolore veniam nostrud proident sint consectetur eiusmod irure adipisicing.
  • +
  • Passionfruit
  • +
+

[Top]

+

Horizontal rule

+

In dolore velit aliquip labore mollit minim tempor veniam eu veniam ad in sint aliquip mollit mollit. Ex occaecat non deserunt elit laborum sunt tempor sint consequat culpa culpa qui sit. Irure ad commodo eu voluptate mollit cillum cupidatat veniam proident amet minim reprehenderit.

+
+

In laboris eiusmod reprehenderit aliquip sit proident occaecat. Non sit labore anim elit veniam Lorem minim commodo eiusmod irure do minim nisi. Dolor amet cillum excepteur consequat sint non sint.

+

[Top]

+

Table

+

Duis sunt ut pariatur reprehenderit mollit mollit magna dolore in pariatur nulla commodo sit dolor ad fugiat. Laboris amet ea occaecat duis eu enim exercitation deserunt ea laborum occaecat reprehenderit. Et incididunt dolor commodo consequat mollit nisi proident non pariatur in et incididunt id. Eu ut et Lorem ea ex magna minim ipsum ipsum do.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Table Heading 1Table Heading 2Center alignRight alignTable Heading 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5
+

Minim id consequat adipisicing cupidatat laborum culpa veniam non consectetur et duis pariatur reprehenderit eu ex consectetur. Sunt nisi qui eiusmod ut cillum laborum Lorem officia aliquip laboris ullamco nostrud laboris non irure laboris. Cillum dolore labore Lorem deserunt mollit voluptate esse incididunt ex dolor.

+

[Top]

+

Code

+

Inline code

+

Ad amet irure est magna id mollit Lorem in do duis enim. Excepteur velit nisi magna ea pariatur pariatur ullamco fugiat deserunt sint non sint. Duis duis est code in text velit velit aute culpa ex quis pariatur pariatur laborum aute pariatur duis tempor sunt ad. Irure magna voluptate dolore consectetur consectetur irure esse. Anim magna <strong>in culpa qui officia</strong> dolor eiusmod esse amet aute cupidatat aliqua do id voluptate cupidatat reprehenderit amet labore deserunt.

+

Highlighted

+

Et fugiat ad nisi amet magna labore do cillum fugiat occaecat cillum Lorem proident. In sint dolor ullamco ad do adipisicing amet id excepteur Lorem aliquip sit irure veniam laborum duis cillum. Aliqua occaecat minim cillum deserunt magna sunt laboris do do irure ea nostrud consequat ut voluptate ex.

+
package main
+
+import (
+    "fmt"
+    "net/http"
+)
+
+func handler(w http.ResponseWriter, r *http.Request) {
+    fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
+}
+
+func main() {
+    http.HandleFunc("/", handler)
+    http.ListenAndServe(":8080", nil)
+}
+

Ex amet id ex aliquip id do laborum excepteur exercitation elit sint commodo occaecat nostrud est. Nostrud pariatur esse veniam laborum non sint magna sit laboris minim in id. Aliqua pariatur pariatur excepteur adipisicing irure culpa consequat commodo et ex id ad.

+

[Top]

+

Inline elements

+

Sint ea anim ipsum ad commodo cupidatat do exercitation incididunt et minim ad labore sunt. Minim deserunt labore laboris velit nulla incididunt ipsum nulla. Ullamco ad laborum ea qui et anim in laboris exercitation tempor sit officia laborum reprehenderit culpa velit quis. Consequat commodo reprehenderit duis irure esse esse exercitation minim enim Lorem dolore duis irure. Nisi Lorem reprehenderit ea amet excepteur dolor excepteur magna labore proident voluptate ipsum. Reprehenderit ex esse deserunt aliqua ea officia mollit Lorem nulla magna enim. Et ad ipsum labore enim ipsum cupidatat consequat. Commodo non ea cupidatat magna deserunt dolore ipsum velit nulla elit veniam nulla eiusmod proident officia.

+

Super wide +

alt-test
+

caption-test

+
+
+

+

Proident sit veniam in est proident officia adipisicing ea tempor cillum non cillum velit deserunt. Voluptate laborum incididunt sit consectetur Lorem irure incididunt voluptate nostrud. Commodo ut eiusmod tempor cupidatat esse enim minim ex anim consequat. Mollit sint culpa qui laboris quis consectetur ad sint esse. Amet anim anim minim ullamco et duis non irure. Sit tempor adipisicing ea laboris culpa ex duis sint anim aute reprehenderit id eu ea. Aute excepteur proident Lorem minim adipisicing nostrud mollit ad ut voluptate do nulla esse occaecat aliqua sint anim.

+

Not so big

+

Incididunt in culpa cupidatat mollit cillum qui proident sit. In cillum aliquip incididunt voluptate magna amet cupidatat cillum pariatur sint aliqua est enim anim voluptate. Magna aliquip proident incididunt id duis pariatur eiusmod incididunt commodo culpa dolore sit. Culpa do nostrud elit ad exercitation anim pariatur non minim nisi adipisicing sunt officia. Do deserunt magna mollit Lorem commodo ipsum do cupidatat mollit enim ut elit veniam ea voluptate.

+

Manny Pacquiao

+

Reprehenderit non eu quis in ad elit esse qui aute id incididunt dolore cillum. Esse laboris consequat dolor anim exercitation tempor aliqua deserunt velit magna laboris. Culpa culpa minim duis amet mollit do quis amet commodo nulla irure.

+ +
+ +
+
+ diff --git a/public/posts/test-post/index.html b/public/posts/test-post/index.html new file mode 100644 index 0000000..67cc8e9 --- /dev/null +++ b/public/posts/test-post/index.html @@ -0,0 +1,96 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +
+
+
+
+

Test Post

+
+ +

2023-07-22

+
+ Categories: + + Games + +
+ + +
+ +

Introduction

+

This is bold text, and this is emphasized text.

+

Visit the Hugo website!

+ +
+ + +
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/posts/test-tex/index.html b/public/posts/test-tex/index.html new file mode 100644 index 0000000..7106395 --- /dev/null +++ b/public/posts/test-tex/index.html @@ -0,0 +1,120 @@ + + + + + + + + + + Test Tex + + + + + + + + + + + + + + + +
+
+ + +
+

Test Tex

+ + + +

Inline math: +\(\varphi\) + +

+

Displayed math: + +$$\begin{aligned} +\varphi &\Rightarrow \psi \\ +\varnothing &\rightarrow A +\end{aligned}$$ + +

+

$$ +R_{\mu \nu} - {1 \over 2}g_{\mu \nu},R + g_{\mu \nu} \Lambda += {8 \pi G \over c^4} T_{\mu \nu} +$$

+

The equation $$(x_i \cdot x_j)^2$$ is called kernel function and is often written as $$k(x_i, x_j)$$.

+

$$ +\arg\max_\alpha \sum_j \alpha_j - \frac{1}{2} \sum_{j,k} \alpha_j, \alpha_k y_j y_k (x_j \cdot x_k) +$$

+

$$ +f(X) = \frac{1}{(2\pi)^{\frac{n}{2} |\Sigma|^{\frac{1}{2}}}} e^{ - \frac{1}{2} (X - \mu)^T \Sigma^{-1} (X - \mu)} +$$

+

$$ +\mu_i = \sum_{j=1}^N \frac{p_{ij} x}{n_i} \ +\Sigma_i = \sum_{j=1}^N \frac{p_{ij} (x_j - \mu_i) (x_j - \mu_i)^T}{n_i}\ +w_i = \frac{n_i}{N} +$$

+

$$ +S_i^{(t)} = \big { x_p : \big | x_p - \mu^{(t)}_i \big |^2 \le \big | x_p - \mu^{(t)}_j \big |^2 \ \forall j, 1 \le j \le k \big} +$$

+

(The error above is a demo for incorrect formulas.)

+ +
+ +
+
+ diff --git a/public/posts/test-toc-and-details/index.html b/public/posts/test-toc-and-details/index.html new file mode 100644 index 0000000..36bce31 --- /dev/null +++ b/public/posts/test-toc-and-details/index.html @@ -0,0 +1,104 @@ + + + + + + + + + + Test TOC, deatails and styles + + + + + + + + + + + + +
+
+ + +
+

Test TOC, deatails and styles

+ + + + + +

Table of Content

+

What it is?

+

TOC is the box you see at the very top of this post. It may be framed (or not).

+

How to enable TOC?

+

To enable it, all you need to do when creating a new post at the very top is to insert the code:

+
toc = true
+tocBorder = true
+

You can of course find this post (../themes/nostyleplease/content/posts/test-toc-and-details.md) and open in editor to see how it’s working.

+

Details

+

What it is?

+

It’s HTML standard sadly not supported native by markdown. But this theme support it anyway. So… sometimes you want to hide something. +

+ + Click me + + A lot of text or something else. +
+

+

How to use “Details”?

+

Well you need to inspect this post and see by yourself. It’s very easy. Take look at ../themes/nostyleplease/content/posts/test-toc-and-details.md.

+

Styles

+

Okey. So if you want to change color-theme you can:

+
    +
  • +

    go to ../themes/nostyleplease/config.toml and find:

    +
    appearance = "auto"
    +

    you can change it to 2 predefined styles: light and dark. It can be also set to auto and the color scheme will match the user’s system style.

    +
  • +
  • +

    you can add new style or modify auto option, just edit CSS in ../themes/nostyleplease/assets/main.scss :-). It’s easy, if you are able to operate Hugo - you can do it.

    +
  • +
+ +
+ +
+
+ diff --git a/public/projects/index.html b/public/projects/index.html new file mode 100644 index 0000000..1c6c3ea --- /dev/null +++ b/public/projects/index.html @@ -0,0 +1,83 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+

Jects

+
    + +
  • + Project uno + +

    this is a description of my project very very nice

    + +
  • + +
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/projects/index.xml b/public/projects/index.xml new file mode 100644 index 0000000..2cbff4f --- /dev/null +++ b/public/projects/index.xml @@ -0,0 +1,19 @@ + + + + Projects on mshj.net + //localhost:1313/projects/ + Recent content in Projects on mshj.net + Hugo + en-us + Thu, 04 Apr 2024 02:35:21 -0400 + + + Project uno + //localhost:1313/projects/project/ + Thu, 04 Apr 2024 02:35:21 -0400 + //localhost:1313/projects/project/ + + + + diff --git a/public/projects/project/index.html b/public/projects/project/index.html new file mode 100644 index 0000000..99d464e --- /dev/null +++ b/public/projects/project/index.html @@ -0,0 +1,82 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +
+
+
+
+

Project uno

+
+

2024-04-04

+ +
+ + +
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..4a10ebb --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,50 @@ + + + + //localhost:1313/categories/ + 2024-04-04T02:46:07-04:00 + + //localhost:1313/tags/css/ + 2024-04-04T02:46:07-04:00 + + //localhost:1313/posts/hi-post/ + 2024-04-04T02:46:07-04:00 + + //localhost:1313/categories/hugo/ + 2024-04-04T02:46:07-04:00 + + //localhost:1313/ + 2024-04-04T02:46:07-04:00 + + //localhost:1313/posts/ + 2024-04-04T02:46:07-04:00 + + //localhost:1313/tags/ + 2024-04-04T02:46:07-04:00 + + //localhost:1313/categories/terminal/ + 2024-04-04T02:46:07-04:00 + + //localhost:1313/tags/terminal-style/ + 2024-04-04T02:46:07-04:00 + + //localhost:1313/tags/tutorial/ + 2024-04-04T02:46:07-04:00 + + //localhost:1313/posts/new-test-post/ + 2024-04-04T02:35:21-04:00 + + //localhost:1313/projects/project/ + 2024-04-04T02:35:21-04:00 + + //localhost:1313/projects/ + 2024-04-04T02:35:21-04:00 + + //localhost:1313/categories/games/ + 2023-07-22T23:03:09-04:00 + + //localhost:1313/posts/test-post/ + 2023-07-22T23:03:09-04:00 + + diff --git a/public/tags/css/index.html b/public/tags/css/index.html new file mode 100644 index 0000000..3f64c8f --- /dev/null +++ b/public/tags/css/index.html @@ -0,0 +1,85 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+
Tag: Css
+
+ +
+
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/tags/css/index.xml b/public/tags/css/index.xml new file mode 100644 index 0000000..600ebb8 --- /dev/null +++ b/public/tags/css/index.xml @@ -0,0 +1,19 @@ + + + + Css on mshj.net + //localhost:1313/tags/css/ + Recent content in Css on mshj.net + Hugo + en-us + Thu, 04 Apr 2024 02:46:07 -0400 + + + Hello World + //localhost:1313/posts/hi-post/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/posts/hi-post/ + <h1 id="yoooo">yoooo</h1> <p>this is one of my first articles homies. so i wil try my best to write it the best i can</p> + + + diff --git a/public/tags/index.html b/public/tags/index.html new file mode 100644 index 0000000..3bb897e --- /dev/null +++ b/public/tags/index.html @@ -0,0 +1,95 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+
Tag: Tags
+
+ +
+
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/tags/index.xml b/public/tags/index.xml new file mode 100644 index 0000000..8ad720c --- /dev/null +++ b/public/tags/index.xml @@ -0,0 +1,33 @@ + + + + Tags on mshj.net + //localhost:1313/tags/ + Recent content in Tags on mshj.net + Hugo + en-us + Thu, 04 Apr 2024 02:46:07 -0400 + + + Css + //localhost:1313/tags/css/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/tags/css/ + + + + Terminal-Style + //localhost:1313/tags/terminal-style/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/tags/terminal-style/ + + + + Tutorial + //localhost:1313/tags/tutorial/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/tags/tutorial/ + + + + diff --git a/public/tags/terminal-style/index.html b/public/tags/terminal-style/index.html new file mode 100644 index 0000000..0c62114 --- /dev/null +++ b/public/tags/terminal-style/index.html @@ -0,0 +1,85 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+
Tag: Terminal-Style
+
+ +
+
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/tags/terminal-style/index.xml b/public/tags/terminal-style/index.xml new file mode 100644 index 0000000..f701021 --- /dev/null +++ b/public/tags/terminal-style/index.xml @@ -0,0 +1,19 @@ + + + + Terminal-Style on mshj.net + //localhost:1313/tags/terminal-style/ + Recent content in Terminal-Style on mshj.net + Hugo + en-us + Thu, 04 Apr 2024 02:46:07 -0400 + + + Hello World + //localhost:1313/posts/hi-post/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/posts/hi-post/ + <h1 id="yoooo">yoooo</h1> <p>this is one of my first articles homies. so i wil try my best to write it the best i can</p> + + + diff --git a/public/tags/tutorial/index.html b/public/tags/tutorial/index.html new file mode 100644 index 0000000..be5e229 --- /dev/null +++ b/public/tags/tutorial/index.html @@ -0,0 +1,85 @@ + + + + + +
+ +
+
+
+

mshj.net

+ +
+
+
+ +
+
+ +
+
+ +

go home

+ +
+
+
+
+
Tag: Tutorial
+
+ +
+
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/public/tags/tutorial/index.xml b/public/tags/tutorial/index.xml new file mode 100644 index 0000000..98946ea --- /dev/null +++ b/public/tags/tutorial/index.xml @@ -0,0 +1,19 @@ + + + + Tutorial on mshj.net + //localhost:1313/tags/tutorial/ + Recent content in Tutorial on mshj.net + Hugo + en-us + Thu, 04 Apr 2024 02:46:07 -0400 + + + Hello World + //localhost:1313/posts/hi-post/ + Thu, 04 Apr 2024 02:46:07 -0400 + //localhost:1313/posts/hi-post/ + <h1 id="yoooo">yoooo</h1> <p>this is one of my first articles homies. so i wil try my best to write it the best i can</p> + + + diff --git a/resources/_gen/assets/css/ananke/css/main.css_83735de7ca999e9c17f3419b41b93fdb.content b/resources/_gen/assets/css/ananke/css/main.css_83735de7ca999e9c17f3419b41b93fdb.content new file mode 100644 index 0000000..54a77cb --- /dev/null +++ b/resources/_gen/assets/css/ananke/css/main.css_83735de7ca999e9c17f3419b41b93fdb.content @@ -0,0 +1 @@ +/*!TACHYONS v4.9.1 | http://tachyons.io*//*!TACHYONS v4.12.0 | http://tachyons.io*//*!normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}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;-webkit-text-decoration:underline dotted;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}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-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}[hidden],template{display:none}.border-box,a,article,aside,blockquote,body,code,dd,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,html,input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],legend,li,main,nav,ol,p,pre,section,table,td,textarea,th,tr,ul{box-sizing:border-box}.aspect-ratio{height:0;position:relative}.aspect-ratio--16x9{padding-bottom:56.25%}.aspect-ratio--9x16{padding-bottom:177.77%}.aspect-ratio--4x3{padding-bottom:75%}.aspect-ratio--3x4{padding-bottom:133.33%}.aspect-ratio--6x4{padding-bottom:66.6%}.aspect-ratio--4x6{padding-bottom:150%}.aspect-ratio--8x5{padding-bottom:62.5%}.aspect-ratio--5x8{padding-bottom:160%}.aspect-ratio--7x5{padding-bottom:71.42%}.aspect-ratio--5x7{padding-bottom:140%}.aspect-ratio--1x1{padding-bottom:100%}.aspect-ratio--object{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:100}img{max-width:100%}.cover{background-size:cover!important}.contain{background-size:contain!important}.bg-center{background-position:50%}.bg-center,.bg-top{background-repeat:no-repeat}.bg-top{background-position:top}.bg-right{background-position:100%}.bg-bottom,.bg-right{background-repeat:no-repeat}.bg-bottom{background-position:bottom}.bg-left{background-repeat:no-repeat;background-position:0}.outline{outline:1px solid}.outline-transparent{outline:1px solid transparent}.outline-0{outline:0}.ba{border-style:solid;border-width:1px}.bt{border-top-style:solid;border-top-width:1px}.br{border-right-style:solid;border-right-width:1px}.bb{border-bottom-style:solid;border-bottom-width:1px}.bl{border-left-style:solid;border-left-width:1px}.bn{border-style:none;border-width:0}.b--black{border-color:#000}.b--near-black{border-color:#111}.b--dark-gray{border-color:#333}.b--mid-gray{border-color:#555}.b--gray{border-color:#777}.b--silver{border-color:#999}.b--light-silver{border-color:#aaa}.b--moon-gray{border-color:#ccc}.b--light-gray{border-color:#eee}.b--near-white{border-color:#f4f4f4}.b--white{border-color:#fff}.b--white-90{border-color:rgba(255,255,255,.9)}.b--white-80{border-color:rgba(255,255,255,.8)}.b--white-70{border-color:rgba(255,255,255,.7)}.b--white-60{border-color:rgba(255,255,255,.6)}.b--white-50{border-color:rgba(255,255,255,.5)}.b--white-40{border-color:rgba(255,255,255,.4)}.b--white-30{border-color:rgba(255,255,255,.3)}.b--white-20{border-color:rgba(255,255,255,.2)}.b--white-10{border-color:rgba(255,255,255,.1)}.b--white-05{border-color:rgba(255,255,255,5%)}.b--white-025{border-color:rgba(255,255,255,.025)}.b--white-0125{border-color:rgba(255,255,255,.0125)}.b--black-90{border-color:rgba(0,0,0,.9)}.b--black-80{border-color:rgba(0,0,0,.8)}.b--black-70{border-color:rgba(0,0,0,.7)}.b--black-60{border-color:rgba(0,0,0,.6)}.b--black-50{border-color:rgba(0,0,0,.5)}.b--black-40{border-color:rgba(0,0,0,.4)}.b--black-30{border-color:rgba(0,0,0,.3)}.b--black-20{border-color:rgba(0,0,0,.2)}.b--black-10{border-color:rgba(0,0,0,.1)}.b--black-05{border-color:rgba(0,0,0,5%)}.b--black-025{border-color:rgba(0,0,0,.025)}.b--black-0125{border-color:rgba(0,0,0,.0125)}.b--dark-red{border-color:#e7040f}.b--red{border-color:#ff4136}.b--light-red{border-color:#ff725c}.b--orange{border-color:#ff6300}.b--gold{border-color:#ffb700}.b--yellow{border-color:gold}.b--light-yellow{border-color:#fbf1a9}.b--purple{border-color:#5e2ca5}.b--light-purple{border-color:#a463f2}.b--dark-pink{border-color:#d5008f}.b--hot-pink{border-color:#ff41b4}.b--pink{border-color:#ff80cc}.b--light-pink{border-color:#ffa3d7}.b--dark-green{border-color:#137752}.b--green{border-color:#19a974}.b--light-green{border-color:#9eebcf}.b--navy{border-color:#001b44}.b--dark-blue{border-color:#00449e}.b--blue{border-color:#357edd}.b--light-blue{border-color:#96ccff}.b--lightest-blue{border-color:#cdecff}.b--washed-blue{border-color:#f6fffe}.b--washed-green{border-color:#e8fdf5}.b--washed-yellow{border-color:#fffceb}.b--washed-red{border-color:#ffdfdf}.b--transparent{border-color:transparent}.b--inherit{border-color:inherit}.b--initial{border-color:initial}.b--unset{border-color:unset}.br0{border-radius:0}.br1{border-radius:.125rem}.br2{border-radius:.25rem}.br3{border-radius:.5rem}.br4{border-radius:1rem}.br-100{border-radius:100%}.br-pill{border-radius:9999px}.br--bottom{border-top-left-radius:0;border-top-right-radius:0}.br--top{border-bottom-right-radius:0}.br--right,.br--top{border-bottom-left-radius:0}.br--right{border-top-left-radius:0}.br--left{border-top-right-radius:0;border-bottom-right-radius:0}.br-inherit{border-radius:inherit}.br-initial{border-radius:initial}.br-unset{border-radius:unset}.b--dotted{border-style:dotted}.b--dashed{border-style:dashed}.b--solid{border-style:solid}.b--none{border-style:none}.bw0{border-width:0}.bw1{border-width:.125rem}.bw2{border-width:.25rem}.bw3{border-width:.5rem}.bw4{border-width:1rem}.bw5{border-width:2rem}.bt-0{border-top-width:0}.br-0{border-right-width:0}.bb-0{border-bottom-width:0}.bl-0{border-left-width:0}.shadow-1{box-shadow:0 0 4px 2px rgba(0,0,0,.2)}.shadow-2{box-shadow:0 0 8px 2px rgba(0,0,0,.2)}.shadow-3{box-shadow:2px 2px 4px 2px rgba(0,0,0,.2)}.shadow-4{box-shadow:2px 2px 8px rgba(0,0,0,.2)}.shadow-5{box-shadow:4px 4px 8px rgba(0,0,0,.2)}.pre{overflow-x:auto;overflow-y:hidden;overflow:scroll}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.top-1{top:1rem}.right-1{right:1rem}.bottom-1{bottom:1rem}.left-1{left:1rem}.top-2{top:2rem}.right-2{right:2rem}.bottom-2{bottom:2rem}.left-2{left:2rem}.top--1{top:-1rem}.right--1{right:-1rem}.bottom--1{bottom:-1rem}.left--1{left:-1rem}.top--2{top:-2rem}.right--2{right:-2rem}.bottom--2{bottom:-2rem}.left--2{left:-2rem}.absolute--fill{top:0;right:0;bottom:0;left:0}.cf:after,.cf:before{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.cl{clear:left}.cr{clear:right}.cb{clear:both}.cn{clear:none}.dn{display:none}.di{display:inline}.db{display:block}.dib{display:inline-block}.dit{display:inline-table}.dt{display:table}.dtc{display:table-cell}.dt-row{display:table-row}.dt-row-group{display:table-row-group}.dt-column{display:table-column}.dt-column-group{display:table-column-group}.dt--fixed{table-layout:fixed;width:100%}.flex{display:flex}.inline-flex{display:inline-flex}.flex-auto{flex:auto;min-width:0;min-height:0}.flex-none{flex:none}.flex-column{flex-direction:column}.flex-row{flex-direction:row}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.flex-column-reverse{flex-direction:column-reverse}.flex-row-reverse{flex-direction:row-reverse}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.self-start{align-self:flex-start}.self-end{align-self:flex-end}.self-center{align-self:center}.self-baseline{align-self:baseline}.self-stretch{align-self:stretch}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.content-start{align-content:flex-start}.content-end{align-content:flex-end}.content-center{align-content:center}.content-between{align-content:space-between}.content-around{align-content:space-around}.content-stretch{align-content:stretch}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-last{order:99999}.flex-grow-0{flex-grow:0}.flex-grow-1{flex-grow:1}.flex-shrink-0{flex-shrink:0}.flex-shrink-1{flex-shrink:1}.fl{float:left}.fl,.fr{_display:inline}.fr{float:right}.fn{float:none}.sans-serif{font-family:-apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif}.serif{font-family:georgia,times,serif}.system-sans-serif{font-family:sans-serif}.system-serif{font-family:serif}.code,code{font-family:Consolas,monaco,monospace}.courier{font-family:Courier Next,courier,monospace}.helvetica{font-family:helvetica neue,helvetica,sans-serif}.avenir{font-family:avenir next,avenir,sans-serif}.athelas{font-family:athelas,georgia,serif}.georgia{font-family:georgia,serif}.times{font-family:times,serif}.bodoni{font-family:Bodoni MT,serif}.calisto{font-family:Calisto MT,serif}.garamond{font-family:garamond,serif}.baskerville{font-family:baskerville,serif}.i{font-style:italic}.fs-normal{font-style:normal}.normal{font-weight:400}.b{font-weight:700}.fw1{font-weight:100}.fw2{font-weight:200}.fw3{font-weight:300}.fw4{font-weight:400}.fw5{font-weight:500}.fw6{font-weight:600}.fw7{font-weight:700}.fw8{font-weight:800}.fw9{font-weight:900}.input-reset{-webkit-appearance:none;-moz-appearance:none}.button-reset::-moz-focus-inner,.input-reset::-moz-focus-inner{border:0;padding:0}.h1{height:1rem}.h2{height:2rem}.h3{height:4rem}.h4{height:8rem}.h5{height:16rem}.h-25{height:25%}.h-50{height:50%}.h-75{height:75%}.h-100{height:100%}.min-h-100{min-height:100%}.vh-25{height:25vh}.vh-50{height:50vh}.vh-75{height:75vh}.vh-100{height:100vh}.min-vh-100{min-height:100vh}.h-auto{height:auto}.h-inherit{height:inherit}.tracked{letter-spacing:.1em}.tracked-tight{letter-spacing:-.05em}.tracked-mega{letter-spacing:.25em}.lh-solid{line-height:1}.lh-title{line-height:1.25}.lh-copy{line-height:1.5}.link{text-decoration:none}.link,.link:active,.link:focus,.link:hover,.link:link,.link:visited{transition:color .15s ease-in}.link:focus{outline:1px dotted currentColor}.list{list-style-type:none}.mw-100{max-width:100%}.mw1{max-width:1rem}.mw2{max-width:2rem}.mw3{max-width:4rem}.mw4{max-width:8rem}.mw5{max-width:16rem}.mw6{max-width:32rem}.mw7{max-width:48rem}.mw8{max-width:64rem}.mw9{max-width:96rem}.mw-none{max-width:none}.w1{width:1rem}.w2{width:2rem}.w3{width:4rem}.w4{width:8rem}.w5{width:16rem}.w-10{width:10%}.w-20{width:20%}.w-25{width:25%}.w-30{width:30%}.w-33{width:33%}.w-34{width:34%}.w-40{width:40%}.w-50{width:50%}.w-60{width:60%}.w-70{width:70%}.w-75{width:75%}.w-80{width:80%}.w-90{width:90%}.w-100{width:100%}.w-third{width:33.33333%}.w-two-thirds{width:66.66667%}.w-auto{width:auto}.overflow-visible{overflow:visible}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-auto{overflow:auto}.overflow-x-visible{overflow-x:visible}.overflow-x-hidden{overflow-x:hidden}.overflow-x-scroll{overflow-x:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-visible{overflow-y:visible}.overflow-y-hidden{overflow-y:hidden}.overflow-y-scroll{overflow-y:scroll}.overflow-y-auto{overflow-y:auto}.static{position:static}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.o-100{opacity:1}.o-90{opacity:.9}.o-80{opacity:.8}.o-70{opacity:.7}.o-60{opacity:.6}.o-50{opacity:.5}.o-40{opacity:.4}.o-30{opacity:.3}.o-20{opacity:.2}.o-10{opacity:.1}.o-05{opacity:.05}.o-025{opacity:.025}.o-0{opacity:0}.rotate-45{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate-135{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate-225{-webkit-transform:rotate(225deg);transform:rotate(225deg)}.rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.rotate-315{-webkit-transform:rotate(315deg);transform:rotate(315deg)}.black-90{color:rgba(0,0,0,.9)}.black-80{color:rgba(0,0,0,.8)}.black-70{color:rgba(0,0,0,.7)}.black-60{color:rgba(0,0,0,.6)}.black-50{color:rgba(0,0,0,.5)}.black-40{color:rgba(0,0,0,.4)}.black-30{color:rgba(0,0,0,.3)}.black-20{color:rgba(0,0,0,.2)}.black-10{color:rgba(0,0,0,.1)}.black-05{color:rgba(0,0,0,5%)}.white-90{color:rgba(255,255,255,.9)}.white-80{color:rgba(255,255,255,.8)}.white-70{color:rgba(255,255,255,.7)}.white-60{color:rgba(255,255,255,.6)}.white-50{color:rgba(255,255,255,.5)}.white-40{color:rgba(255,255,255,.4)}.white-30{color:rgba(255,255,255,.3)}.white-20{color:rgba(255,255,255,.2)}.white-10{color:rgba(255,255,255,.1)}.black{color:#000}.near-black{color:#111}.dark-gray{color:#333}.mid-gray{color:#555}.gray{color:#777}.silver{color:#999}.light-silver{color:#aaa}.moon-gray{color:#ccc}.light-gray{color:#eee}.near-white{color:#f4f4f4}.white{color:#fff}.dark-red{color:#e7040f}.red{color:#ff4136}.light-red{color:#ff725c}.orange{color:#ff6300}.gold{color:#ffb700}.yellow{color:gold}.light-yellow{color:#fbf1a9}.purple{color:#5e2ca5}.light-purple{color:#a463f2}.dark-pink{color:#d5008f}.hot-pink{color:#ff41b4}.pink{color:#ff80cc}.light-pink{color:#ffa3d7}.dark-green{color:#137752}.green{color:#19a974}.light-green{color:#9eebcf}.navy{color:#001b44}.dark-blue{color:#00449e}.blue{color:#357edd}.light-blue{color:#96ccff}.lightest-blue{color:#cdecff}.washed-blue{color:#f6fffe}.washed-green{color:#e8fdf5}.washed-yellow{color:#fffceb}.washed-red{color:#ffdfdf}.color-inherit{color:inherit}.bg-black-90{background-color:rgba(0,0,0,.9)}.bg-black-80{background-color:rgba(0,0,0,.8)}.bg-black-70{background-color:rgba(0,0,0,.7)}.bg-black-60{background-color:rgba(0,0,0,.6)}.bg-black-50{background-color:rgba(0,0,0,.5)}.bg-black-40{background-color:rgba(0,0,0,.4)}.bg-black-30{background-color:rgba(0,0,0,.3)}.bg-black-20{background-color:rgba(0,0,0,.2)}.bg-black-10{background-color:rgba(0,0,0,.1)}.bg-black-05{background-color:rgba(0,0,0,5%)}.bg-white-90{background-color:rgba(255,255,255,.9)}.bg-white-80{background-color:rgba(255,255,255,.8)}.bg-white-70{background-color:rgba(255,255,255,.7)}.bg-white-60{background-color:rgba(255,255,255,.6)}.bg-white-50{background-color:rgba(255,255,255,.5)}.bg-white-40{background-color:rgba(255,255,255,.4)}.bg-white-30{background-color:rgba(255,255,255,.3)}.bg-white-20{background-color:rgba(255,255,255,.2)}.bg-white-10{background-color:rgba(255,255,255,.1)}.bg-black{background-color:#000}.bg-near-black{background-color:#111}.bg-dark-gray{background-color:#333}.bg-mid-gray{background-color:#555}.bg-gray{background-color:#777}.bg-silver{background-color:#999}.bg-light-silver{background-color:#aaa}.bg-moon-gray{background-color:#ccc}.bg-light-gray{background-color:#eee}.bg-near-white{background-color:#f4f4f4}.bg-white{background-color:#fff}.bg-transparent{background-color:transparent}.bg-dark-red{background-color:#e7040f}.bg-red{background-color:#ff4136}.bg-light-red{background-color:#ff725c}.bg-orange{background-color:#ff6300}.bg-gold{background-color:#ffb700}.bg-yellow{background-color:gold}.bg-light-yellow{background-color:#fbf1a9}.bg-purple{background-color:#5e2ca5}.bg-light-purple{background-color:#a463f2}.bg-dark-pink{background-color:#d5008f}.bg-hot-pink{background-color:#ff41b4}.bg-pink{background-color:#ff80cc}.bg-light-pink{background-color:#ffa3d7}.bg-dark-green{background-color:#137752}.bg-green{background-color:#19a974}.bg-light-green{background-color:#9eebcf}.bg-navy{background-color:#001b44}.bg-dark-blue{background-color:#00449e}.bg-blue{background-color:#357edd}.bg-light-blue{background-color:#96ccff}.bg-lightest-blue{background-color:#cdecff}.bg-washed-blue{background-color:#f6fffe}.bg-washed-green{background-color:#e8fdf5}.bg-washed-yellow{background-color:#fffceb}.bg-washed-red{background-color:#ffdfdf}.bg-inherit{background-color:inherit}.hover-black:focus,.hover-black:hover{color:#000}.hover-near-black:focus,.hover-near-black:hover{color:#111}.hover-dark-gray:focus,.hover-dark-gray:hover{color:#333}.hover-mid-gray:focus,.hover-mid-gray:hover{color:#555}.hover-gray:focus,.hover-gray:hover{color:#777}.hover-silver:focus,.hover-silver:hover{color:#999}.hover-light-silver:focus,.hover-light-silver:hover{color:#aaa}.hover-moon-gray:focus,.hover-moon-gray:hover{color:#ccc}.hover-light-gray:focus,.hover-light-gray:hover{color:#eee}.hover-near-white:focus,.hover-near-white:hover{color:#f4f4f4}.hover-white:focus,.hover-white:hover{color:#fff}.hover-black-90:focus,.hover-black-90:hover{color:rgba(0,0,0,.9)}.hover-black-80:focus,.hover-black-80:hover{color:rgba(0,0,0,.8)}.hover-black-70:focus,.hover-black-70:hover{color:rgba(0,0,0,.7)}.hover-black-60:focus,.hover-black-60:hover{color:rgba(0,0,0,.6)}.hover-black-50:focus,.hover-black-50:hover{color:rgba(0,0,0,.5)}.hover-black-40:focus,.hover-black-40:hover{color:rgba(0,0,0,.4)}.hover-black-30:focus,.hover-black-30:hover{color:rgba(0,0,0,.3)}.hover-black-20:focus,.hover-black-20:hover{color:rgba(0,0,0,.2)}.hover-black-10:focus,.hover-black-10:hover{color:rgba(0,0,0,.1)}.hover-white-90:focus,.hover-white-90:hover{color:rgba(255,255,255,.9)}.hover-white-80:focus,.hover-white-80:hover{color:rgba(255,255,255,.8)}.hover-white-70:focus,.hover-white-70:hover{color:rgba(255,255,255,.7)}.hover-white-60:focus,.hover-white-60:hover{color:rgba(255,255,255,.6)}.hover-white-50:focus,.hover-white-50:hover{color:rgba(255,255,255,.5)}.hover-white-40:focus,.hover-white-40:hover{color:rgba(255,255,255,.4)}.hover-white-30:focus,.hover-white-30:hover{color:rgba(255,255,255,.3)}.hover-white-20:focus,.hover-white-20:hover{color:rgba(255,255,255,.2)}.hover-white-10:focus,.hover-white-10:hover{color:rgba(255,255,255,.1)}.hover-inherit:focus,.hover-inherit:hover{color:inherit}.hover-bg-black:focus,.hover-bg-black:hover{background-color:#000}.hover-bg-near-black:focus,.hover-bg-near-black:hover{background-color:#111}.hover-bg-dark-gray:focus,.hover-bg-dark-gray:hover{background-color:#333}.hover-bg-mid-gray:focus,.hover-bg-mid-gray:hover{background-color:#555}.hover-bg-gray:focus,.hover-bg-gray:hover{background-color:#777}.hover-bg-silver:focus,.hover-bg-silver:hover{background-color:#999}.hover-bg-light-silver:focus,.hover-bg-light-silver:hover{background-color:#aaa}.hover-bg-moon-gray:focus,.hover-bg-moon-gray:hover{background-color:#ccc}.hover-bg-light-gray:focus,.hover-bg-light-gray:hover{background-color:#eee}.hover-bg-near-white:focus,.hover-bg-near-white:hover{background-color:#f4f4f4}.hover-bg-white:focus,.hover-bg-white:hover{background-color:#fff}.hover-bg-transparent:focus,.hover-bg-transparent:hover{background-color:transparent}.hover-bg-black-90:focus,.hover-bg-black-90:hover{background-color:rgba(0,0,0,.9)}.hover-bg-black-80:focus,.hover-bg-black-80:hover{background-color:rgba(0,0,0,.8)}.hover-bg-black-70:focus,.hover-bg-black-70:hover{background-color:rgba(0,0,0,.7)}.hover-bg-black-60:focus,.hover-bg-black-60:hover{background-color:rgba(0,0,0,.6)}.hover-bg-black-50:focus,.hover-bg-black-50:hover{background-color:rgba(0,0,0,.5)}.hover-bg-black-40:focus,.hover-bg-black-40:hover{background-color:rgba(0,0,0,.4)}.hover-bg-black-30:focus,.hover-bg-black-30:hover{background-color:rgba(0,0,0,.3)}.hover-bg-black-20:focus,.hover-bg-black-20:hover{background-color:rgba(0,0,0,.2)}.hover-bg-black-10:focus,.hover-bg-black-10:hover{background-color:rgba(0,0,0,.1)}.hover-bg-white-90:focus,.hover-bg-white-90:hover{background-color:rgba(255,255,255,.9)}.hover-bg-white-80:focus,.hover-bg-white-80:hover{background-color:rgba(255,255,255,.8)}.hover-bg-white-70:focus,.hover-bg-white-70:hover{background-color:rgba(255,255,255,.7)}.hover-bg-white-60:focus,.hover-bg-white-60:hover{background-color:rgba(255,255,255,.6)}.hover-bg-white-50:focus,.hover-bg-white-50:hover{background-color:rgba(255,255,255,.5)}.hover-bg-white-40:focus,.hover-bg-white-40:hover{background-color:rgba(255,255,255,.4)}.hover-bg-white-30:focus,.hover-bg-white-30:hover{background-color:rgba(255,255,255,.3)}.hover-bg-white-20:focus,.hover-bg-white-20:hover{background-color:rgba(255,255,255,.2)}.hover-bg-white-10:focus,.hover-bg-white-10:hover{background-color:rgba(255,255,255,.1)}.hover-dark-red:focus,.hover-dark-red:hover{color:#e7040f}.hover-red:focus,.hover-red:hover{color:#ff4136}.hover-light-red:focus,.hover-light-red:hover{color:#ff725c}.hover-orange:focus,.hover-orange:hover{color:#ff6300}.hover-gold:focus,.hover-gold:hover{color:#ffb700}.hover-yellow:focus,.hover-yellow:hover{color:gold}.hover-light-yellow:focus,.hover-light-yellow:hover{color:#fbf1a9}.hover-purple:focus,.hover-purple:hover{color:#5e2ca5}.hover-light-purple:focus,.hover-light-purple:hover{color:#a463f2}.hover-dark-pink:focus,.hover-dark-pink:hover{color:#d5008f}.hover-hot-pink:focus,.hover-hot-pink:hover{color:#ff41b4}.hover-pink:focus,.hover-pink:hover{color:#ff80cc}.hover-light-pink:focus,.hover-light-pink:hover{color:#ffa3d7}.hover-dark-green:focus,.hover-dark-green:hover{color:#137752}.hover-green:focus,.hover-green:hover{color:#19a974}.hover-light-green:focus,.hover-light-green:hover{color:#9eebcf}.hover-navy:focus,.hover-navy:hover{color:#001b44}.hover-dark-blue:focus,.hover-dark-blue:hover{color:#00449e}.hover-blue:focus,.hover-blue:hover{color:#357edd}.hover-light-blue:focus,.hover-light-blue:hover{color:#96ccff}.hover-lightest-blue:focus,.hover-lightest-blue:hover{color:#cdecff}.hover-washed-blue:focus,.hover-washed-blue:hover{color:#f6fffe}.hover-washed-green:focus,.hover-washed-green:hover{color:#e8fdf5}.hover-washed-yellow:focus,.hover-washed-yellow:hover{color:#fffceb}.hover-washed-red:focus,.hover-washed-red:hover{color:#ffdfdf}.hover-bg-dark-red:focus,.hover-bg-dark-red:hover{background-color:#e7040f}.hover-bg-red:focus,.hover-bg-red:hover{background-color:#ff4136}.hover-bg-light-red:focus,.hover-bg-light-red:hover{background-color:#ff725c}.hover-bg-orange:focus,.hover-bg-orange:hover{background-color:#ff6300}.hover-bg-gold:focus,.hover-bg-gold:hover{background-color:#ffb700}.hover-bg-yellow:focus,.hover-bg-yellow:hover{background-color:gold}.hover-bg-light-yellow:focus,.hover-bg-light-yellow:hover{background-color:#fbf1a9}.hover-bg-purple:focus,.hover-bg-purple:hover{background-color:#5e2ca5}.hover-bg-light-purple:focus,.hover-bg-light-purple:hover{background-color:#a463f2}.hover-bg-dark-pink:focus,.hover-bg-dark-pink:hover{background-color:#d5008f}.hover-bg-hot-pink:focus,.hover-bg-hot-pink:hover{background-color:#ff41b4}.hover-bg-pink:focus,.hover-bg-pink:hover{background-color:#ff80cc}.hover-bg-light-pink:focus,.hover-bg-light-pink:hover{background-color:#ffa3d7}.hover-bg-dark-green:focus,.hover-bg-dark-green:hover{background-color:#137752}.hover-bg-green:focus,.hover-bg-green:hover{background-color:#19a974}.hover-bg-light-green:focus,.hover-bg-light-green:hover{background-color:#9eebcf}.hover-bg-navy:focus,.hover-bg-navy:hover{background-color:#001b44}.hover-bg-dark-blue:focus,.hover-bg-dark-blue:hover{background-color:#00449e}.hover-bg-blue:focus,.hover-bg-blue:hover{background-color:#357edd}.hover-bg-light-blue:focus,.hover-bg-light-blue:hover{background-color:#96ccff}.hover-bg-lightest-blue:focus,.hover-bg-lightest-blue:hover{background-color:#cdecff}.hover-bg-washed-blue:focus,.hover-bg-washed-blue:hover{background-color:#f6fffe}.hover-bg-washed-green:focus,.hover-bg-washed-green:hover{background-color:#e8fdf5}.hover-bg-washed-yellow:focus,.hover-bg-washed-yellow:hover{background-color:#fffceb}.hover-bg-washed-red:focus,.hover-bg-washed-red:hover{background-color:#ffdfdf}.hover-bg-inherit:focus,.hover-bg-inherit:hover{background-color:inherit}.pa0{padding:0}.pa1{padding:.25rem}.pa2{padding:.5rem}.pa3{padding:1rem}.pa4{padding:2rem}.pa5{padding:4rem}.pa6{padding:8rem}.pa7{padding:16rem}.pl0{padding-left:0}.pl1{padding-left:.25rem}.pl2{padding-left:.5rem}.pl3{padding-left:1rem}.pl4{padding-left:2rem}.pl5{padding-left:4rem}.pl6{padding-left:8rem}.pl7{padding-left:16rem}.pr0{padding-right:0}.pr1{padding-right:.25rem}.pr2{padding-right:.5rem}.pr3{padding-right:1rem}.pr4{padding-right:2rem}.pr5{padding-right:4rem}.pr6{padding-right:8rem}.pr7{padding-right:16rem}.pb0{padding-bottom:0}.pb1{padding-bottom:.25rem}.pb2{padding-bottom:.5rem}.pb3{padding-bottom:1rem}.pb4{padding-bottom:2rem}.pb5{padding-bottom:4rem}.pb6{padding-bottom:8rem}.pb7{padding-bottom:16rem}.pt0{padding-top:0}.pt1{padding-top:.25rem}.pt2{padding-top:.5rem}.pt3{padding-top:1rem}.pt4{padding-top:2rem}.pt5{padding-top:4rem}.pt6{padding-top:8rem}.pt7{padding-top:16rem}.pv0{padding-top:0;padding-bottom:0}.pv1{padding-top:.25rem;padding-bottom:.25rem}.pv2{padding-top:.5rem;padding-bottom:.5rem}.pv3{padding-top:1rem;padding-bottom:1rem}.pv4{padding-top:2rem;padding-bottom:2rem}.pv5{padding-top:4rem;padding-bottom:4rem}.pv6{padding-top:8rem;padding-bottom:8rem}.pv7{padding-top:16rem;padding-bottom:16rem}.ph0{padding-left:0;padding-right:0}.ph1{padding-left:.25rem;padding-right:.25rem}.ph2{padding-left:.5rem;padding-right:.5rem}.ph3{padding-left:1rem;padding-right:1rem}.ph4{padding-left:2rem;padding-right:2rem}.ph5{padding-left:4rem;padding-right:4rem}.ph6{padding-left:8rem;padding-right:8rem}.ph7{padding-left:16rem;padding-right:16rem}.ma0{margin:0}.ma1{margin:.25rem}.ma2{margin:.5rem}.ma3{margin:1rem}.ma4{margin:2rem}.ma5{margin:4rem}.ma6{margin:8rem}.ma7{margin:16rem}.ml0{margin-left:0}.ml1{margin-left:.25rem}.ml2{margin-left:.5rem}.ml3{margin-left:1rem}.ml4{margin-left:2rem}.ml5{margin-left:4rem}.ml6{margin-left:8rem}.ml7{margin-left:16rem}.mr0{margin-right:0}.mr1{margin-right:.25rem}.mr2{margin-right:.5rem}.mr3{margin-right:1rem}.mr4{margin-right:2rem}.mr5{margin-right:4rem}.mr6{margin-right:8rem}.mr7{margin-right:16rem}.mb0{margin-bottom:0}.mb1{margin-bottom:.25rem}.mb2{margin-bottom:.5rem}.mb3{margin-bottom:1rem}.mb4{margin-bottom:2rem}.mb5{margin-bottom:4rem}.mb6{margin-bottom:8rem}.mb7{margin-bottom:16rem}.mt0{margin-top:0}.mt1{margin-top:.25rem}.mt2{margin-top:.5rem}.mt3{margin-top:1rem}.mt4{margin-top:2rem}.mt5{margin-top:4rem}.mt6{margin-top:8rem}.mt7{margin-top:16rem}.mv0{margin-top:0;margin-bottom:0}.mv1{margin-top:.25rem;margin-bottom:.25rem}.mv2{margin-top:.5rem;margin-bottom:.5rem}.mv3{margin-top:1rem;margin-bottom:1rem}.mv4{margin-top:2rem;margin-bottom:2rem}.mv5{margin-top:4rem;margin-bottom:4rem}.mv6{margin-top:8rem;margin-bottom:8rem}.mv7{margin-top:16rem;margin-bottom:16rem}.mh0{margin-left:0;margin-right:0}.mh1{margin-left:.25rem;margin-right:.25rem}.mh2{margin-left:.5rem;margin-right:.5rem}.mh3{margin-left:1rem;margin-right:1rem}.mh4{margin-left:2rem;margin-right:2rem}.mh5{margin-left:4rem;margin-right:4rem}.mh6{margin-left:8rem;margin-right:8rem}.mh7{margin-left:16rem;margin-right:16rem}.na1{margin:-.25rem}.na2{margin:-.5rem}.na3{margin:-1rem}.na4{margin:-2rem}.na5{margin:-4rem}.na6{margin:-8rem}.na7{margin:-16rem}.nl1{margin-left:-.25rem}.nl2{margin-left:-.5rem}.nl3{margin-left:-1rem}.nl4{margin-left:-2rem}.nl5{margin-left:-4rem}.nl6{margin-left:-8rem}.nl7{margin-left:-16rem}.nr1{margin-right:-.25rem}.nr2{margin-right:-.5rem}.nr3{margin-right:-1rem}.nr4{margin-right:-2rem}.nr5{margin-right:-4rem}.nr6{margin-right:-8rem}.nr7{margin-right:-16rem}.nb1{margin-bottom:-.25rem}.nb2{margin-bottom:-.5rem}.nb3{margin-bottom:-1rem}.nb4{margin-bottom:-2rem}.nb5{margin-bottom:-4rem}.nb6{margin-bottom:-8rem}.nb7{margin-bottom:-16rem}.nt1{margin-top:-.25rem}.nt2{margin-top:-.5rem}.nt3{margin-top:-1rem}.nt4{margin-top:-2rem}.nt5{margin-top:-4rem}.nt6{margin-top:-8rem}.nt7{margin-top:-16rem}.collapse{border-collapse:collapse;border-spacing:0}.striped--light-silver:nth-child(odd){background-color:#aaa}.striped--moon-gray:nth-child(odd){background-color:#ccc}.striped--light-gray:nth-child(odd){background-color:#eee}.striped--near-white:nth-child(odd){background-color:#f4f4f4}.stripe-light:nth-child(odd){background-color:rgba(255,255,255,.1)}.stripe-dark:nth-child(odd){background-color:rgba(0,0,0,.1)}.strike{text-decoration:line-through}.underline{text-decoration:underline}.no-underline{text-decoration:none}.tl{text-align:left}.tr{text-align:right}.tc{text-align:center}.tj{text-align:justify}.ttc{text-transform:capitalize}.ttl{text-transform:lowercase}.ttu{text-transform:uppercase}.ttn{text-transform:none}.f-6,.f-headline{font-size:6rem}.f-5,.f-subheadline{font-size:5rem}.f1{font-size:3rem}.f2{font-size:2.25rem}.f3{font-size:1.5rem}.f4{font-size:1.25rem}.f5{font-size:1rem}.f6{font-size:.875rem}.f7{font-size:.75rem}.measure{max-width:30em}.measure-wide{max-width:34em}.measure-narrow{max-width:20em}.indent{text-indent:1em;margin-top:0;margin-bottom:0}.small-caps{font-variant:small-caps}.truncate{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.overflow-container{overflow-y:scroll}.center{margin-left:auto}.center,.mr-auto{margin-right:auto}.ml-auto{margin-left:auto}.clip{position:fixed!important;_position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.ws-normal{white-space:normal}.nowrap{white-space:nowrap}.pre{white-space:pre}.v-base{vertical-align:baseline}.v-mid{vertical-align:middle}.v-top{vertical-align:top}.v-btm{vertical-align:bottom}.dim{opacity:1}.dim,.dim:focus,.dim:hover{transition:opacity .15s ease-in}.dim:focus,.dim:hover{opacity:.5}.dim:active{opacity:.8;transition:opacity .15s ease-out}.glow,.glow:focus,.glow:hover{transition:opacity .15s ease-in}.glow:focus,.glow:hover{opacity:1}.hide-child .child{opacity:0;transition:opacity .15s ease-in}.hide-child:active .child,.hide-child:focus .child,.hide-child:hover .child{opacity:1;transition:opacity .15s ease-in}.underline-hover:focus,.underline-hover:hover{text-decoration:underline}.grow{-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);transition:-webkit-transform .25s ease-out;transition:transform .25s ease-out;transition:transform .25s ease-out,-webkit-transform .25s ease-out}.grow:focus,.grow:hover{-webkit-transform:scale(1.05);transform:scale(1.05)}.grow:active{-webkit-transform:scale(.9);transform:scale(.9)}.grow-large{-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);transition:-webkit-transform .25s ease-in-out;transition:transform .25s ease-in-out;transition:transform .25s ease-in-out,-webkit-transform .25s ease-in-out}.grow-large:focus,.grow-large:hover{-webkit-transform:scale(1.2);transform:scale(1.2)}.grow-large:active{-webkit-transform:scale(.95);transform:scale(.95)}.pointer:hover,.shadow-hover{cursor:pointer}.shadow-hover{position:relative;transition:all .5s cubic-bezier(.165,.84,.44,1)}.shadow-hover:after{content:"";box-shadow:0 0 16px 2px rgba(0,0,0,.2);border-radius:inherit;opacity:0;position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;transition:opacity .5s cubic-bezier(.165,.84,.44,1)}.shadow-hover:focus:after,.shadow-hover:hover:after{opacity:1}.bg-animate,.bg-animate:focus,.bg-animate:hover{transition:background-color .15s ease-in-out}.z-0{z-index:0}.z-1{z-index:1}.z-2{z-index:2}.z-3{z-index:3}.z-4{z-index:4}.z-5{z-index:5}.z-999{z-index:999}.z-9999{z-index:9999}.z-max{z-index:2147483647}.z-inherit{z-index:inherit}.z-initial{z-index:auto}.z-unset{z-index:unset}.nested-copy-line-height ol,.nested-copy-line-height p,.nested-copy-line-height ul{line-height:1.5}.nested-headline-line-height h1,.nested-headline-line-height h2,.nested-headline-line-height h3,.nested-headline-line-height h4,.nested-headline-line-height h5,.nested-headline-line-height h6{line-height:1.25}.nested-list-reset ol,.nested-list-reset ul{padding-left:0;margin-left:0;list-style-type:none}.nested-copy-indent p+p{text-indent:1em;margin-top:0;margin-bottom:0}.nested-copy-separator p+p{margin-top:1.5em}.nested-img img{width:100%;max-width:100%;display:block}.nested-links a{color:#357edd;transition:color .15s ease-in}.nested-links a:focus,.nested-links a:hover{color:#96ccff;transition:color .15s ease-in}.debug *{outline:1px solid gold}.debug-white *{outline:1px solid #fff}.debug-black *{outline:1px solid #000}.debug-grid{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAFElEQVR4AWPAC97/9x0eCsAEPgwAVLshdpENIxcAAAAASUVORK5CYII=)repeat}.debug-grid-16{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMklEQVR4AWOgCLz/b0epAa6UGuBOqQHOQHLUgFEDnAbcBZ4UGwDOkiCnkIhdgNgNxAYAiYlD+8sEuo8AAAAASUVORK5CYII=)repeat}.debug-grid-8-solid{background:#fff url(data:image/gif;base64,R0lGODdhCAAIAPEAAADw/wDx/////wAAACwAAAAACAAIAAACDZQvgaeb/lxbAIKA8y0AOw==)repeat}.debug-grid-16-solid{background:#fff url(data:image/gif;base64,R0lGODdhEAAQAPEAAADw/wDx/xXy/////ywAAAAAEAAQAAACIZyPKckYDQFsb6ZqD85jZ2+BkwiRFKehhqQCQgDHcgwEBQA7)repeat}@media screen and (min-width:30em){.aspect-ratio-ns{height:0;position:relative}.aspect-ratio--16x9-ns{padding-bottom:56.25%}.aspect-ratio--9x16-ns{padding-bottom:177.77%}.aspect-ratio--4x3-ns{padding-bottom:75%}.aspect-ratio--3x4-ns{padding-bottom:133.33%}.aspect-ratio--6x4-ns{padding-bottom:66.6%}.aspect-ratio--4x6-ns{padding-bottom:150%}.aspect-ratio--8x5-ns{padding-bottom:62.5%}.aspect-ratio--5x8-ns{padding-bottom:160%}.aspect-ratio--7x5-ns{padding-bottom:71.42%}.aspect-ratio--5x7-ns{padding-bottom:140%}.aspect-ratio--1x1-ns{padding-bottom:100%}.aspect-ratio--object-ns{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:100}.cover-ns{background-size:cover!important}.contain-ns{background-size:contain!important}.bg-center-ns{background-position:50%}.bg-center-ns,.bg-top-ns{background-repeat:no-repeat}.bg-top-ns{background-position:top}.bg-right-ns{background-position:100%}.bg-bottom-ns,.bg-right-ns{background-repeat:no-repeat}.bg-bottom-ns{background-position:bottom}.bg-left-ns{background-repeat:no-repeat;background-position:0}.outline-ns{outline:1px solid}.outline-transparent-ns{outline:1px solid transparent}.outline-0-ns{outline:0}.ba-ns{border-style:solid;border-width:1px}.bt-ns{border-top-style:solid;border-top-width:1px}.br-ns{border-right-style:solid;border-right-width:1px}.bb-ns{border-bottom-style:solid;border-bottom-width:1px}.bl-ns{border-left-style:solid;border-left-width:1px}.bn-ns{border-style:none;border-width:0}.br0-ns{border-radius:0}.br1-ns{border-radius:.125rem}.br2-ns{border-radius:.25rem}.br3-ns{border-radius:.5rem}.br4-ns{border-radius:1rem}.br-100-ns{border-radius:100%}.br-pill-ns{border-radius:9999px}.br--bottom-ns{border-top-left-radius:0;border-top-right-radius:0}.br--top-ns{border-bottom-right-radius:0}.br--right-ns,.br--top-ns{border-bottom-left-radius:0}.br--right-ns{border-top-left-radius:0}.br--left-ns{border-top-right-radius:0;border-bottom-right-radius:0}.br-inherit-ns{border-radius:inherit}.br-initial-ns{border-radius:initial}.br-unset-ns{border-radius:unset}.b--dotted-ns{border-style:dotted}.b--dashed-ns{border-style:dashed}.b--solid-ns{border-style:solid}.b--none-ns{border-style:none}.bw0-ns{border-width:0}.bw1-ns{border-width:.125rem}.bw2-ns{border-width:.25rem}.bw3-ns{border-width:.5rem}.bw4-ns{border-width:1rem}.bw5-ns{border-width:2rem}.bt-0-ns{border-top-width:0}.br-0-ns{border-right-width:0}.bb-0-ns{border-bottom-width:0}.bl-0-ns{border-left-width:0}.shadow-1-ns{box-shadow:0 0 4px 2px rgba(0,0,0,.2)}.shadow-2-ns{box-shadow:0 0 8px 2px rgba(0,0,0,.2)}.shadow-3-ns{box-shadow:2px 2px 4px 2px rgba(0,0,0,.2)}.shadow-4-ns{box-shadow:2px 2px 8px rgba(0,0,0,.2)}.shadow-5-ns{box-shadow:4px 4px 8px rgba(0,0,0,.2)}.top-0-ns{top:0}.left-0-ns{left:0}.right-0-ns{right:0}.bottom-0-ns{bottom:0}.top-1-ns{top:1rem}.left-1-ns{left:1rem}.right-1-ns{right:1rem}.bottom-1-ns{bottom:1rem}.top-2-ns{top:2rem}.left-2-ns{left:2rem}.right-2-ns{right:2rem}.bottom-2-ns{bottom:2rem}.top--1-ns{top:-1rem}.right--1-ns{right:-1rem}.bottom--1-ns{bottom:-1rem}.left--1-ns{left:-1rem}.top--2-ns{top:-2rem}.right--2-ns{right:-2rem}.bottom--2-ns{bottom:-2rem}.left--2-ns{left:-2rem}.absolute--fill-ns{top:0;right:0;bottom:0;left:0}.cl-ns{clear:left}.cr-ns{clear:right}.cb-ns{clear:both}.cn-ns{clear:none}.dn-ns{display:none}.di-ns{display:inline}.db-ns{display:block}.dib-ns{display:inline-block}.dit-ns{display:inline-table}.dt-ns{display:table}.dtc-ns{display:table-cell}.dt-row-ns{display:table-row}.dt-row-group-ns{display:table-row-group}.dt-column-ns{display:table-column}.dt-column-group-ns{display:table-column-group}.dt--fixed-ns{table-layout:fixed;width:100%}.flex-ns{display:flex}.inline-flex-ns{display:inline-flex}.flex-auto-ns{flex:auto;min-width:0;min-height:0}.flex-none-ns{flex:none}.flex-column-ns{flex-direction:column}.flex-row-ns{flex-direction:row}.flex-wrap-ns{flex-wrap:wrap}.flex-nowrap-ns{flex-wrap:nowrap}.flex-wrap-reverse-ns{flex-wrap:wrap-reverse}.flex-column-reverse-ns{flex-direction:column-reverse}.flex-row-reverse-ns{flex-direction:row-reverse}.items-start-ns{align-items:flex-start}.items-end-ns{align-items:flex-end}.items-center-ns{align-items:center}.items-baseline-ns{align-items:baseline}.items-stretch-ns{align-items:stretch}.self-start-ns{align-self:flex-start}.self-end-ns{align-self:flex-end}.self-center-ns{align-self:center}.self-baseline-ns{align-self:baseline}.self-stretch-ns{align-self:stretch}.justify-start-ns{justify-content:flex-start}.justify-end-ns{justify-content:flex-end}.justify-center-ns{justify-content:center}.justify-between-ns{justify-content:space-between}.justify-around-ns{justify-content:space-around}.content-start-ns{align-content:flex-start}.content-end-ns{align-content:flex-end}.content-center-ns{align-content:center}.content-between-ns{align-content:space-between}.content-around-ns{align-content:space-around}.content-stretch-ns{align-content:stretch}.order-0-ns{order:0}.order-1-ns{order:1}.order-2-ns{order:2}.order-3-ns{order:3}.order-4-ns{order:4}.order-5-ns{order:5}.order-6-ns{order:6}.order-7-ns{order:7}.order-8-ns{order:8}.order-last-ns{order:99999}.flex-grow-0-ns{flex-grow:0}.flex-grow-1-ns{flex-grow:1}.flex-shrink-0-ns{flex-shrink:0}.flex-shrink-1-ns{flex-shrink:1}.fl-ns{float:left}.fl-ns,.fr-ns{_display:inline}.fr-ns{float:right}.fn-ns{float:none}.i-ns{font-style:italic}.fs-normal-ns{font-style:normal}.normal-ns{font-weight:400}.b-ns{font-weight:700}.fw1-ns{font-weight:100}.fw2-ns{font-weight:200}.fw3-ns{font-weight:300}.fw4-ns{font-weight:400}.fw5-ns{font-weight:500}.fw6-ns{font-weight:600}.fw7-ns{font-weight:700}.fw8-ns{font-weight:800}.fw9-ns{font-weight:900}.h1-ns{height:1rem}.h2-ns{height:2rem}.h3-ns{height:4rem}.h4-ns{height:8rem}.h5-ns{height:16rem}.h-25-ns{height:25%}.h-50-ns{height:50%}.h-75-ns{height:75%}.h-100-ns{height:100%}.min-h-100-ns{min-height:100%}.vh-25-ns{height:25vh}.vh-50-ns{height:50vh}.vh-75-ns{height:75vh}.vh-100-ns{height:100vh}.min-vh-100-ns{min-height:100vh}.h-auto-ns{height:auto}.h-inherit-ns{height:inherit}.tracked-ns{letter-spacing:.1em}.tracked-tight-ns{letter-spacing:-.05em}.tracked-mega-ns{letter-spacing:.25em}.lh-solid-ns{line-height:1}.lh-title-ns{line-height:1.25}.lh-copy-ns{line-height:1.5}.mw-100-ns{max-width:100%}.mw1-ns{max-width:1rem}.mw2-ns{max-width:2rem}.mw3-ns{max-width:4rem}.mw4-ns{max-width:8rem}.mw5-ns{max-width:16rem}.mw6-ns{max-width:32rem}.mw7-ns{max-width:48rem}.mw8-ns{max-width:64rem}.mw9-ns{max-width:96rem}.mw-none-ns{max-width:none}.w1-ns{width:1rem}.w2-ns{width:2rem}.w3-ns{width:4rem}.w4-ns{width:8rem}.w5-ns{width:16rem}.w-10-ns{width:10%}.w-20-ns{width:20%}.w-25-ns{width:25%}.w-30-ns{width:30%}.w-33-ns{width:33%}.w-34-ns{width:34%}.w-40-ns{width:40%}.w-50-ns{width:50%}.w-60-ns{width:60%}.w-70-ns{width:70%}.w-75-ns{width:75%}.w-80-ns{width:80%}.w-90-ns{width:90%}.w-100-ns{width:100%}.w-third-ns{width:33.33333%}.w-two-thirds-ns{width:66.66667%}.w-auto-ns{width:auto}.overflow-visible-ns{overflow:visible}.overflow-hidden-ns{overflow:hidden}.overflow-scroll-ns{overflow:scroll}.overflow-auto-ns{overflow:auto}.overflow-x-visible-ns{overflow-x:visible}.overflow-x-hidden-ns{overflow-x:hidden}.overflow-x-scroll-ns{overflow-x:scroll}.overflow-x-auto-ns{overflow-x:auto}.overflow-y-visible-ns{overflow-y:visible}.overflow-y-hidden-ns{overflow-y:hidden}.overflow-y-scroll-ns{overflow-y:scroll}.overflow-y-auto-ns{overflow-y:auto}.static-ns{position:static}.relative-ns{position:relative}.absolute-ns{position:absolute}.fixed-ns{position:fixed}.rotate-45-ns{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rotate-90-ns{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate-135-ns{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.rotate-180-ns{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate-225-ns{-webkit-transform:rotate(225deg);transform:rotate(225deg)}.rotate-270-ns{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.rotate-315-ns{-webkit-transform:rotate(315deg);transform:rotate(315deg)}.pa0-ns{padding:0}.pa1-ns{padding:.25rem}.pa2-ns{padding:.5rem}.pa3-ns{padding:1rem}.pa4-ns{padding:2rem}.pa5-ns{padding:4rem}.pa6-ns{padding:8rem}.pa7-ns{padding:16rem}.pl0-ns{padding-left:0}.pl1-ns{padding-left:.25rem}.pl2-ns{padding-left:.5rem}.pl3-ns{padding-left:1rem}.pl4-ns{padding-left:2rem}.pl5-ns{padding-left:4rem}.pl6-ns{padding-left:8rem}.pl7-ns{padding-left:16rem}.pr0-ns{padding-right:0}.pr1-ns{padding-right:.25rem}.pr2-ns{padding-right:.5rem}.pr3-ns{padding-right:1rem}.pr4-ns{padding-right:2rem}.pr5-ns{padding-right:4rem}.pr6-ns{padding-right:8rem}.pr7-ns{padding-right:16rem}.pb0-ns{padding-bottom:0}.pb1-ns{padding-bottom:.25rem}.pb2-ns{padding-bottom:.5rem}.pb3-ns{padding-bottom:1rem}.pb4-ns{padding-bottom:2rem}.pb5-ns{padding-bottom:4rem}.pb6-ns{padding-bottom:8rem}.pb7-ns{padding-bottom:16rem}.pt0-ns{padding-top:0}.pt1-ns{padding-top:.25rem}.pt2-ns{padding-top:.5rem}.pt3-ns{padding-top:1rem}.pt4-ns{padding-top:2rem}.pt5-ns{padding-top:4rem}.pt6-ns{padding-top:8rem}.pt7-ns{padding-top:16rem}.pv0-ns{padding-top:0;padding-bottom:0}.pv1-ns{padding-top:.25rem;padding-bottom:.25rem}.pv2-ns{padding-top:.5rem;padding-bottom:.5rem}.pv3-ns{padding-top:1rem;padding-bottom:1rem}.pv4-ns{padding-top:2rem;padding-bottom:2rem}.pv5-ns{padding-top:4rem;padding-bottom:4rem}.pv6-ns{padding-top:8rem;padding-bottom:8rem}.pv7-ns{padding-top:16rem;padding-bottom:16rem}.ph0-ns{padding-left:0;padding-right:0}.ph1-ns{padding-left:.25rem;padding-right:.25rem}.ph2-ns{padding-left:.5rem;padding-right:.5rem}.ph3-ns{padding-left:1rem;padding-right:1rem}.ph4-ns{padding-left:2rem;padding-right:2rem}.ph5-ns{padding-left:4rem;padding-right:4rem}.ph6-ns{padding-left:8rem;padding-right:8rem}.ph7-ns{padding-left:16rem;padding-right:16rem}.ma0-ns{margin:0}.ma1-ns{margin:.25rem}.ma2-ns{margin:.5rem}.ma3-ns{margin:1rem}.ma4-ns{margin:2rem}.ma5-ns{margin:4rem}.ma6-ns{margin:8rem}.ma7-ns{margin:16rem}.ml0-ns{margin-left:0}.ml1-ns{margin-left:.25rem}.ml2-ns{margin-left:.5rem}.ml3-ns{margin-left:1rem}.ml4-ns{margin-left:2rem}.ml5-ns{margin-left:4rem}.ml6-ns{margin-left:8rem}.ml7-ns{margin-left:16rem}.mr0-ns{margin-right:0}.mr1-ns{margin-right:.25rem}.mr2-ns{margin-right:.5rem}.mr3-ns{margin-right:1rem}.mr4-ns{margin-right:2rem}.mr5-ns{margin-right:4rem}.mr6-ns{margin-right:8rem}.mr7-ns{margin-right:16rem}.mb0-ns{margin-bottom:0}.mb1-ns{margin-bottom:.25rem}.mb2-ns{margin-bottom:.5rem}.mb3-ns{margin-bottom:1rem}.mb4-ns{margin-bottom:2rem}.mb5-ns{margin-bottom:4rem}.mb6-ns{margin-bottom:8rem}.mb7-ns{margin-bottom:16rem}.mt0-ns{margin-top:0}.mt1-ns{margin-top:.25rem}.mt2-ns{margin-top:.5rem}.mt3-ns{margin-top:1rem}.mt4-ns{margin-top:2rem}.mt5-ns{margin-top:4rem}.mt6-ns{margin-top:8rem}.mt7-ns{margin-top:16rem}.mv0-ns{margin-top:0;margin-bottom:0}.mv1-ns{margin-top:.25rem;margin-bottom:.25rem}.mv2-ns{margin-top:.5rem;margin-bottom:.5rem}.mv3-ns{margin-top:1rem;margin-bottom:1rem}.mv4-ns{margin-top:2rem;margin-bottom:2rem}.mv5-ns{margin-top:4rem;margin-bottom:4rem}.mv6-ns{margin-top:8rem;margin-bottom:8rem}.mv7-ns{margin-top:16rem;margin-bottom:16rem}.mh0-ns{margin-left:0;margin-right:0}.mh1-ns{margin-left:.25rem;margin-right:.25rem}.mh2-ns{margin-left:.5rem;margin-right:.5rem}.mh3-ns{margin-left:1rem;margin-right:1rem}.mh4-ns{margin-left:2rem;margin-right:2rem}.mh5-ns{margin-left:4rem;margin-right:4rem}.mh6-ns{margin-left:8rem;margin-right:8rem}.mh7-ns{margin-left:16rem;margin-right:16rem}.na1-ns{margin:-.25rem}.na2-ns{margin:-.5rem}.na3-ns{margin:-1rem}.na4-ns{margin:-2rem}.na5-ns{margin:-4rem}.na6-ns{margin:-8rem}.na7-ns{margin:-16rem}.nl1-ns{margin-left:-.25rem}.nl2-ns{margin-left:-.5rem}.nl3-ns{margin-left:-1rem}.nl4-ns{margin-left:-2rem}.nl5-ns{margin-left:-4rem}.nl6-ns{margin-left:-8rem}.nl7-ns{margin-left:-16rem}.nr1-ns{margin-right:-.25rem}.nr2-ns{margin-right:-.5rem}.nr3-ns{margin-right:-1rem}.nr4-ns{margin-right:-2rem}.nr5-ns{margin-right:-4rem}.nr6-ns{margin-right:-8rem}.nr7-ns{margin-right:-16rem}.nb1-ns{margin-bottom:-.25rem}.nb2-ns{margin-bottom:-.5rem}.nb3-ns{margin-bottom:-1rem}.nb4-ns{margin-bottom:-2rem}.nb5-ns{margin-bottom:-4rem}.nb6-ns{margin-bottom:-8rem}.nb7-ns{margin-bottom:-16rem}.nt1-ns{margin-top:-.25rem}.nt2-ns{margin-top:-.5rem}.nt3-ns{margin-top:-1rem}.nt4-ns{margin-top:-2rem}.nt5-ns{margin-top:-4rem}.nt6-ns{margin-top:-8rem}.nt7-ns{margin-top:-16rem}.strike-ns{text-decoration:line-through}.underline-ns{text-decoration:underline}.no-underline-ns{text-decoration:none}.tl-ns{text-align:left}.tr-ns{text-align:right}.tc-ns{text-align:center}.tj-ns{text-align:justify}.ttc-ns{text-transform:capitalize}.ttl-ns{text-transform:lowercase}.ttu-ns{text-transform:uppercase}.ttn-ns{text-transform:none}.f-6-ns,.f-headline-ns{font-size:6rem}.f-5-ns,.f-subheadline-ns{font-size:5rem}.f1-ns{font-size:3rem}.f2-ns{font-size:2.25rem}.f3-ns{font-size:1.5rem}.f4-ns{font-size:1.25rem}.f5-ns{font-size:1rem}.f6-ns{font-size:.875rem}.f7-ns{font-size:.75rem}.measure-ns{max-width:30em}.measure-wide-ns{max-width:34em}.measure-narrow-ns{max-width:20em}.indent-ns{text-indent:1em;margin-top:0;margin-bottom:0}.small-caps-ns{font-variant:small-caps}.truncate-ns{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.center-ns{margin-left:auto}.center-ns,.mr-auto-ns{margin-right:auto}.ml-auto-ns{margin-left:auto}.clip-ns{position:fixed!important;_position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.ws-normal-ns{white-space:normal}.nowrap-ns{white-space:nowrap}.pre-ns{white-space:pre}.v-base-ns{vertical-align:baseline}.v-mid-ns{vertical-align:middle}.v-top-ns{vertical-align:top}.v-btm-ns{vertical-align:bottom}}@media screen and (min-width:30em) and (max-width:60em){.aspect-ratio-m{height:0;position:relative}.aspect-ratio--16x9-m{padding-bottom:56.25%}.aspect-ratio--9x16-m{padding-bottom:177.77%}.aspect-ratio--4x3-m{padding-bottom:75%}.aspect-ratio--3x4-m{padding-bottom:133.33%}.aspect-ratio--6x4-m{padding-bottom:66.6%}.aspect-ratio--4x6-m{padding-bottom:150%}.aspect-ratio--8x5-m{padding-bottom:62.5%}.aspect-ratio--5x8-m{padding-bottom:160%}.aspect-ratio--7x5-m{padding-bottom:71.42%}.aspect-ratio--5x7-m{padding-bottom:140%}.aspect-ratio--1x1-m{padding-bottom:100%}.aspect-ratio--object-m{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:100}.cover-m{background-size:cover!important}.contain-m{background-size:contain!important}.bg-center-m{background-position:50%}.bg-center-m,.bg-top-m{background-repeat:no-repeat}.bg-top-m{background-position:top}.bg-right-m{background-position:100%}.bg-bottom-m,.bg-right-m{background-repeat:no-repeat}.bg-bottom-m{background-position:bottom}.bg-left-m{background-repeat:no-repeat;background-position:0}.outline-m{outline:1px solid}.outline-transparent-m{outline:1px solid transparent}.outline-0-m{outline:0}.ba-m{border-style:solid;border-width:1px}.bt-m{border-top-style:solid;border-top-width:1px}.br-m{border-right-style:solid;border-right-width:1px}.bb-m{border-bottom-style:solid;border-bottom-width:1px}.bl-m{border-left-style:solid;border-left-width:1px}.bn-m{border-style:none;border-width:0}.br0-m{border-radius:0}.br1-m{border-radius:.125rem}.br2-m{border-radius:.25rem}.br3-m{border-radius:.5rem}.br4-m{border-radius:1rem}.br-100-m{border-radius:100%}.br-pill-m{border-radius:9999px}.br--bottom-m{border-top-left-radius:0;border-top-right-radius:0}.br--top-m{border-bottom-right-radius:0}.br--right-m,.br--top-m{border-bottom-left-radius:0}.br--right-m{border-top-left-radius:0}.br--left-m{border-top-right-radius:0;border-bottom-right-radius:0}.br-inherit-m{border-radius:inherit}.br-initial-m{border-radius:initial}.br-unset-m{border-radius:unset}.b--dotted-m{border-style:dotted}.b--dashed-m{border-style:dashed}.b--solid-m{border-style:solid}.b--none-m{border-style:none}.bw0-m{border-width:0}.bw1-m{border-width:.125rem}.bw2-m{border-width:.25rem}.bw3-m{border-width:.5rem}.bw4-m{border-width:1rem}.bw5-m{border-width:2rem}.bt-0-m{border-top-width:0}.br-0-m{border-right-width:0}.bb-0-m{border-bottom-width:0}.bl-0-m{border-left-width:0}.shadow-1-m{box-shadow:0 0 4px 2px rgba(0,0,0,.2)}.shadow-2-m{box-shadow:0 0 8px 2px rgba(0,0,0,.2)}.shadow-3-m{box-shadow:2px 2px 4px 2px rgba(0,0,0,.2)}.shadow-4-m{box-shadow:2px 2px 8px rgba(0,0,0,.2)}.shadow-5-m{box-shadow:4px 4px 8px rgba(0,0,0,.2)}.top-0-m{top:0}.left-0-m{left:0}.right-0-m{right:0}.bottom-0-m{bottom:0}.top-1-m{top:1rem}.left-1-m{left:1rem}.right-1-m{right:1rem}.bottom-1-m{bottom:1rem}.top-2-m{top:2rem}.left-2-m{left:2rem}.right-2-m{right:2rem}.bottom-2-m{bottom:2rem}.top--1-m{top:-1rem}.right--1-m{right:-1rem}.bottom--1-m{bottom:-1rem}.left--1-m{left:-1rem}.top--2-m{top:-2rem}.right--2-m{right:-2rem}.bottom--2-m{bottom:-2rem}.left--2-m{left:-2rem}.absolute--fill-m{top:0;right:0;bottom:0;left:0}.cl-m{clear:left}.cr-m{clear:right}.cb-m{clear:both}.cn-m{clear:none}.dn-m{display:none}.di-m{display:inline}.db-m{display:block}.dib-m{display:inline-block}.dit-m{display:inline-table}.dt-m{display:table}.dtc-m{display:table-cell}.dt-row-m{display:table-row}.dt-row-group-m{display:table-row-group}.dt-column-m{display:table-column}.dt-column-group-m{display:table-column-group}.dt--fixed-m{table-layout:fixed;width:100%}.flex-m{display:flex}.inline-flex-m{display:inline-flex}.flex-auto-m{flex:auto;min-width:0;min-height:0}.flex-none-m{flex:none}.flex-column-m{flex-direction:column}.flex-row-m{flex-direction:row}.flex-wrap-m{flex-wrap:wrap}.flex-nowrap-m{flex-wrap:nowrap}.flex-wrap-reverse-m{flex-wrap:wrap-reverse}.flex-column-reverse-m{flex-direction:column-reverse}.flex-row-reverse-m{flex-direction:row-reverse}.items-start-m{align-items:flex-start}.items-end-m{align-items:flex-end}.items-center-m{align-items:center}.items-baseline-m{align-items:baseline}.items-stretch-m{align-items:stretch}.self-start-m{align-self:flex-start}.self-end-m{align-self:flex-end}.self-center-m{align-self:center}.self-baseline-m{align-self:baseline}.self-stretch-m{align-self:stretch}.justify-start-m{justify-content:flex-start}.justify-end-m{justify-content:flex-end}.justify-center-m{justify-content:center}.justify-between-m{justify-content:space-between}.justify-around-m{justify-content:space-around}.content-start-m{align-content:flex-start}.content-end-m{align-content:flex-end}.content-center-m{align-content:center}.content-between-m{align-content:space-between}.content-around-m{align-content:space-around}.content-stretch-m{align-content:stretch}.order-0-m{order:0}.order-1-m{order:1}.order-2-m{order:2}.order-3-m{order:3}.order-4-m{order:4}.order-5-m{order:5}.order-6-m{order:6}.order-7-m{order:7}.order-8-m{order:8}.order-last-m{order:99999}.flex-grow-0-m{flex-grow:0}.flex-grow-1-m{flex-grow:1}.flex-shrink-0-m{flex-shrink:0}.flex-shrink-1-m{flex-shrink:1}.fl-m{float:left}.fl-m,.fr-m{_display:inline}.fr-m{float:right}.fn-m{float:none}.i-m{font-style:italic}.fs-normal-m{font-style:normal}.normal-m{font-weight:400}.b-m{font-weight:700}.fw1-m{font-weight:100}.fw2-m{font-weight:200}.fw3-m{font-weight:300}.fw4-m{font-weight:400}.fw5-m{font-weight:500}.fw6-m{font-weight:600}.fw7-m{font-weight:700}.fw8-m{font-weight:800}.fw9-m{font-weight:900}.h1-m{height:1rem}.h2-m{height:2rem}.h3-m{height:4rem}.h4-m{height:8rem}.h5-m{height:16rem}.h-25-m{height:25%}.h-50-m{height:50%}.h-75-m{height:75%}.h-100-m{height:100%}.min-h-100-m{min-height:100%}.vh-25-m{height:25vh}.vh-50-m{height:50vh}.vh-75-m{height:75vh}.vh-100-m{height:100vh}.min-vh-100-m{min-height:100vh}.h-auto-m{height:auto}.h-inherit-m{height:inherit}.tracked-m{letter-spacing:.1em}.tracked-tight-m{letter-spacing:-.05em}.tracked-mega-m{letter-spacing:.25em}.lh-solid-m{line-height:1}.lh-title-m{line-height:1.25}.lh-copy-m{line-height:1.5}.mw-100-m{max-width:100%}.mw1-m{max-width:1rem}.mw2-m{max-width:2rem}.mw3-m{max-width:4rem}.mw4-m{max-width:8rem}.mw5-m{max-width:16rem}.mw6-m{max-width:32rem}.mw7-m{max-width:48rem}.mw8-m{max-width:64rem}.mw9-m{max-width:96rem}.mw-none-m{max-width:none}.w1-m{width:1rem}.w2-m{width:2rem}.w3-m{width:4rem}.w4-m{width:8rem}.w5-m{width:16rem}.w-10-m{width:10%}.w-20-m{width:20%}.w-25-m{width:25%}.w-30-m{width:30%}.w-33-m{width:33%}.w-34-m{width:34%}.w-40-m{width:40%}.w-50-m{width:50%}.w-60-m{width:60%}.w-70-m{width:70%}.w-75-m{width:75%}.w-80-m{width:80%}.w-90-m{width:90%}.w-100-m{width:100%}.w-third-m{width:33.33333%}.w-two-thirds-m{width:66.66667%}.w-auto-m{width:auto}.overflow-visible-m{overflow:visible}.overflow-hidden-m{overflow:hidden}.overflow-scroll-m{overflow:scroll}.overflow-auto-m{overflow:auto}.overflow-x-visible-m{overflow-x:visible}.overflow-x-hidden-m{overflow-x:hidden}.overflow-x-scroll-m{overflow-x:scroll}.overflow-x-auto-m{overflow-x:auto}.overflow-y-visible-m{overflow-y:visible}.overflow-y-hidden-m{overflow-y:hidden}.overflow-y-scroll-m{overflow-y:scroll}.overflow-y-auto-m{overflow-y:auto}.static-m{position:static}.relative-m{position:relative}.absolute-m{position:absolute}.fixed-m{position:fixed}.rotate-45-m{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rotate-90-m{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate-135-m{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.rotate-180-m{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate-225-m{-webkit-transform:rotate(225deg);transform:rotate(225deg)}.rotate-270-m{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.rotate-315-m{-webkit-transform:rotate(315deg);transform:rotate(315deg)}.pa0-m{padding:0}.pa1-m{padding:.25rem}.pa2-m{padding:.5rem}.pa3-m{padding:1rem}.pa4-m{padding:2rem}.pa5-m{padding:4rem}.pa6-m{padding:8rem}.pa7-m{padding:16rem}.pl0-m{padding-left:0}.pl1-m{padding-left:.25rem}.pl2-m{padding-left:.5rem}.pl3-m{padding-left:1rem}.pl4-m{padding-left:2rem}.pl5-m{padding-left:4rem}.pl6-m{padding-left:8rem}.pl7-m{padding-left:16rem}.pr0-m{padding-right:0}.pr1-m{padding-right:.25rem}.pr2-m{padding-right:.5rem}.pr3-m{padding-right:1rem}.pr4-m{padding-right:2rem}.pr5-m{padding-right:4rem}.pr6-m{padding-right:8rem}.pr7-m{padding-right:16rem}.pb0-m{padding-bottom:0}.pb1-m{padding-bottom:.25rem}.pb2-m{padding-bottom:.5rem}.pb3-m{padding-bottom:1rem}.pb4-m{padding-bottom:2rem}.pb5-m{padding-bottom:4rem}.pb6-m{padding-bottom:8rem}.pb7-m{padding-bottom:16rem}.pt0-m{padding-top:0}.pt1-m{padding-top:.25rem}.pt2-m{padding-top:.5rem}.pt3-m{padding-top:1rem}.pt4-m{padding-top:2rem}.pt5-m{padding-top:4rem}.pt6-m{padding-top:8rem}.pt7-m{padding-top:16rem}.pv0-m{padding-top:0;padding-bottom:0}.pv1-m{padding-top:.25rem;padding-bottom:.25rem}.pv2-m{padding-top:.5rem;padding-bottom:.5rem}.pv3-m{padding-top:1rem;padding-bottom:1rem}.pv4-m{padding-top:2rem;padding-bottom:2rem}.pv5-m{padding-top:4rem;padding-bottom:4rem}.pv6-m{padding-top:8rem;padding-bottom:8rem}.pv7-m{padding-top:16rem;padding-bottom:16rem}.ph0-m{padding-left:0;padding-right:0}.ph1-m{padding-left:.25rem;padding-right:.25rem}.ph2-m{padding-left:.5rem;padding-right:.5rem}.ph3-m{padding-left:1rem;padding-right:1rem}.ph4-m{padding-left:2rem;padding-right:2rem}.ph5-m{padding-left:4rem;padding-right:4rem}.ph6-m{padding-left:8rem;padding-right:8rem}.ph7-m{padding-left:16rem;padding-right:16rem}.ma0-m{margin:0}.ma1-m{margin:.25rem}.ma2-m{margin:.5rem}.ma3-m{margin:1rem}.ma4-m{margin:2rem}.ma5-m{margin:4rem}.ma6-m{margin:8rem}.ma7-m{margin:16rem}.ml0-m{margin-left:0}.ml1-m{margin-left:.25rem}.ml2-m{margin-left:.5rem}.ml3-m{margin-left:1rem}.ml4-m{margin-left:2rem}.ml5-m{margin-left:4rem}.ml6-m{margin-left:8rem}.ml7-m{margin-left:16rem}.mr0-m{margin-right:0}.mr1-m{margin-right:.25rem}.mr2-m{margin-right:.5rem}.mr3-m{margin-right:1rem}.mr4-m{margin-right:2rem}.mr5-m{margin-right:4rem}.mr6-m{margin-right:8rem}.mr7-m{margin-right:16rem}.mb0-m{margin-bottom:0}.mb1-m{margin-bottom:.25rem}.mb2-m{margin-bottom:.5rem}.mb3-m{margin-bottom:1rem}.mb4-m{margin-bottom:2rem}.mb5-m{margin-bottom:4rem}.mb6-m{margin-bottom:8rem}.mb7-m{margin-bottom:16rem}.mt0-m{margin-top:0}.mt1-m{margin-top:.25rem}.mt2-m{margin-top:.5rem}.mt3-m{margin-top:1rem}.mt4-m{margin-top:2rem}.mt5-m{margin-top:4rem}.mt6-m{margin-top:8rem}.mt7-m{margin-top:16rem}.mv0-m{margin-top:0;margin-bottom:0}.mv1-m{margin-top:.25rem;margin-bottom:.25rem}.mv2-m{margin-top:.5rem;margin-bottom:.5rem}.mv3-m{margin-top:1rem;margin-bottom:1rem}.mv4-m{margin-top:2rem;margin-bottom:2rem}.mv5-m{margin-top:4rem;margin-bottom:4rem}.mv6-m{margin-top:8rem;margin-bottom:8rem}.mv7-m{margin-top:16rem;margin-bottom:16rem}.mh0-m{margin-left:0;margin-right:0}.mh1-m{margin-left:.25rem;margin-right:.25rem}.mh2-m{margin-left:.5rem;margin-right:.5rem}.mh3-m{margin-left:1rem;margin-right:1rem}.mh4-m{margin-left:2rem;margin-right:2rem}.mh5-m{margin-left:4rem;margin-right:4rem}.mh6-m{margin-left:8rem;margin-right:8rem}.mh7-m{margin-left:16rem;margin-right:16rem}.na1-m{margin:-.25rem}.na2-m{margin:-.5rem}.na3-m{margin:-1rem}.na4-m{margin:-2rem}.na5-m{margin:-4rem}.na6-m{margin:-8rem}.na7-m{margin:-16rem}.nl1-m{margin-left:-.25rem}.nl2-m{margin-left:-.5rem}.nl3-m{margin-left:-1rem}.nl4-m{margin-left:-2rem}.nl5-m{margin-left:-4rem}.nl6-m{margin-left:-8rem}.nl7-m{margin-left:-16rem}.nr1-m{margin-right:-.25rem}.nr2-m{margin-right:-.5rem}.nr3-m{margin-right:-1rem}.nr4-m{margin-right:-2rem}.nr5-m{margin-right:-4rem}.nr6-m{margin-right:-8rem}.nr7-m{margin-right:-16rem}.nb1-m{margin-bottom:-.25rem}.nb2-m{margin-bottom:-.5rem}.nb3-m{margin-bottom:-1rem}.nb4-m{margin-bottom:-2rem}.nb5-m{margin-bottom:-4rem}.nb6-m{margin-bottom:-8rem}.nb7-m{margin-bottom:-16rem}.nt1-m{margin-top:-.25rem}.nt2-m{margin-top:-.5rem}.nt3-m{margin-top:-1rem}.nt4-m{margin-top:-2rem}.nt5-m{margin-top:-4rem}.nt6-m{margin-top:-8rem}.nt7-m{margin-top:-16rem}.strike-m{text-decoration:line-through}.underline-m{text-decoration:underline}.no-underline-m{text-decoration:none}.tl-m{text-align:left}.tr-m{text-align:right}.tc-m{text-align:center}.tj-m{text-align:justify}.ttc-m{text-transform:capitalize}.ttl-m{text-transform:lowercase}.ttu-m{text-transform:uppercase}.ttn-m{text-transform:none}.f-6-m,.f-headline-m{font-size:6rem}.f-5-m,.f-subheadline-m{font-size:5rem}.f1-m{font-size:3rem}.f2-m{font-size:2.25rem}.f3-m{font-size:1.5rem}.f4-m{font-size:1.25rem}.f5-m{font-size:1rem}.f6-m{font-size:.875rem}.f7-m{font-size:.75rem}.measure-m{max-width:30em}.measure-wide-m{max-width:34em}.measure-narrow-m{max-width:20em}.indent-m{text-indent:1em;margin-top:0;margin-bottom:0}.small-caps-m{font-variant:small-caps}.truncate-m{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.center-m{margin-left:auto}.center-m,.mr-auto-m{margin-right:auto}.ml-auto-m{margin-left:auto}.clip-m{position:fixed!important;_position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.ws-normal-m{white-space:normal}.nowrap-m{white-space:nowrap}.pre-m{white-space:pre}.v-base-m{vertical-align:baseline}.v-mid-m{vertical-align:middle}.v-top-m{vertical-align:top}.v-btm-m{vertical-align:bottom}}@media screen and (min-width:60em){.aspect-ratio-l{height:0;position:relative}.aspect-ratio--16x9-l{padding-bottom:56.25%}.aspect-ratio--9x16-l{padding-bottom:177.77%}.aspect-ratio--4x3-l{padding-bottom:75%}.aspect-ratio--3x4-l{padding-bottom:133.33%}.aspect-ratio--6x4-l{padding-bottom:66.6%}.aspect-ratio--4x6-l{padding-bottom:150%}.aspect-ratio--8x5-l{padding-bottom:62.5%}.aspect-ratio--5x8-l{padding-bottom:160%}.aspect-ratio--7x5-l{padding-bottom:71.42%}.aspect-ratio--5x7-l{padding-bottom:140%}.aspect-ratio--1x1-l{padding-bottom:100%}.aspect-ratio--object-l{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:100}.cover-l{background-size:cover!important}.contain-l{background-size:contain!important}.bg-center-l{background-position:50%}.bg-center-l,.bg-top-l{background-repeat:no-repeat}.bg-top-l{background-position:top}.bg-right-l{background-position:100%}.bg-bottom-l,.bg-right-l{background-repeat:no-repeat}.bg-bottom-l{background-position:bottom}.bg-left-l{background-repeat:no-repeat;background-position:0}.outline-l{outline:1px solid}.outline-transparent-l{outline:1px solid transparent}.outline-0-l{outline:0}.ba-l{border-style:solid;border-width:1px}.bt-l{border-top-style:solid;border-top-width:1px}.br-l{border-right-style:solid;border-right-width:1px}.bb-l{border-bottom-style:solid;border-bottom-width:1px}.bl-l{border-left-style:solid;border-left-width:1px}.bn-l{border-style:none;border-width:0}.br0-l{border-radius:0}.br1-l{border-radius:.125rem}.br2-l{border-radius:.25rem}.br3-l{border-radius:.5rem}.br4-l{border-radius:1rem}.br-100-l{border-radius:100%}.br-pill-l{border-radius:9999px}.br--bottom-l{border-top-left-radius:0;border-top-right-radius:0}.br--top-l{border-bottom-right-radius:0}.br--right-l,.br--top-l{border-bottom-left-radius:0}.br--right-l{border-top-left-radius:0}.br--left-l{border-top-right-radius:0;border-bottom-right-radius:0}.br-inherit-l{border-radius:inherit}.br-initial-l{border-radius:initial}.br-unset-l{border-radius:unset}.b--dotted-l{border-style:dotted}.b--dashed-l{border-style:dashed}.b--solid-l{border-style:solid}.b--none-l{border-style:none}.bw0-l{border-width:0}.bw1-l{border-width:.125rem}.bw2-l{border-width:.25rem}.bw3-l{border-width:.5rem}.bw4-l{border-width:1rem}.bw5-l{border-width:2rem}.bt-0-l{border-top-width:0}.br-0-l{border-right-width:0}.bb-0-l{border-bottom-width:0}.bl-0-l{border-left-width:0}.shadow-1-l{box-shadow:0 0 4px 2px rgba(0,0,0,.2)}.shadow-2-l{box-shadow:0 0 8px 2px rgba(0,0,0,.2)}.shadow-3-l{box-shadow:2px 2px 4px 2px rgba(0,0,0,.2)}.shadow-4-l{box-shadow:2px 2px 8px rgba(0,0,0,.2)}.shadow-5-l{box-shadow:4px 4px 8px rgba(0,0,0,.2)}.top-0-l{top:0}.left-0-l{left:0}.right-0-l{right:0}.bottom-0-l{bottom:0}.top-1-l{top:1rem}.left-1-l{left:1rem}.right-1-l{right:1rem}.bottom-1-l{bottom:1rem}.top-2-l{top:2rem}.left-2-l{left:2rem}.right-2-l{right:2rem}.bottom-2-l{bottom:2rem}.top--1-l{top:-1rem}.right--1-l{right:-1rem}.bottom--1-l{bottom:-1rem}.left--1-l{left:-1rem}.top--2-l{top:-2rem}.right--2-l{right:-2rem}.bottom--2-l{bottom:-2rem}.left--2-l{left:-2rem}.absolute--fill-l{top:0;right:0;bottom:0;left:0}.cl-l{clear:left}.cr-l{clear:right}.cb-l{clear:both}.cn-l{clear:none}.dn-l{display:none}.di-l{display:inline}.db-l{display:block}.dib-l{display:inline-block}.dit-l{display:inline-table}.dt-l{display:table}.dtc-l{display:table-cell}.dt-row-l{display:table-row}.dt-row-group-l{display:table-row-group}.dt-column-l{display:table-column}.dt-column-group-l{display:table-column-group}.dt--fixed-l{table-layout:fixed;width:100%}.flex-l{display:flex}.inline-flex-l{display:inline-flex}.flex-auto-l{flex:auto;min-width:0;min-height:0}.flex-none-l{flex:none}.flex-column-l{flex-direction:column}.flex-row-l{flex-direction:row}.flex-wrap-l{flex-wrap:wrap}.flex-nowrap-l{flex-wrap:nowrap}.flex-wrap-reverse-l{flex-wrap:wrap-reverse}.flex-column-reverse-l{flex-direction:column-reverse}.flex-row-reverse-l{flex-direction:row-reverse}.items-start-l{align-items:flex-start}.items-end-l{align-items:flex-end}.items-center-l{align-items:center}.items-baseline-l{align-items:baseline}.items-stretch-l{align-items:stretch}.self-start-l{align-self:flex-start}.self-end-l{align-self:flex-end}.self-center-l{align-self:center}.self-baseline-l{align-self:baseline}.self-stretch-l{align-self:stretch}.justify-start-l{justify-content:flex-start}.justify-end-l{justify-content:flex-end}.justify-center-l{justify-content:center}.justify-between-l{justify-content:space-between}.justify-around-l{justify-content:space-around}.content-start-l{align-content:flex-start}.content-end-l{align-content:flex-end}.content-center-l{align-content:center}.content-between-l{align-content:space-between}.content-around-l{align-content:space-around}.content-stretch-l{align-content:stretch}.order-0-l{order:0}.order-1-l{order:1}.order-2-l{order:2}.order-3-l{order:3}.order-4-l{order:4}.order-5-l{order:5}.order-6-l{order:6}.order-7-l{order:7}.order-8-l{order:8}.order-last-l{order:99999}.flex-grow-0-l{flex-grow:0}.flex-grow-1-l{flex-grow:1}.flex-shrink-0-l{flex-shrink:0}.flex-shrink-1-l{flex-shrink:1}.fl-l{float:left}.fl-l,.fr-l{_display:inline}.fr-l{float:right}.fn-l{float:none}.i-l{font-style:italic}.fs-normal-l{font-style:normal}.normal-l{font-weight:400}.b-l{font-weight:700}.fw1-l{font-weight:100}.fw2-l{font-weight:200}.fw3-l{font-weight:300}.fw4-l{font-weight:400}.fw5-l{font-weight:500}.fw6-l{font-weight:600}.fw7-l{font-weight:700}.fw8-l{font-weight:800}.fw9-l{font-weight:900}.h1-l{height:1rem}.h2-l{height:2rem}.h3-l{height:4rem}.h4-l{height:8rem}.h5-l{height:16rem}.h-25-l{height:25%}.h-50-l{height:50%}.h-75-l{height:75%}.h-100-l{height:100%}.min-h-100-l{min-height:100%}.vh-25-l{height:25vh}.vh-50-l{height:50vh}.vh-75-l{height:75vh}.vh-100-l{height:100vh}.min-vh-100-l{min-height:100vh}.h-auto-l{height:auto}.h-inherit-l{height:inherit}.tracked-l{letter-spacing:.1em}.tracked-tight-l{letter-spacing:-.05em}.tracked-mega-l{letter-spacing:.25em}.lh-solid-l{line-height:1}.lh-title-l{line-height:1.25}.lh-copy-l{line-height:1.5}.mw-100-l{max-width:100%}.mw1-l{max-width:1rem}.mw2-l{max-width:2rem}.mw3-l{max-width:4rem}.mw4-l{max-width:8rem}.mw5-l{max-width:16rem}.mw6-l{max-width:32rem}.mw7-l{max-width:48rem}.mw8-l{max-width:64rem}.mw9-l{max-width:96rem}.mw-none-l{max-width:none}.w1-l{width:1rem}.w2-l{width:2rem}.w3-l{width:4rem}.w4-l{width:8rem}.w5-l{width:16rem}.w-10-l{width:10%}.w-20-l{width:20%}.w-25-l{width:25%}.w-30-l{width:30%}.w-33-l{width:33%}.w-34-l{width:34%}.w-40-l{width:40%}.w-50-l{width:50%}.w-60-l{width:60%}.w-70-l{width:70%}.w-75-l{width:75%}.w-80-l{width:80%}.w-90-l{width:90%}.w-100-l{width:100%}.w-third-l{width:33.33333%}.w-two-thirds-l{width:66.66667%}.w-auto-l{width:auto}.overflow-visible-l{overflow:visible}.overflow-hidden-l{overflow:hidden}.overflow-scroll-l{overflow:scroll}.overflow-auto-l{overflow:auto}.overflow-x-visible-l{overflow-x:visible}.overflow-x-hidden-l{overflow-x:hidden}.overflow-x-scroll-l{overflow-x:scroll}.overflow-x-auto-l{overflow-x:auto}.overflow-y-visible-l{overflow-y:visible}.overflow-y-hidden-l{overflow-y:hidden}.overflow-y-scroll-l{overflow-y:scroll}.overflow-y-auto-l{overflow-y:auto}.static-l{position:static}.relative-l{position:relative}.absolute-l{position:absolute}.fixed-l{position:fixed}.rotate-45-l{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rotate-90-l{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate-135-l{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.rotate-180-l{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate-225-l{-webkit-transform:rotate(225deg);transform:rotate(225deg)}.rotate-270-l{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.rotate-315-l{-webkit-transform:rotate(315deg);transform:rotate(315deg)}.pa0-l{padding:0}.pa1-l{padding:.25rem}.pa2-l{padding:.5rem}.pa3-l{padding:1rem}.pa4-l{padding:2rem}.pa5-l{padding:4rem}.pa6-l{padding:8rem}.pa7-l{padding:16rem}.pl0-l{padding-left:0}.pl1-l{padding-left:.25rem}.pl2-l{padding-left:.5rem}.pl3-l{padding-left:1rem}.pl4-l{padding-left:2rem}.pl5-l{padding-left:4rem}.pl6-l{padding-left:8rem}.pl7-l{padding-left:16rem}.pr0-l{padding-right:0}.pr1-l{padding-right:.25rem}.pr2-l{padding-right:.5rem}.pr3-l{padding-right:1rem}.pr4-l{padding-right:2rem}.pr5-l{padding-right:4rem}.pr6-l{padding-right:8rem}.pr7-l{padding-right:16rem}.pb0-l{padding-bottom:0}.pb1-l{padding-bottom:.25rem}.pb2-l{padding-bottom:.5rem}.pb3-l{padding-bottom:1rem}.pb4-l{padding-bottom:2rem}.pb5-l{padding-bottom:4rem}.pb6-l{padding-bottom:8rem}.pb7-l{padding-bottom:16rem}.pt0-l{padding-top:0}.pt1-l{padding-top:.25rem}.pt2-l{padding-top:.5rem}.pt3-l{padding-top:1rem}.pt4-l{padding-top:2rem}.pt5-l{padding-top:4rem}.pt6-l{padding-top:8rem}.pt7-l{padding-top:16rem}.pv0-l{padding-top:0;padding-bottom:0}.pv1-l{padding-top:.25rem;padding-bottom:.25rem}.pv2-l{padding-top:.5rem;padding-bottom:.5rem}.pv3-l{padding-top:1rem;padding-bottom:1rem}.pv4-l{padding-top:2rem;padding-bottom:2rem}.pv5-l{padding-top:4rem;padding-bottom:4rem}.pv6-l{padding-top:8rem;padding-bottom:8rem}.pv7-l{padding-top:16rem;padding-bottom:16rem}.ph0-l{padding-left:0;padding-right:0}.ph1-l{padding-left:.25rem;padding-right:.25rem}.ph2-l{padding-left:.5rem;padding-right:.5rem}.ph3-l{padding-left:1rem;padding-right:1rem}.ph4-l{padding-left:2rem;padding-right:2rem}.ph5-l{padding-left:4rem;padding-right:4rem}.ph6-l{padding-left:8rem;padding-right:8rem}.ph7-l{padding-left:16rem;padding-right:16rem}.ma0-l{margin:0}.ma1-l{margin:.25rem}.ma2-l{margin:.5rem}.ma3-l{margin:1rem}.ma4-l{margin:2rem}.ma5-l{margin:4rem}.ma6-l{margin:8rem}.ma7-l{margin:16rem}.ml0-l{margin-left:0}.ml1-l{margin-left:.25rem}.ml2-l{margin-left:.5rem}.ml3-l{margin-left:1rem}.ml4-l{margin-left:2rem}.ml5-l{margin-left:4rem}.ml6-l{margin-left:8rem}.ml7-l{margin-left:16rem}.mr0-l{margin-right:0}.mr1-l{margin-right:.25rem}.mr2-l{margin-right:.5rem}.mr3-l{margin-right:1rem}.mr4-l{margin-right:2rem}.mr5-l{margin-right:4rem}.mr6-l{margin-right:8rem}.mr7-l{margin-right:16rem}.mb0-l{margin-bottom:0}.mb1-l{margin-bottom:.25rem}.mb2-l{margin-bottom:.5rem}.mb3-l{margin-bottom:1rem}.mb4-l{margin-bottom:2rem}.mb5-l{margin-bottom:4rem}.mb6-l{margin-bottom:8rem}.mb7-l{margin-bottom:16rem}.mt0-l{margin-top:0}.mt1-l{margin-top:.25rem}.mt2-l{margin-top:.5rem}.mt3-l{margin-top:1rem}.mt4-l{margin-top:2rem}.mt5-l{margin-top:4rem}.mt6-l{margin-top:8rem}.mt7-l{margin-top:16rem}.mv0-l{margin-top:0;margin-bottom:0}.mv1-l{margin-top:.25rem;margin-bottom:.25rem}.mv2-l{margin-top:.5rem;margin-bottom:.5rem}.mv3-l{margin-top:1rem;margin-bottom:1rem}.mv4-l{margin-top:2rem;margin-bottom:2rem}.mv5-l{margin-top:4rem;margin-bottom:4rem}.mv6-l{margin-top:8rem;margin-bottom:8rem}.mv7-l{margin-top:16rem;margin-bottom:16rem}.mh0-l{margin-left:0;margin-right:0}.mh1-l{margin-left:.25rem;margin-right:.25rem}.mh2-l{margin-left:.5rem;margin-right:.5rem}.mh3-l{margin-left:1rem;margin-right:1rem}.mh4-l{margin-left:2rem;margin-right:2rem}.mh5-l{margin-left:4rem;margin-right:4rem}.mh6-l{margin-left:8rem;margin-right:8rem}.mh7-l{margin-left:16rem;margin-right:16rem}.na1-l{margin:-.25rem}.na2-l{margin:-.5rem}.na3-l{margin:-1rem}.na4-l{margin:-2rem}.na5-l{margin:-4rem}.na6-l{margin:-8rem}.na7-l{margin:-16rem}.nl1-l{margin-left:-.25rem}.nl2-l{margin-left:-.5rem}.nl3-l{margin-left:-1rem}.nl4-l{margin-left:-2rem}.nl5-l{margin-left:-4rem}.nl6-l{margin-left:-8rem}.nl7-l{margin-left:-16rem}.nr1-l{margin-right:-.25rem}.nr2-l{margin-right:-.5rem}.nr3-l{margin-right:-1rem}.nr4-l{margin-right:-2rem}.nr5-l{margin-right:-4rem}.nr6-l{margin-right:-8rem}.nr7-l{margin-right:-16rem}.nb1-l{margin-bottom:-.25rem}.nb2-l{margin-bottom:-.5rem}.nb3-l{margin-bottom:-1rem}.nb4-l{margin-bottom:-2rem}.nb5-l{margin-bottom:-4rem}.nb6-l{margin-bottom:-8rem}.nb7-l{margin-bottom:-16rem}.nt1-l{margin-top:-.25rem}.nt2-l{margin-top:-.5rem}.nt3-l{margin-top:-1rem}.nt4-l{margin-top:-2rem}.nt5-l{margin-top:-4rem}.nt6-l{margin-top:-8rem}.nt7-l{margin-top:-16rem}.strike-l{text-decoration:line-through}.underline-l{text-decoration:underline}.no-underline-l{text-decoration:none}.tl-l{text-align:left}.tr-l{text-align:right}.tc-l{text-align:center}.tj-l{text-align:justify}.ttc-l{text-transform:capitalize}.ttl-l{text-transform:lowercase}.ttu-l{text-transform:uppercase}.ttn-l{text-transform:none}.f-6-l,.f-headline-l{font-size:6rem}.f-5-l,.f-subheadline-l{font-size:5rem}.f1-l{font-size:3rem}.f2-l{font-size:2.25rem}.f3-l{font-size:1.5rem}.f4-l{font-size:1.25rem}.f5-l{font-size:1rem}.f6-l{font-size:.875rem}.f7-l{font-size:.75rem}.measure-l{max-width:30em}.measure-wide-l{max-width:34em}.measure-narrow-l{max-width:20em}.indent-l{text-indent:1em;margin-top:0;margin-bottom:0}.small-caps-l{font-variant:small-caps}.truncate-l{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.center-l{margin-left:auto}.center-l,.mr-auto-l{margin-right:auto}.ml-auto-l{margin-left:auto}.clip-l{position:fixed!important;_position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.ws-normal-l{white-space:normal}.nowrap-l{white-space:nowrap}.pre-l{white-space:pre}.v-base-l{vertical-align:baseline}.v-mid-l{vertical-align:middle}.v-top-l{vertical-align:top}.v-btm-l{vertical-align:bottom}}pre,.pre{overflow-x:auto;overflow-y:hidden;overflow:scroll}pre code{display:block;padding:1.5em;white-space:pre;font-size:.875rem;line-height:2}pre{background-color:#222;color:#ddd;white-space:pre;hyphens:none;position:relative}.pagination{margin:3rem 0}.pagination li{display:inline-block;margin-right:.375rem;font-size:.875rem;margin-bottom:2.5em}[dir=rtl] .pagination li{margin-left:.375rem;margin-right:0}.pagination li a{padding:.5rem .625rem;background-color:#fff;color:#333;border:1px solid #ddd;border-radius:3px;text-decoration:none}.pagination li.disabled{display:none}.pagination li.active a,.pagination li.active a:link,.pagination li.active a:active,.pagination li.active a:visited{background-color:#ddd}#TableOfContents ul li{margin-bottom:1em}.ananke-socials a{display:inline-block;vertical-align:middle;color:#bababa;fill:currentColor}.ananke-socials a .icon svg{width:32px;height:32px}.ananke-socials a:hover{color:#6b7280}.new-window{opacity:0;display:inline-block;vertical-align:top}.link-transition:hover .new-window{opacity:1}#TableOfContents ul li{margin-bottom:1em}.lh-copy blockquote{display:block;font-size:.875em;margin-left:2rem;margin-top:2rem;margin-bottom:2rem;border-left:4px solid #ccc;padding-left:1rem}.nested-links a{overflow-wrap:break-word} \ No newline at end of file diff --git a/resources/_gen/assets/css/ananke/css/main.css_83735de7ca999e9c17f3419b41b93fdb.json b/resources/_gen/assets/css/ananke/css/main.css_83735de7ca999e9c17f3419b41b93fdb.json new file mode 100644 index 0000000..f3d1135 --- /dev/null +++ b/resources/_gen/assets/css/ananke/css/main.css_83735de7ca999e9c17f3419b41b93fdb.json @@ -0,0 +1 @@ +{"Target":"ananke/css/main.min.css","MediaType":"text/css","Data":{}} \ No newline at end of file diff --git a/resources/_gen/assets/css/main.scss_35601896d6bd2ab55ee32eed5560ec53.content b/resources/_gen/assets/css/main.scss_35601896d6bd2ab55ee32eed5560ec53.content new file mode 100644 index 0000000..09e8ec6 --- /dev/null +++ b/resources/_gen/assets/css/main.scss_35601896d6bd2ab55ee32eed5560ec53.content @@ -0,0 +1,3 @@ +body[a="dark"]{background-color:#000;color:#fff}body[a="dark"] a{color:#79a8ff}body[a="dark"] a:visited{color:#f78fe7}body[a="dark"] details{border:thin solid #fff}body[a="dark"] details summary{color:#fff}body[a="dark"] details[open] summary{border-bottom:1px solid #fff}body[a="dark"] pre{background:#000}body[a="dark"] code:not(pre>code){background-color:#fff;color:#000}body[a="dark"] *:target{background:#2f3849;color:#fff}body[a="dark"] table,body[a="dark"] th,body[a="dark"] td{border:thin solid #fff}body[a="dark"] .toc{border:thin solid #fff;padding:1rem}body[a="dark"] figcaption{color:#000}body[a="dark"] blockquote{border:thin solid #fff}body[a="light"]{background-color:#fff;color:#000}body[a="light"] a{color:#3548cf}body[a="light"] a:visited{color:#8f0075}body[a="light"] details{border:thin solid #000}body[a="light"] details summary{color:#000}body[a="light"] details[open] summary{border-bottom:1px solid #000}body[a="light"] pre{background:#fff}body[a="light"] code:not(pre>code){background-color:#000;color:#fff}body[a="light"] *:target{background:#dae5ec;color:#000}body[a="light"] table,body[a="light"] th,body[a="light"] td{border:thin solid #000}body[a="light"] .toc{border:thin solid #000;padding:1rem}body[a="light"] figcaption{color:#595959}body[a="light"] blockquote{border:thin solid #000}@media (prefers-color-scheme: dark){body[a="auto"]{background-color:#000;color:#fff}body[a="auto"] a{color:#79a8ff}body[a="auto"] a:visited{color:#f78fe7}body[a="auto"] details{border:thin solid #fff}body[a="auto"] details summary{color:#fff}body[a="auto"] details[open] summary{border-bottom:1px solid #fff}body[a="auto"] pre{background:#000}body[a="auto"] code:not(pre>code){background-color:#fff;color:#000}body[a="auto"] *:target{background:#2f3849;color:#fff}body[a="auto"] table,body[a="auto"] th,body[a="auto"] td{border:thin solid #fff}body[a="auto"] .toc{border:thin solid #fff;padding:1rem}body[a="auto"] figcaption{color:#000}body[a="auto"] blockquote{border:thin solid #fff}}@media (prefers-color-scheme: light){body[a="auto"]{background-color:#fff;color:#000}body[a="auto"] a{color:#3548cf}body[a="auto"] a:visited{color:#8f0075}body[a="auto"] details{border:thin solid #000}body[a="auto"] details summary{color:#000}body[a="auto"] details[open] summary{border-bottom:1px solid #000}body[a="auto"] pre{background:#fff}body[a="auto"] code:not(pre>code){background-color:#000;color:#fff}body[a="auto"] *:target{background:#dae5ec;color:#000}body[a="auto"] table,body[a="auto"] th,body[a="auto"] td{border:thin solid #000}body[a="auto"] .toc{border:thin solid #000;padding:1rem}body[a="auto"] figcaption{color:#595959}body[a="auto"] blockquote{border:thin solid #000}}html{height:100%}body{font-family:monospace;font-size:16px;line-height:1.4;margin:0;min-height:100%;overflow-wrap:break-word}h2,h3,h4,h5,h6{margin-top:1.5rem}p{margin:1rem 0}li{margin:0.4rem 0}a{text-decoration:none}a:hover{text-decoration:underline}hr{text-align:center;border:0;margin:2rem 0}hr:before{content:'/////'}hr:after{content:attr(data-content) "/////"}pre{padding:1em;overflow-x:auto}table{width:100%}table,th,td{border-collapse:collapse;padding:0.4rem}code{text-size-adjust:100%;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%}code:not(pre>code){padding:0.1em 0.2em;font-size:90%}code.has-jax{-webkit-font-smoothing:antialiased;background:inherit !important;border:none !important;font-size:100%}blockquote{padding:1rem}blockquote p{margin:0}img{max-width:100%;display:block;margin:0 auto}figcaption{text-align:center;opacity:0.5}details{padding:1rem}details summary{text-decoration:none}details[open] summary{margin-bottom:0.5em;padding-bottom:0.5em}.post-meta{display:flex;justify-content:space-between;align-items:center}.w{max-width:640px;margin:0 auto;padding:4rem 2rem}.toc{padding:1rem} + +/*# sourceMappingURL=main.css.map */ \ No newline at end of file diff --git a/resources/_gen/assets/css/main.scss_35601896d6bd2ab55ee32eed5560ec53.json b/resources/_gen/assets/css/main.scss_35601896d6bd2ab55ee32eed5560ec53.json new file mode 100644 index 0000000..9a144d4 --- /dev/null +++ b/resources/_gen/assets/css/main.scss_35601896d6bd2ab55ee32eed5560ec53.json @@ -0,0 +1 @@ +{"Target":"/css/main.900100e9dbee2d56c58fac8bb717037cae7e26a9c36c29d2ff587bdd65f0cbbe510b41d81a3bb234919cdfdc7550d786b2fab70c8fc507772d732fe097106d12.css","MediaType":"text/css","Data":{"Integrity":"sha512-kAEA6dvuLVbFj6yLtxcDfK5+JqnDbCnS/1h73WXwy75RC0HYGjuyNJGc39x1UNeGsvq3DI/FB3ctcy/glxBtEg=="}} \ No newline at end of file diff --git a/static/images/atom.png b/static/images/atom.png new file mode 100644 index 0000000..7ede1d6 Binary files /dev/null and b/static/images/atom.png differ diff --git a/static/images/keeper.png b/static/images/keeper.png new file mode 100644 index 0000000..18e6dd0 Binary files /dev/null and b/static/images/keeper.png differ diff --git a/static/images/punpun.jpg b/static/images/punpun.jpg new file mode 100644 index 0000000..9fde822 Binary files /dev/null and b/static/images/punpun.jpg differ diff --git a/themes/terminal/LICENSE b/themes/terminal/LICENSE new file mode 100644 index 0000000..17993f6 --- /dev/null +++ b/themes/terminal/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2023 YOUR_NAME_HERE + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/themes/terminal/archetypes/default.md b/themes/terminal/archetypes/default.md new file mode 100644 index 0000000..8879fbe --- /dev/null +++ b/themes/terminal/archetypes/default.md @@ -0,0 +1,8 @@ +--- +title: "{{ replace .File.ContentBaseName "-" " " | title }}" +date: {{ .Date }} +tags: [] +categories: [] +featured_image: "" +description: "" +--- \ No newline at end of file diff --git a/themes/terminal/archetypes/projects.md b/themes/terminal/archetypes/projects.md new file mode 100644 index 0000000..3b9952f --- /dev/null +++ b/themes/terminal/archetypes/projects.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .File.ContentBaseName "-" " " | title }}" +date: {{ .Date }} +featured_image: "" +description: "" +--- \ No newline at end of file diff --git a/themes/terminal/hugo.toml b/themes/terminal/hugo.toml new file mode 100644 index 0000000..938865a --- /dev/null +++ b/themes/terminal/hugo.toml @@ -0,0 +1 @@ +# Theme config. diff --git a/themes/terminal/layouts/404.html b/themes/terminal/layouts/404.html new file mode 100644 index 0000000..8e1077d --- /dev/null +++ b/themes/terminal/layouts/404.html @@ -0,0 +1,4 @@ +{{ define "main"}} + +

404

+{{end}} \ No newline at end of file diff --git a/themes/terminal/layouts/_default/baseof.html b/themes/terminal/layouts/_default/baseof.html new file mode 100644 index 0000000..57382c5 --- /dev/null +++ b/themes/terminal/layouts/_default/baseof.html @@ -0,0 +1,43 @@ + + +{{- partial "head.html" . -}} + + + {{- partial "header.html" . -}} +
+ {{- partial "topBar.html" . -}} +
+
+ +
+
+ +
+
+
+ {{- block "main" . }}{{- end }} +
+
+
+
+
+ {{- partial "footer.html" . -}} + + + \ No newline at end of file diff --git a/themes/terminal/layouts/_default/list.html b/themes/terminal/layouts/_default/list.html new file mode 100644 index 0000000..0720e24 --- /dev/null +++ b/themes/terminal/layouts/_default/list.html @@ -0,0 +1,11 @@ +{{ define "main" }} +

List of Posts

+ +{{ end }} \ No newline at end of file diff --git a/themes/terminal/layouts/_default/single.html b/themes/terminal/layouts/_default/single.html new file mode 100644 index 0000000..a953981 --- /dev/null +++ b/themes/terminal/layouts/_default/single.html @@ -0,0 +1,29 @@ +{{ define "main" }} +
+

{{ .Title }}

+
+ {{ if .Params.categories }} +

{{ .Date.Format "2006-01-02" }}

+
+ Categories: + {{ range .Params.categories }} + {{ . }} + {{ end }} +
+ {{ end }} + {{ if .Params.tags }} +
+ Tags: + {{ range .Params.tags }} + {{ . }} + {{ end }} +
+ {{ end }} +
+ + {{ .Content }} +
+ + +
+{{ end }} \ No newline at end of file diff --git a/themes/terminal/layouts/_default/taxonomy.html b/themes/terminal/layouts/_default/taxonomy.html new file mode 100644 index 0000000..84d4654 --- /dev/null +++ b/themes/terminal/layouts/_default/taxonomy.html @@ -0,0 +1,15 @@ +{{ define "main" }} +
+
{{ .Title }} {{ len .Pages }}
+
+
    + {{ range .Pages }} +
  • + {{ .Title }} + {{ .Date.Format "2006-01-02" }} +
  • + {{ end }} +
+
+
+{{ end }} \ No newline at end of file diff --git a/themes/terminal/layouts/_default/terms.html b/themes/terminal/layouts/_default/terms.html new file mode 100644 index 0000000..d9c0ca1 --- /dev/null +++ b/themes/terminal/layouts/_default/terms.html @@ -0,0 +1,14 @@ +{{ define "main" }} +
+
{{ .Title }}
+
+ +
+
+{{ end }} \ No newline at end of file diff --git a/themes/terminal/layouts/categories/list.html b/themes/terminal/layouts/categories/list.html new file mode 100644 index 0000000..5d670ed --- /dev/null +++ b/themes/terminal/layouts/categories/list.html @@ -0,0 +1,19 @@ +{{ define "main" }} +
+
Category: {{ .Title }}
+
+ +
+
+{{ end }} \ No newline at end of file diff --git a/themes/terminal/layouts/index.html b/themes/terminal/layouts/index.html new file mode 100644 index 0000000..2c16d56 --- /dev/null +++ b/themes/terminal/layouts/index.html @@ -0,0 +1,11 @@ +{{ define "main"}} +

My nama jef:

+

My nam is Mshj. consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. In pellentesque massa placerat duis ultricies. Nec dui nunc mattis enim. Massa id neque aliquam vestibulum morbi blandit. Ut tortor pretium viverra suspendisse potenti nullam.

+ + +

Latest Blog Posts

+{{ partial "blogList.html" . }} +

Latest Projects

+{{ partial "projectList.html" . }} + +{{end}} \ No newline at end of file diff --git a/themes/terminal/layouts/partials/blogList.html b/themes/terminal/layouts/partials/blogList.html new file mode 100644 index 0000000..a3b963d --- /dev/null +++ b/themes/terminal/layouts/partials/blogList.html @@ -0,0 +1,11 @@ + + diff --git a/themes/terminal/layouts/partials/footer.html b/themes/terminal/layouts/partials/footer.html new file mode 100644 index 0000000..1e84491 --- /dev/null +++ b/themes/terminal/layouts/partials/footer.html @@ -0,0 +1,17 @@ + \ No newline at end of file diff --git a/themes/terminal/layouts/partials/head.html b/themes/terminal/layouts/partials/head.html new file mode 100644 index 0000000..a031b0a --- /dev/null +++ b/themes/terminal/layouts/partials/head.html @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/themes/terminal/layouts/partials/header.html b/themes/terminal/layouts/partials/header.html new file mode 100644 index 0000000..fe78f70 --- /dev/null +++ b/themes/terminal/layouts/partials/header.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/themes/terminal/layouts/partials/projectList.html b/themes/terminal/layouts/partials/projectList.html new file mode 100644 index 0000000..c0d7580 --- /dev/null +++ b/themes/terminal/layouts/partials/projectList.html @@ -0,0 +1,11 @@ + + \ No newline at end of file diff --git a/themes/terminal/layouts/partials/topBar.html b/themes/terminal/layouts/partials/topBar.html new file mode 100644 index 0000000..3c2a16c --- /dev/null +++ b/themes/terminal/layouts/partials/topBar.html @@ -0,0 +1,9 @@ +
+
+ +
+
+ diff --git a/themes/terminal/layouts/projects/list.html b/themes/terminal/layouts/projects/list.html new file mode 100644 index 0000000..78e7830 --- /dev/null +++ b/themes/terminal/layouts/projects/list.html @@ -0,0 +1,13 @@ +{{ define "main" }} +

Jects

+ +{{ end }} \ No newline at end of file diff --git a/themes/terminal/layouts/projects/single.html b/themes/terminal/layouts/projects/single.html new file mode 100644 index 0000000..b9aa488 --- /dev/null +++ b/themes/terminal/layouts/projects/single.html @@ -0,0 +1,11 @@ +{{ define "main" }} +
+

{{ .Title }}

+
+

{{ .Date.Format "2006-01-02" }}

+ {{ .Content }} +
+ + +
+{{ end }} \ No newline at end of file diff --git a/themes/terminal/layouts/tags/list.html b/themes/terminal/layouts/tags/list.html new file mode 100644 index 0000000..fd782bc --- /dev/null +++ b/themes/terminal/layouts/tags/list.html @@ -0,0 +1,15 @@ +{{ define "main" }} +
+
Tag: {{ .Title }}
+
+
    + {{ range .Pages }} +
  • + {{ .Title }} + {{ .Date.Format "2006-01-02" }} +
  • + {{ end }} +
+
+
+{{ end }} \ No newline at end of file diff --git a/themes/terminal/static/css/styles.css b/themes/terminal/static/css/styles.css new file mode 100644 index 0000000..28399a1 --- /dev/null +++ b/themes/terminal/static/css/styles.css @@ -0,0 +1,334 @@ +/* Sleek Terminal Card */ +.card-container { + --terminal-bg: #1a1d23; + --terminal-border: #2c3e50; + --terminal-accent: #3498db; + --terminal-text: #ecf0f1; + --terminal-highlight: #2ecc71; + + color: var(--terminal-text) !important; + font-family: 'SF Mono', 'Menlo', monospace; + padding: 1rem; + position: relative; + overflow: hidden; + transition: all 0.3s ease; + max-width: 700px; + margin: 1.5rem auto; +} + +.main-content { + flex-grow: 1; + width: 100%; + padding-bottom: 60px; +} + + +/* Card container adjustments */ +.card-container { + margin: 0 auto; + width: 100%; + max-width: 700px; + padding-right: 1.5rem; + padding-bottom: 1.5rem; + padding-left: 1.5rem; + padding-top: 0; +} + +/* Header styling */ +.card-container header { + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + margin-bottom: 0.5rem; + padding-bottom: 0.75rem; + font-size: 1.2rem; + font-weight: 600; + background-color: transparent; + padding: 0; + border: none; +} + +.card-container header h1 { + padding-top: 0; +} + +.card-container header h2 { + color: var(--terminal-text); + font-size: inherit; + font-weight: inherit; + margin: 0; + letter-spacing: -0.5px; +} + +/* Body content */ +.content-wrapper { + line-height: 1.6; + font-size: 1rem; +} + +/* Code blocks */ +.content-wrapper pre { + background: rgba(0, 0, 0, 0.2); + border-radius: 4px; + padding: 0.75rem; + overflow-x: auto; +} + + +/* Status indicator */ +.card-container::after { + content: '●'; + position: absolute; + top: 12px; + right: 15px; + color: var(--terminal-highlight); + font-size: 0.8rem; + text-shadow: 0 0 8px currentColor; + display: none; +} + +/* Menu list */ +.menu-list { + list-style-type: none !important; + padding: 0; + margin: 0; +} + +.menu-list li { + margin-bottom: 0.5rem; + list-style: none; +} + +.meta-info { + font-size: 0.8rem; + color: #666; + margin-left: 0.5rem; +} +/* Tag list */ +.tag-list { + margin-top: 1rem; + font-size: 0.8rem; +} + +/* Tag link */ +.tag-link { + text-decoration: none; + color: #ffffff; + padding: 0.1rem 0.3rem; + border-radius: 0.3rem; + margin-right: 0.3rem; +} + +.tag-link:nth-child(8n+1) { + background-color: #f2f2f2; +} + +.tag-link:nth-child(8n+2) { + background-color: #ff69b4; +} + +.tag-link:nth-child(8n+3) { + background-color: #33cc33; +} + +.tag-link:nth-child(8n+4) { + background-color: #6666ff; +} + +.tag-link:nth-child(8n+5) { + background-color: #ffff66; +} + +.tag-link:nth-child(8n+6) { + background-color: #ff9966; +} + +.tag-link:nth-child(8n+7) { + background-color: #cc66cc; +} + +.tag-link:nth-child(8n+0) { + background-color: #66cccc; +} +.tag-link:hover { + background-color: #ddd; + color: #333; +} + +.components-grid { + display: grid; + grid-column-gap: 1.4em; + grid-template-columns: auto; + grid-template-rows: auto; +} + +.image-grid { + display: grid; + grid-template-rows: auto; + display: grid; + grid-gap: 1em; + grid-template-rows: auto; + grid-template-columns: repeat(auto-fit, + minmax(calc(var(--page-width) / 12), 1fr)); +} + +.header-container { + display: flex; + align-items: center; +} + +.mini-header { + font-size: 0.8rem; + color: #666; + margin-left: 1rem; + border-right: 2px solid #666; + animation: blink 0.7s infinite; +} + +@keyframes blink { + 0% { + border-color: #666; + } + 50% { + border-color: transparent; + } + 100% { + border-color: #666; + } +} + +@media only screen and (min-width: 70em) { + .components-grid { + grid-template-columns: 3fr 9fr; + } + + .components-grid aside { + position: sticky; + top: calc(var(--global-space) * 2); + } +} + +.terminal-tags { + margin-top: 1rem; + line-height: 2; +} + +.terminal-tag { + background-color: var(--secondary-color); + color: var(--background-color); + padding: 0.2rem 0.5rem; + margin-right: 0.5rem; + text-decoration: none; + font-size: 0.8rem; + border-radius: 3px; +} + +.terminal-tag:hover { + background-color: var(--primary-color); +} + +.terminal-meta { + opacity: 0.7; + font-size: 0.8rem; + margin-left: 0.5rem; +} + + +.post-list { + display: flex; + flex-direction: column; + padding: 1rem; + border: 1px solid #eee; + border-radius: 20px; + margin-bottom: 1.5rem; + position:static !important; + +} +.post-list li { + list-style: none; + margin: 0; + padding: 0; +} + +.post-list-title { + font-weight: 600; + color: #333; + margin-bottom: 0.5rem; +} + + +.post-list-description { + color: #e6e6e6; + font-size: 0.9rem; + line-height: 1.4; + margin: 0 0 0 0; +} + +/* Add spacing between list items */ +.post-list + .post-list { + margin-top: 1.5rem; +} + +/* Subtle hover effect */ +.post-list:hover { + border-radius: 24px; +} + +.site-footer { + margin-top: auto; + width: 100%; + padding: 1rem; + text-align: center; +} + +.footer-nav a { + text-decoration: none; + color: #666; + margin: 0 0.5rem; + display: inline-block; +} + +.footer-nav a:hover { + color: #333; +} + +.footer-nav svg { + vertical-align: middle; +} + +.site-footer p { + font-size: 0.9rem; + color: #666; + margin: 0.5rem 0; +} + +body { + display: flex; + flex-direction: column; + min-height: 100vh; +} + +:root { + --global-font-size: 15px; + --global-line-height: 1.4em; + --global-space: 10px; + --font-stack: Menlo, Monaco, Lucida Console, Liberation Mono, + DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, + serif; + --mono-font-stack: Menlo, Monaco, Lucida Console, Liberation Mono, + DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, + serif; + --background-color: #15151b !important; + --page-width: 60em; + --font-color: #e8e9ed; + --invert-font-color: #222225; + --secondary-color: #a3abba; + --tertiary-color: #a3abba; + --primary-color: #62c4ff; + --error-color: #ff3c74; + --progress-bar-background: #3f3f44; + --progress-bar-fill: #62c4ff; + --code-bg-color: #3f3f44; + --input-style: solid; + --display-h1-decoration: none; +} + + diff --git a/themes/terminal/static/js/topbar.js b/themes/terminal/static/js/topbar.js new file mode 100644 index 0000000..9c258cf --- /dev/null +++ b/themes/terminal/static/js/topbar.js @@ -0,0 +1,14 @@ +const miniHeader = document.getElementById('mini-header'); +const texts = ['use linux', 'i hate css', 'gpl everything', 'made with love']; // add your random text here +const text = texts[Math.floor(Math.random() * texts.length)]; +let charIndex = 0; + +function typeText() { + if (charIndex < text.length) { + miniHeader.textContent += text.charAt(charIndex); + charIndex++; + setTimeout(typeText, 50); // adjust the typing speed here + } +} + +typeText(); \ No newline at end of file diff --git a/themes/terminal/theme.toml b/themes/terminal/theme.toml new file mode 100644 index 0000000..e03def9 --- /dev/null +++ b/themes/terminal/theme.toml @@ -0,0 +1,21 @@ +# theme.toml template for a Hugo theme +# See https://github.com/gohugoio/hugoThemes#themetoml for an example + +name = "Terminal" +license = "MIT" +licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE" +description = "" +homepage = "http://example.com/" +tags = [] +features = [] +min_version = "0.112.3" + +[author] + name = "" + homepage = "" + +# If porting an existing theme +[original] + name = "" + homepage = "" + repo = ""