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

github.com/zwbetz-gh/papercss-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachary Betz <zwbetz@gmail.com>2019-02-26 05:53:45 +0300
committerZachary Betz <zwbetz@gmail.com>2019-02-26 05:53:45 +0300
commit9e6d56cb855ac610c26ef04ad87385b7338392ad (patch)
treec26d9c1cf78820eb4fab14d093de2b4083b65e7a
parentbed26272852b7771378f9228a2e66a2bc93fa20c (diff)
Base layout, favicons, CSS, content
-rw-r--r--.gitignore3
-rw-r--r--README.md2
-rw-r--r--archetypes/default.md6
-rw-r--r--assets/css/custom.css10
-rw-r--r--exampleSite/config.toml43
-rw-r--r--exampleSite/config.yaml39
-rw-r--r--exampleSite/content/post/papercss-typography.md147
-rw-r--r--layouts/404.html0
-rw-r--r--layouts/_default/baseof.html11
-rw-r--r--layouts/_default/list.html12
-rw-r--r--layouts/_default/single.html6
-rw-r--r--layouts/_default/terms.html17
-rw-r--r--layouts/index.html6
-rw-r--r--layouts/partials/google-analytics-async.html10
-rw-r--r--layouts/partials/head.html34
-rw-r--r--layouts/partials/nav.html22
-rw-r--r--static/android-chrome-192x192.pngbin0 -> 4965 bytes
-rw-r--r--static/android-chrome-512x512.pngbin0 -> 15417 bytes
-rw-r--r--static/apple-touch-icon.pngbin0 -> 3284 bytes
-rw-r--r--static/browserconfig.xml9
-rw-r--r--static/css/paper.css2375
-rw-r--r--static/favicon-16x16.pngbin0 -> 693 bytes
-rw-r--r--static/favicon-32x32.pngbin0 -> 1041 bytes
-rw-r--r--static/favicon.icobin0 -> 15086 bytes
-rw-r--r--static/img/geometry2.pngbin0 -> 2138 bytes
-rw-r--r--static/mstile-144x144.pngbin0 -> 3105 bytes
-rw-r--r--static/mstile-150x150.pngbin0 -> 3448 bytes
-rw-r--r--static/mstile-310x150.pngbin0 -> 3714 bytes
-rw-r--r--static/mstile-310x310.pngbin0 -> 7082 bytes
-rw-r--r--static/mstile-70x70.pngbin0 -> 2382 bytes
-rw-r--r--static/safari-pinned-tab.svg72
-rw-r--r--static/site.webmanifest19
-rw-r--r--theme.toml2
33 files changed, 2842 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 73eae91..c33a9a7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
-exampleSite/public/ \ No newline at end of file
+exampleSite/public/
+resources/ \ No newline at end of file
diff --git a/README.md b/README.md
index 82f4056..8530415 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
TODO netlify status
-TODO description
+A Hugo theme made with PaperCSS, the less formal CSS framework.
## Table of contents
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100644
index 0000000..d677d28
--- /dev/null
+++ b/archetypes/default.md
@@ -0,0 +1,6 @@
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+tags: []
+---
+
diff --git a/assets/css/custom.css b/assets/css/custom.css
new file mode 100644
index 0000000..d947aa3
--- /dev/null
+++ b/assets/css/custom.css
@@ -0,0 +1,10 @@
+body {
+ background-image: url('{{ "img/geometry2.png" | absURL }}');
+}
+a,
+a:visited {
+ color: rgb(0, 0, 238);
+}
+blockquote {
+ font-style: italic;
+} \ No newline at end of file
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..5ff7589
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,43 @@
+baseURL = "https://example.com"
+languageCode = "en-us"
+defaultContentLanguage = "en"
+title = "PaperCSS"
+theme = "papercss-hugo-theme"
+googleAnalytics = "UA-123456789-1"
+
+[taxonomies]
+ tag = "tags"
+
+[permalinks]
+ post = "/:filename/"
+
+[imaging]
+ quality = 99
+
+[params]
+ description = "A Hugo theme made with [PaperCSS](https://www.getpapercss.com/), the less formal CSS framework."
+ homeMetaContent = "A Hugo theme made with PaperCSS, the less formal CSS framework."
+ # For more date formats see https://gohugo.io/functions/format/
+ dateFormat = "Jan 2, 2006"
+
+[menu]
+ [[menu.nav]]
+ name = "Home"
+ url = "/"
+ weight = 1
+ [[menu.nav]]
+ name = "Blog"
+ url = "/post/"
+ weight = 2
+ [[menu.nav]]
+ name = "Tags"
+ url = "/tags/"
+ weight = 3
+ [[menu.nav]]
+ name = "About"
+ url = "/about/"
+ weight = 4
+ [[menu.nav]]
+ name = "RSS"
+ url = "/index.xml"
+ weight = 5
diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml
new file mode 100644
index 0000000..d35f757
--- /dev/null
+++ b/exampleSite/config.yaml
@@ -0,0 +1,39 @@
+baseURL: https://example.com
+languageCode: en-us
+defaultContentLanguage: en
+title: PaperCSS
+theme: papercss-hugo-theme
+googleAnalytics: UA-123456789-1
+
+taxonomies:
+ tag: tags
+
+permalinks:
+ post: /:filename/
+
+imaging:
+ quality: 99
+
+params:
+ description: A Hugo theme made with [PaperCSS](https://www.getpapercss.com/), the less formal CSS framework.
+ homeMetaContent: A Hugo theme made with PaperCSS, the less formal CSS framework.
+ # For more date formats see https://gohugo.io/functions/format/
+ dateFormat: Jan 2, 2006
+
+menu:
+ nav:
+ - name: Home
+ url: /
+ weight: 1
+ - name: Blog
+ url: /post/
+ weight: 2
+ - name: Tags
+ url: /tags/
+ weight: 3
+ - name: About
+ url: /about/
+ weight: 4
+ - name: RSS
+ url: /index.xml
+ weight: 5
diff --git a/exampleSite/content/post/papercss-typography.md b/exampleSite/content/post/papercss-typography.md
new file mode 100644
index 0000000..2557187
--- /dev/null
+++ b/exampleSite/content/post/papercss-typography.md
@@ -0,0 +1,147 @@
+---
+title: "PaperCSS Typography"
+date: 2019-02-22T20:53:58-06:00
+tags: [typography, markdown]
+---
+
+## Headings
+
+```
+# Heading 1
+## Heading 2
+### Heading 3
+#### Heading 4
+##### Heading 5
+###### Heading 6
+```
+
+# Heading 1
+## Heading 2
+### Heading 3
+#### Heading 4
+##### Heading 5
+###### Heading 6
+
+## Text
+
+```
+*This text will be italic*
+_This will also be italic_
+
+**This text will be bold**
+__This will also be bold__
+
+_You **can** combine them_
+```
+
+*This text will be italic*
+
+_This will also be italic_
+
+**This text will be bold**
+
+__This will also be bold__
+
+_You **can** combine them_
+
+## Lists
+
+### Unordered
+
+```
+* Item 1
+* Item 2
+ * Item 2a
+ * Item 2b
+```
+
+* Item 1
+* Item 2
+ * Item 2a
+ * Item 2b
+
+### Ordered
+
+```
+1. Item 1
+1. Item 2
+1. Item 3
+ 1. Item 3a
+ 1. Item 3b
+```
+
+1. Item 1
+1. Item 2
+1. Item 3
+ 1. Item 3a
+ 1. Item 3b
+
+## Links
+
+```
+https://papercss-hugo-theme.netlify.com/
+
+[PaperCSS Hugo theme](https://papercss-hugo-theme.netlify.com/)
+```
+
+https://papercss-hugo-theme.netlify.com/
+
+[PaperCSS Hugo theme](https://papercss-hugo-theme.netlify.com/)
+
+## Blockquotes
+
+```
+As Kanye West said:
+
+> We're living the future so
+> the present is our past.
+```
+
+As Kanye West said:
+
+> We're living the future so
+> the present is our past.
+
+## Tables
+
+```
+| Animal | Sounds |
+|---------|--------|
+| Cat | Meow |
+| Dog | Woof |
+| Cricket | Chirp |
+```
+
+| Animal | Sounds |
+|---------|--------|
+| Cat | Meow |
+| Dog | Woof |
+| Cricket | Chirp |
+
+## Inline code
+
+```
+This `<html>` tag is inline code.
+```
+
+This `<html>` tag is inline code.
+
+## Block code
+
+````
+This
+
+```
+<html>
+```
+
+tag is block code.
+````
+
+This
+
+```
+<html>
+```
+
+tag is block code. \ No newline at end of file
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/404.html
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..5eb6408
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.Language.Lang }}">
+ {{ partial "head.html" . }}
+ <body>
+ <div class="container paper">
+ {{ partial "nav.html" . }}
+ {{ block "main" . }}{{ end }}
+ {{ partial "google-analytics-async.html" . }}
+ </div>
+ </body>
+</html> \ No newline at end of file
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..09daefc
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,12 @@
+{{ define "main" }}
+
+<h1>{{ .Title }}</h1>
+{{ range .Pages.ByPublishDate.Reverse }}
+<p>
+ <a href="{{ .Permalink }}">
+ {{ .Title }}
+ </a>
+</p>
+{{ end }}
+
+{{ end }} \ No newline at end of file
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..779084b
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,6 @@
+{{ define "main" }}
+
+<h1>{{ .Title }}</h1>
+{{ .Content }}
+
+{{ end }} \ No newline at end of file
diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html
new file mode 100644
index 0000000..4cb91b0
--- /dev/null
+++ b/layouts/_default/terms.html
@@ -0,0 +1,17 @@
+{{ define "main" }}
+
+<h1>{{ .Title }}</h1>
+{{ $type := .Type }}
+{{ range $key, $value := .Data.Terms.ByCount }}
+ {{ $name := .Name }}
+ {{ $count := .Count }}
+ {{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
+ <p>
+ <a href="{{ .Permalink }}">
+ {{ printf "(%d) %s" $count $name }}
+ </a>
+ </p>
+ {{ end }}
+{{ end }}
+
+{{ end }} \ No newline at end of file
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..779084b
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,6 @@
+{{ define "main" }}
+
+<h1>{{ .Title }}</h1>
+{{ .Content }}
+
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/google-analytics-async.html b/layouts/partials/google-analytics-async.html
new file mode 100644
index 0000000..ecc2767
--- /dev/null
+++ b/layouts/partials/google-analytics-async.html
@@ -0,0 +1,10 @@
+{{ if not .Site.IsServer }}
+ {{ with .Site.GoogleAnalytics }}
+ <script>
+ window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
+ ga('create', '{{ . }}', 'auto');
+ ga('send', 'pageview');
+ </script>
+ <script async src='https://www.google-analytics.com/analytics.js'></script>
+ {{ end }}
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..898e337
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,34 @@
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+
+ {{ .Hugo.Generator }}
+ <link rel="canonical" href="{{ .Permalink }}">
+
+ {{ if .IsHome }}
+ {{ with .Site.Params.homeMetaContent }}
+ <meta name="description" content="{{ . | plainify }}">
+ {{ end }}
+ {{ end }}
+
+ <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
+ <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
+ <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
+ <link rel="manifest" href="/site.webmanifest">
+ <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
+ <meta name="msapplication-TileColor" content="#ffffff">
+ <meta name="theme-color" content="#ffffff">
+
+ <link rel="stylesheet" type="text/css" href="{{ "css/paper.css" | absURL }}">
+
+ {{ $customCssPath := "css/custom.css" }}
+ {{ $customCss:= resources.Get $customCssPath | resources.ExecuteAsTemplate $customCssPath . }}
+ <link rel="stylesheet" type="text/css" href="{{ $customCss.Permalink }}">
+
+ {{ $title := print .Title " | " .Site.Title }}
+ {{ if .IsHome }}
+ {{ $title = .Site.Title }}
+ {{ end }}
+ <title>{{ $title }}</title>
+</head> \ No newline at end of file
diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html
new file mode 100644
index 0000000..be42b65
--- /dev/null
+++ b/layouts/partials/nav.html
@@ -0,0 +1,22 @@
+<nav class="border split-nav">
+ <div class="nav-brand">
+ <h3><a href="/">{{ .Site.Title }}</a></h3>
+ </div>
+ <div class="collapsible">
+ <input id="collapsible1" type="checkbox" name="collapsible1">
+ <button>
+ <label for="collapsible1">
+ <div class="bar1"></div>
+ <div class="bar2"></div>
+ <div class="bar3"></div>
+ </label>
+ </button>
+ <div class="collapsible-body">
+ <ul class="inline">
+ {{ range .Site.Menus.nav }}
+ <li><a href="{{ .URL }}">{{ .Name }}</a></li>
+ {{ end }}
+ </ul>
+ </div>
+ </div>
+</nav> \ No newline at end of file
diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png
new file mode 100644
index 0000000..2760826
--- /dev/null
+++ b/static/android-chrome-192x192.png
Binary files differ
diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png
new file mode 100644
index 0000000..d25f398
--- /dev/null
+++ b/static/android-chrome-512x512.png
Binary files differ
diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png
new file mode 100644
index 0000000..d1f7da0
--- /dev/null
+++ b/static/apple-touch-icon.png
Binary files differ
diff --git a/static/browserconfig.xml b/static/browserconfig.xml
new file mode 100644
index 0000000..b3930d0
--- /dev/null
+++ b/static/browserconfig.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<browserconfig>
+ <msapplication>
+ <tile>
+ <square150x150logo src="/mstile-150x150.png"/>
+ <TileColor>#da532c</TileColor>
+ </tile>
+ </msapplication>
+</browserconfig>
diff --git a/static/css/paper.css b/static/css/paper.css
new file mode 100644
index 0000000..e918d33
--- /dev/null
+++ b/static/css/paper.css
@@ -0,0 +1,2375 @@
+@charset "UTF-8";
+@import url(https://fonts.googleapis.com/css?family=Neucha|Patrick+Hand+SC);
+.text-primary {
+ color: #41403e
+}
+.background-primary {
+ background-color: #c1c0bd
+}
+.text-secondary {
+ color: #0071de
+}
+.background-secondary {
+ background-color: #deefff
+}
+.text-success {
+ color: #86a361
+}
+.background-success {
+ background-color: #d0dbc2
+}
+.text-warning {
+ color: #ddcd45
+}
+.background-warning {
+ background-color: #f5f0c6
+}
+.text-danger {
+ color: #a7342d
+}
+.background-danger {
+ background-color: #f0cbc9
+}
+.text-muted {
+ color: #868e96
+}
+.background-muted {
+ background-color: #e6e7e9
+}
+/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
+html {
+ line-height: 1.15;
+ -ms-text-size-adjust: 100%;
+ -webkit-text-size-adjust: 100%
+}
+body {
+ margin: 0
+}
+article,
+aside,
+footer,
+header,
+nav,
+section {
+ display: block
+}
+h1 {
+ font-size: 2em;
+ margin: .67em 0
+}
+figcaption,
+figure,
+main {
+ display: block
+}
+figure {
+ margin: 1em 40px
+}
+hr {
+ box-sizing: content-box;
+ height: 0;
+ overflow: visible
+}
+pre {
+ font-family: monospace,monospace;
+ font-size: 1em
+}
+a {
+ background-color: transparent;
+ -webkit-text-decoration-skip: objects
+}
+abbr[title] {
+ border-bottom: none;
+ text-decoration: underline;
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted
+}
+b,
+strong {
+ font-weight: inherit
+}
+b,
+strong {
+ font-weight: bolder
+}
+code,
+kbd,
+samp {
+ font-family: monospace,monospace;
+ font-size: 1em
+}
+dfn {
+ font-style: italic
+}
+mark {
+ background-color: #ff0;
+ color: #000
+}
+small {
+ font-size: 80%
+}
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline
+}
+sub {
+ bottom: -.25em
+}
+sup {
+ top: -.5em
+}
+audio,
+video {
+ display: inline-block
+}
+audio:not([controls]) {
+ display: none;
+ height: 0
+}
+img {
+ border-style: none
+}
+svg:not(:root) {
+ overflow: hidden
+}
+button,
+input,
+optgroup,
+select,
+textarea {
+ font-family: sans-serif;
+ font-size: 100%;
+ line-height: 1.15;
+ margin: 0
+}
+button,
+input {
+ overflow: visible
+}
+button,
+select {
+ text-transform: none
+}
+[type=reset],
+[type=submit],
+button,
+html [type=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 {
+ display: inline-block;
+ 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-cancel-button,
+[type=search]::-webkit-search-decoration {
+ -webkit-appearance: none
+}
+::-webkit-file-upload-button {
+ -webkit-appearance: button;
+ font: inherit
+}
+details,
+menu {
+ display: block
+}
+summary {
+ display: list-item
+}
+canvas {
+ display: inline-block
+}
+template {
+ display: none
+}
+[hidden] {
+ display: none
+}
+html {
+ box-sizing: border-box
+}
+*,
+:after,
+:before {
+ box-sizing: inherit
+}
+.container {
+ margin: 0 auto;
+ max-width: 960px;
+ position: relative;
+ width: 100%
+}
+@media only screen and (max-width:992px) {
+ .container {
+ width: 85%
+ }
+}
+@media only screen and (max-width:480px) {
+ .container {
+ width: 90%
+ }
+}
+.section {
+ margin-bottom: 2rem;
+ margin-top: 1rem;
+ word-wrap: break-word
+}
+.section::after {
+ color: #8f8d89;
+ content: '~~~';
+ display: block;
+ font-size: 1.5rem;
+ position: relative;
+ text-align: center
+}
+hr {
+ border: 0
+}
+hr::after {
+ color: #8f8d89;
+ content: '~~~';
+ display: block;
+ font-size: 1.5rem;
+ position: relative;
+ text-align: center;
+ top: -.75rem
+}
+.paper {
+ background-color: #fff;
+ border: 1px solid #c1c0bd;
+ box-shadow: -1px 5px 35px -9px rgba(0,0,0,.2);
+ margin-bottom: 1rem;
+ margin-top: 1rem;
+ padding: 2rem
+}
+@media only screen and (max-width:480px) {
+ .paper {
+ margin-bottom: 0;
+ margin-top: 0;
+ padding: 1rem;
+ width: 100%
+ }
+}
+.row {
+ display: flex;
+ flex-flow: row wrap;
+ margin-bottom: 1rem;
+ margin-left: auto;
+ margin-right: auto
+}
+.row.flex-right {
+ justify-content: flex-end
+}
+.row.flex-center {
+ justify-content: center
+}
+.row.flex-edges {
+ justify-content: space-between
+}
+.row.flex-spaces {
+ justify-content: space-around
+}
+.row.flex-top {
+ align-items: flex-start
+}
+.row.flex-middle {
+ align-items: center
+}
+.row.flex-bottom {
+ align-items: flex-end
+}
+.col {
+ padding: 1rem
+}
+@media only screen and (max-width:768px) {
+ .col {
+ flex: 0 0 100%;
+ max-width: 100%
+ }
+}
+.col-fill {
+ flex: 1 1 0;
+ width: auto
+}
+@media only screen and (min-width:0) {
+ .col-1 {
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%
+ }
+ .col-2 {
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%
+ }
+ .col-3 {
+ flex: 0 0 25%;
+ max-width: 25%
+ }
+ .col-4 {
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%
+ }
+ .col-5 {
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%
+ }
+ .col-6 {
+ flex: 0 0 50%;
+ max-width: 50%
+ }
+ .col-7 {
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%
+ }
+ .col-8 {
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%
+ }
+ .col-9 {
+ flex: 0 0 75%;
+ max-width: 75%
+ }
+ .col-10 {
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%
+ }
+ .col-11 {
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%
+ }
+ .col-12 {
+ flex: 0 0 100%;
+ max-width: 100%
+ }
+}
+@media only screen and (min-width:480px) {
+ .xs-1 {
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%
+ }
+ .xs-2 {
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%
+ }
+ .xs-3 {
+ flex: 0 0 25%;
+ max-width: 25%
+ }
+ .xs-4 {
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%
+ }
+ .xs-5 {
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%
+ }
+ .xs-6 {
+ flex: 0 0 50%;
+ max-width: 50%
+ }
+ .xs-7 {
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%
+ }
+ .xs-8 {
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%
+ }
+ .xs-9 {
+ flex: 0 0 75%;
+ max-width: 75%
+ }
+ .xs-10 {
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%
+ }
+ .xs-11 {
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%
+ }
+ .xs-12 {
+ flex: 0 0 100%;
+ max-width: 100%
+ }
+}
+@media only screen and (min-width:768px) {
+ .sm-1 {
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%
+ }
+ .sm-2 {
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%
+ }
+ .sm-3 {
+ flex: 0 0 25%;
+ max-width: 25%
+ }
+ .sm-4 {
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%
+ }
+ .sm-5 {
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%
+ }
+ .sm-6 {
+ flex: 0 0 50%;
+ max-width: 50%
+ }
+ .sm-7 {
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%
+ }
+ .sm-8 {
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%
+ }
+ .sm-9 {
+ flex: 0 0 75%;
+ max-width: 75%
+ }
+ .sm-10 {
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%
+ }
+ .sm-11 {
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%
+ }
+ .sm-12 {
+ flex: 0 0 100%;
+ max-width: 100%
+ }
+}
+@media only screen and (min-width:992px) {
+ .md-1 {
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%
+ }
+ .md-2 {
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%
+ }
+ .md-3 {
+ flex: 0 0 25%;
+ max-width: 25%
+ }
+ .md-4 {
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%
+ }
+ .md-5 {
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%
+ }
+ .md-6 {
+ flex: 0 0 50%;
+ max-width: 50%
+ }
+ .md-7 {
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%
+ }
+ .md-8 {
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%
+ }
+ .md-9 {
+ flex: 0 0 75%;
+ max-width: 75%
+ }
+ .md-10 {
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%
+ }
+ .md-11 {
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%
+ }
+ .md-12 {
+ flex: 0 0 100%;
+ max-width: 100%
+ }
+}
+@media only screen and (min-width:1200px) {
+ .lg-1 {
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%
+ }
+ .lg-2 {
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%
+ }
+ .lg-3 {
+ flex: 0 0 25%;
+ max-width: 25%
+ }
+ .lg-4 {
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%
+ }
+ .lg-5 {
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%
+ }
+ .lg-6 {
+ flex: 0 0 50%;
+ max-width: 50%
+ }
+ .lg-7 {
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%
+ }
+ .lg-8 {
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%
+ }
+ .lg-9 {
+ flex: 0 0 75%;
+ max-width: 75%
+ }
+ .lg-10 {
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%
+ }
+ .lg-11 {
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%
+ }
+ .lg-12 {
+ flex: 0 0 100%;
+ max-width: 100%
+ }
+}
+.align-top {
+ align-self: flex-start
+}
+.align-middle {
+ align-self: center
+}
+.align-bottom {
+ align-self: flex-end
+}
+.container {
+ margin: 0 auto;
+ max-width: 960px;
+ position: relative;
+ width: 100%
+}
+@media only screen and (max-width:992px) {
+ .container {
+ width: 85%
+ }
+}
+@media only screen and (max-width:480px) {
+ .container {
+ width: 90%
+ }
+}
+code {
+ background-color: #f2f2f2;
+ border-radius: 3px;
+ color: #0071de;
+ font-size: 80%;
+ padding: 2px 4px
+}
+kbd {
+ background-color: #41403e;
+ border-radius: 3px;
+ color: #fff;
+ font-size: 80%;
+ padding: 2px 4px
+}
+pre {
+ background-color: #fafafa;
+ border: 1px solid #c1c0bd;
+ border-radius: 3px;
+ color: #41403e;
+ display: block;
+ font-size: 80%;
+ line-height: 1.5;
+ overflow-x: auto;
+ padding: 1em;
+ white-space: pre;
+ word-break: break-all;
+ word-wrap: break-word
+}
+pre code {
+ background: 0 0;
+ color: inherit;
+ display: block;
+ font-size: inherit;
+ padding: initial;
+ white-space: pre
+}
+html {
+ color: #41403e;
+ font-family: Neucha,sans-serif;
+ font-size: 20px
+}
+a,
+button,
+input,
+option,
+p,
+select,
+table,
+tbody,
+td,
+textarea,
+th,
+thead,
+tr {
+ font-family: Neucha,sans-serif
+}
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ font-family: "Patrick Hand SC",sans-serif;
+ font-weight: 400
+}
+h1 {
+ font-size: 4rem
+}
+h2 {
+ font-size: 3rem
+}
+h3 {
+ font-size: 2rem
+}
+h4 {
+ font-size: 1.5rem
+}
+h5 {
+ font-size: 1rem
+}
+h6 {
+ font-size: .8rem
+}
+.text-left {
+ text-align: left
+}
+.text-center {
+ text-align: center
+}
+.text-right {
+ text-align: right
+}
+img {
+ border-bottom-left-radius: 15px 255px;
+ border-bottom-right-radius: 225px 15px;
+ border-top-left-radius: 255px 15px;
+ border-top-right-radius: 15px 225px;
+ border: 2px solid #41403e;
+ display: block;
+ height: auto;
+ max-width: 100%
+}
+img.float-left {
+ float: left;
+ margin: 1rem 1rem 1rem 0
+}
+img.float-right {
+ float: right;
+ margin: 1rem 0 1rem 1rem
+}
+img.no-responsive {
+ display: initial;
+ height: initial;
+ max-width: initial
+}
+img.no-border {
+ border: 0;
+ border-radius: 0
+}
+ol {
+ list-style-type: decimal
+}
+ol ol {
+ list-style-type: upper-alpha
+}
+ol ol ol {
+ list-style-type: upper-roman
+}
+ol ol ol ol {
+ list-style-type: lower-alpha
+}
+ol ol ol ol ol {
+ list-style-type: lower-roman
+}
+ul {
+ list-style: none;
+ margin-left: 0
+}
+ul li::before {
+ content: "-"
+}
+ul li {
+ text-indent: -7px
+}
+ul li .badge,
+ul li [popover-bottom]::after,
+ul li [popover-left]::after,
+ul li [popover-right]::after,
+ul li [popover-top]::after {
+ text-indent: 0
+}
+ul li::before {
+ left: -7px;
+ position: relative
+}
+ul ul li::before {
+ content: "+"
+}
+ul ul ul li::before {
+ content: "~"
+}
+ul ul ul ul li::before {
+ content: "⤍"
+}
+ul ul ul ul ul li::before {
+ content: "⁎"
+}
+ul.inline li {
+ display: inline;
+ margin-left: 5px
+}
+table {
+ box-sizing: border-box;
+ max-width: 100%;
+ overflow-x: auto;
+ width: 100%
+}
+@media only screen and (max-width:480px) {
+ table thead tr th {
+ padding: 2%
+ }
+ table tbody tr td {
+ padding: 2%
+ }
+}
+table thead tr th {
+ line-height: 1.5;
+ padding: 8px;
+ text-align: left;
+ vertical-align: bottom
+}
+table tbody tr td {
+ border-top: 1px dashed #d9d9d8;
+ line-height: 1.5;
+ padding: 8px;
+ vertical-align: top
+}
+table.table-hover tbody tr:hover {
+ color: #0071de
+}
+table.table-alternating tbody tr:nth-of-type(even) {
+ color: #82807c
+}
+.border {
+ border: 2px solid #41403e
+}
+.border,
+.border-1,
+.child-borders > :nth-child(6n+1) {
+ border-bottom-left-radius: 15px 255px;
+ border-bottom-right-radius: 225px 15px;
+ border-top-left-radius: 255px 15px;
+ border-top-right-radius: 15px 225px
+}
+.border-2,
+.child-borders > :nth-child(6n+2) {
+ border-bottom-left-radius: 185px 25px;
+ border-bottom-right-radius: 20px 205px;
+ border-top-left-radius: 125px 25px;
+ border-top-right-radius: 10px 205px
+}
+.border-3,
+.child-borders > :nth-child(6n+3) {
+ border-bottom-left-radius: 225px 15px;
+ border-bottom-right-radius: 15px 255px;
+ border-top-left-radius: 15px 225px;
+ border-top-right-radius: 255px 15px
+}
+.border-4,
+.child-borders > :nth-child(6n+4) {
+ border-bottom-left-radius: 25px 115px;
+ border-bottom-right-radius: 155px 25px;
+ border-top-left-radius: 15px 225px;
+ border-top-right-radius: 25px 150px
+}
+.border-5,
+.child-borders > :nth-child(6n+5) {
+ border-bottom-left-radius: 20px 115px;
+ border-bottom-right-radius: 15px 105px;
+ border-top-left-radius: 250px 15px;
+ border-top-right-radius: 25px 80px
+}
+.border-6,
+.child-borders > :nth-child(6n+6) {
+ border-bottom-left-radius: 15px 225px;
+ border-bottom-right-radius: 20px 205px;
+ border-top-left-radius: 28px 125px;
+ border-top-right-radius: 100px 30px
+}
+.child-borders > * {
+ border: 2px solid #41403e
+}
+.border-white {
+ border-color: #fff
+}
+.border-dotted {
+ border-style: dotted
+}
+.border-dashed {
+ border-style: dashed
+}
+.border-thick {
+ border-width: 5px
+}
+.border-primary {
+ border-color: #41403e
+}
+.border-secondary {
+ border-color: #0071de
+}
+.border-success {
+ border-color: #86a361
+}
+.border-warning {
+ border-color: #ddcd45
+}
+.border-danger {
+ border-color: #a7342d
+}
+.border-muted {
+ border-color: #868e96
+}
+.shadow {
+ transition: all 235ms ease 0s;
+ box-shadow: 15px 28px 25px -18px rgba(0,0,0,.2)
+}
+.shadow.shadow-large {
+ transition: all 235ms ease 0s;
+ box-shadow: 20px 38px 34px -26px rgba(0,0,0,.2)
+}
+.shadow.shadow-small {
+ transition: all 235ms ease 0s;
+ box-shadow: 10px 19px 17px -13px rgba(0,0,0,.2)
+}
+.shadow.shadow-hover:hover {
+ -webkit-transform: translate3d(0,2px,0);
+ transform: translate3d(0,2px,0);
+ box-shadow: 2px 8px 8px -5px rgba(0,0,0,.3)
+}
+.child-shadows > * {
+ transition: all 235ms ease 0s;
+ box-shadow: 15px 28px 25px -18px rgba(0,0,0,.2)
+}
+.child-shadows-hover > * {
+ transition: all 235ms ease 0s;
+ box-shadow: 15px 28px 25px -18px rgba(0,0,0,.2)
+}
+.child-shadows-hover > :hover {
+ -webkit-transform: translate3d(0,2px,0);
+ transform: translate3d(0,2px,0);
+ box-shadow: 2px 8px 8px -5px rgba(0,0,0,.3)
+}
+.collapsible {
+ display: flex;
+ flex-direction: column
+}
+.collapsible:nth-of-type(1) {
+ border-top: 1px solid #e6e7e9
+}
+.collapsible .collapsible-body {
+ transition: all 235ms ease-in-out 0s;
+ background-color: rgba(204,204,204,.03);
+ border-bottom: 1px solid #e6e7e9;
+ margin: 0;
+ max-height: 0;
+ opacity: 0;
+ overflow: hidden;
+ padding: 0 .75rem
+}
+.collapsible input {
+ display: none
+}
+.collapsible input:checked + label {
+ color: #41403e
+}
+.collapsible input[id^=collapsible]:checked ~ div.collapsible-body {
+ margin: 0;
+ max-height: 960px;
+ opacity: 1;
+ padding: .75rem
+}
+.collapsible label {
+ border-bottom: 1px solid #e6e7e9;
+ color: #41403e;
+ display: inline-block;
+ font-weight: 600;
+ margin: 0 0 -1px;
+ padding: .75rem;
+ text-align: center
+}
+.collapsible label:hover {
+ color: #868e96;
+ cursor: pointer
+}
+.alert {
+ border-bottom-left-radius: 15px 255px;
+ border-bottom-right-radius: 225px 15px;
+ border-top-left-radius: 255px 15px;
+ border-top-right-radius: 15px 225px;
+ border: 2px solid #41403e;
+ margin-bottom: 20px;
+ padding: 15px;
+ width: 100%
+}
+.alert.dismissible {
+ transition: all 235ms ease-in-out 0s;
+ display: flex;
+ justify-content: space-between;
+ max-height: 48rem;
+ overflow: hidden
+}
+.alert .btn-close {
+ transition: all 235ms ease-in-out 0s;
+ color: #5b5a57;
+ cursor: pointer;
+ margin-left: .75rem
+}
+.alert .btn-close:active,
+.alert .btn-close:focus,
+.alert .btn-close:hover {
+ color: #272625
+}
+.alert-primary {
+ background-color: #c1c0bd;
+ border-color: #41403e;
+ color: #41403e
+}
+.alert-primary .btn-close {
+ color: #5b5a57
+}
+.alert-primary .btn-close:active,
+.alert-primary .btn-close:focus,
+.alert-primary .btn-close:hover {
+ color: #272625
+}
+.alert-secondary {
+ background-color: #deefff;
+ border-color: #0071de;
+ color: #0071de
+}
+.alert-secondary .btn-close {
+ color: #128bff
+}
+.alert-secondary .btn-close:active,
+.alert-secondary .btn-close:focus,
+.alert-secondary .btn-close:hover {
+ color: #0057ab
+}
+.alert-success {
+ background-color: #d0dbc2;
+ border-color: #86a361;
+ color: #86a361
+}
+.alert-success .btn-close {
+ color: #9fb681
+}
+.alert-success .btn-close:active,
+.alert-success .btn-close:focus,
+.alert-success .btn-close:hover {
+ color: #6c844d
+}
+.alert-warning {
+ background-color: #f5f0c6;
+ border-color: #ddcd45;
+ color: #ddcd45
+}
+.alert-warning .btn-close {
+ color: #e5d970
+}
+.alert-warning .btn-close:active,
+.alert-warning .btn-close:focus,
+.alert-warning .btn-close:hover {
+ color: #cab925
+}
+.alert-danger {
+ background-color: #f0cbc9;
+ border-color: #a7342d;
+ color: #a7342d
+}
+.alert-danger .btn-close {
+ color: #cb453c
+}
+.alert-danger .btn-close:active,
+.alert-danger .btn-close:focus,
+.alert-danger .btn-close:hover {
+ color: #7f2722
+}
+.alert-muted {
+ background-color: #e6e7e9;
+ border-color: #868e96;
+ color: #868e96
+}
+.alert-muted .btn-close {
+ color: #a1a8ae
+}
+.alert-muted .btn-close:active,
+.alert-muted .btn-close:focus,
+.alert-muted .btn-close:hover {
+ color: #6c757d
+}
+.alert-state {
+ display: none
+}
+.alert-state:checked + .dismissible {
+ border-width: 0;
+ margin: 0;
+ max-height: 0;
+ opacity: 0;
+ padding-bottom: 0;
+ padding-top: 0
+}
+article .article-title {
+ font-size: 3rem
+}
+article .article-meta {
+ color: #868e96;
+ font-size: 15px
+}
+article .article-meta a {
+ background-image: none;
+ color: #41403e
+}
+article .article-meta a:hover {
+ color: rgba(0,0,0,.7)
+}
+article .text-lead {
+ font-size: 30px;
+ line-height: 1.3;
+ margin: 35px
+}
+article button:not(:first-of-type) {
+ margin-left: 2rem
+}
+@media only screen and (max-width:480px) {
+ article button:not(:first-of-type) {
+ margin-left: 0
+ }
+}
+article p {
+ line-height: 1.6
+}
+.badge {
+ border-bottom-left-radius: 15px 255px;
+ border-bottom-right-radius: 225px 15px;
+ border-top-left-radius: 255px 15px;
+ border-top-right-radius: 15px 225px;
+ background-color: #868e96;
+ border: 2px solid #41403e;
+ border-color: transparent;
+ color: #fff;
+ display: inline-block;
+ font-size: 75%;
+ font-weight: 700;
+ line-height: 1;
+ padding: .25em .4em;
+ text-align: center;
+ vertical-align: baseline;
+ white-space: nowrap
+}
+.badge.primary {
+ background-color: #41403e
+}
+.badge.secondary {
+ background-color: #0071de
+}
+.badge.success {
+ background-color: #86a361
+}
+.badge.warning {
+ background-color: #ddcd45
+}
+.badge.danger {
+ background-color: #a7342d
+}
+.badge.muted {
+ background-color: #868e96
+}
+.paper-btn,
+[type=button],
+button {
+ border-bottom-left-radius: 15px 255px;
+ border-bottom-right-radius: 225px 15px;
+ border-top-left-radius: 255px 15px;
+ border-top-right-radius: 15px 225px;
+ transition: all 235ms ease 0s;
+ box-shadow: 15px 28px 25px -18px rgba(0,0,0,.2);
+ transition: all 235ms ease-in-out 0s;
+ align-self: center;
+ background: 0 0;
+ border: 2px solid #41403e;
+ color: #41403e;
+ cursor: pointer;
+ display: inline-block;
+ font-size: 1rem;
+ outline: 0;
+ padding: .75rem
+}
+@media only screen and (max-width:520px) {
+ .paper-btn,
+ [type=button],
+ button {
+ display: inline-block;
+ margin: 0 auto;
+ margin-bottom: 1rem;
+ text-align: center
+ }
+}
+.paper-btn.btn-large,
+[type=button].btn-large,
+button.btn-large {
+ transition: all 235ms ease 0s;
+ box-shadow: 20px 38px 34px -26px rgba(0,0,0,.2);
+ font-size: 2rem;
+ padding: 1rem
+}
+.paper-btn.btn-small,
+[type=button].btn-small,
+button.btn-small {
+ transition: all 235ms ease 0s;
+ box-shadow: 10px 19px 17px -13px rgba(0,0,0,.2);
+ font-size: .75rem;
+ padding: .5rem
+}
+.paper-btn.btn-block,
+[type=button].btn-block,
+button.btn-block {
+ display: block;
+ width: 100%
+}
+.paper-btn:hover,
+[type=button]:hover,
+button:hover {
+ -webkit-transform: translate3d(0,2px,0);
+ transform: translate3d(0,2px,0);
+ box-shadow: 2px 8px 8px -5px rgba(0,0,0,.3)
+}
+.paper-btn:focus,
+[type=button]:focus,
+button:focus {
+ border: 2px solid #0071de;
+ box-shadow: 2px 8px 4px -6px rgba(0,0,0,.3)
+}
+.paper-btn:active,
+[type=button]:active,
+button:active {
+ border-color: rgba(0,0,0,.2);
+ transition: none
+}
+.paper-btn.disabled,
+.paper-btn[disabled],
+[type=button].disabled,
+[type=button][disabled],
+button.disabled,
+button[disabled],
+input.paper-btn[disabled],
+input[type=button][disabled],
+select.paper-btn[disabled],
+select[type=button][disabled],
+textarea.paper-btn[disabled],
+textarea[type=button][disabled] {
+ cursor: not-allowed;
+ opacity: .5
+}
+a {
+ background-image: linear-gradient(5deg,transparent 65%,#0071de 80%,transparent 90%),linear-gradient(165deg,transparent 5%,#0071de 15%,transparent 25%),linear-gradient(165deg,transparent 45%,#0071de 55%,transparent 65%),linear-gradient(15deg,transparent 25%,#0071de 35%,transparent 50%);
+ background-position: 0 90%;
+ background-repeat: repeat-x;
+ background-size: 4px 3px;
+ text-decoration: none
+}
+a:visited {
+ color: #41403e;
+ text-decoration: none
+}
+.alert-primary {
+ background-color: #c1c0bd;
+ border-color: #41403e;
+ color: #41403e
+}
+.paper-btn.btn-primary,
+[type=button].btn-primary,
+button.btn-primary {
+ background-color: #c1c0bd;
+ border-color: #41403e;
+ color: #fff
+}
+.paper-btn.btn-primary:hover:active,
+[type=button].btn-primary:hover:active,
+button.btn-primary:hover:active {
+ background-color: #a8a6a3
+}
+.alert-secondary {
+ background-color: #deefff;
+ border-color: #0071de;
+ color: #0071de
+}
+.paper-btn.btn-secondary,
+[type=button].btn-secondary,
+button.btn-secondary {
+ background-color: #deefff;
+ border-color: #0071de;
+ color: #41403e
+}
+.paper-btn.btn-secondary:hover:active,
+[type=button].btn-secondary:hover:active,
+button.btn-secondary:hover:active {
+ background-color: #abd6ff
+}
+.alert-success {
+ background-color: #d0dbc2;
+ border-color: #86a361;
+ color: #86a361
+}
+.paper-btn.btn-success,
+[type=button].btn-success,
+button.btn-success {
+ background-color: #d0dbc2;
+ border-color: #86a361;
+ color: #41403e
+}
+.paper-btn.btn-success:hover:active,
+[type=button].btn-success:hover:active,
+button.btn-success:hover:active {
+ background-color: #b7c9a1
+}
+.alert-warning {
+ background-color: #f5f0c6;
+ border-color: #ddcd45;
+ color: #ddcd45
+}
+.paper-btn.btn-warning,
+[type=button].btn-warning,
+button.btn-warning {
+ background-color: #f5f0c6;
+ border-color: #ddcd45;
+ color: #41403e
+}
+.paper-btn.btn-warning:hover:active,
+[type=button].btn-warning:hover:active,
+button.btn-warning:hover:active {
+ background-color: #ede49b
+}
+.alert-danger {
+ background-color: #f0cbc9;
+ border-color: #a7342d;
+ color: #a7342d
+}
+.paper-btn.btn-danger,
+[type=button].btn-danger,
+button.btn-danger {
+ background-color: #f0cbc9;
+ border-color: #a7342d;
+ color: #41403e
+}
+.paper-btn.btn-danger:hover:active,
+[type=button].btn-danger:hover:active,
+button.btn-danger:hover:active {
+ background-color: #e6a5a1
+}
+.alert-muted {
+ background-color: #e6e7e9;
+ border-color: #868e96;
+ color: #868e96
+}
+.paper-btn.btn-muted,
+[type=button].btn-muted,
+button.btn-muted {
+ background-color: #e6e7e9;
+ border-color: #868e96;
+ color: #41403e
+}
+.paper-btn.btn-muted:hover:active,
+[type=button].btn-muted:hover:active,
+button.btn-muted:hover:active {
+ background-color: #caced1
+}
+.card {
+ transition: all 235ms ease 0s;
+ box-shadow: 15px 28px 25px -18px rgba(0,0,0,.2);
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+ border: 2px solid #e6e7e9;
+ display: flex;
+ flex-direction: column;
+ position: relative;
+ will-change: transform;
+ word-wrap: break-word
+}
+.card:hover {
+ -webkit-transform: translate3d(0,2px,0);
+ transform: translate3d(0,2px,0);
+ box-shadow: 2px 8px 8px -5px rgba(0,0,0,.3)
+}
+.card .card-footer,
+.card .card-header {
+ background-color: rgba(0,0,0,.03);
+ padding: .75rem 1.25rem
+}
+.card .card-header {
+ border-bottom: 2px solid #e6e7e9
+}
+.card .card-footer {
+ border-top: 2px solid #e6e7e9
+}
+.card .card-body {
+ flex: 1 1 auto;
+ padding: 1.25rem
+}
+.card .card-body .card-title,
+.card .card-body h4 {
+ margin-bottom: .5rem;
+ margin-top: 0
+}
+.card .card-body .card-subtitle,
+.card .card-body h5 {
+ color: #0071de;
+ margin-bottom: .5rem;
+ margin-top: 0
+}
+.card .card-body .card-text,
+.card .card-body p {
+ margin-bottom: 1rem;
+ margin-top: 0
+}
+.card .card-body .card-link + .card-link,
+.card .card-body a + a {
+ margin-left: 1.25rem
+}
+.card .image-bottom,
+.card .image-top,
+.card img {
+ border: 0;
+ border-radius: 0
+}
+input,
+select,
+textarea {
+ background: 0 0;
+ border: 2px solid #41403e;
+ border-bottom-left-radius: 15px 255px;
+ border-bottom-right-radius: 225px 15px;
+ border-top-left-radius: 255px 15px;
+ border-top-right-radius: 15px 225px;
+ color: #41403e;
+ display: block;
+ font-size: 1rem;
+ outline: 0;
+ padding: .5rem
+}
+input:focus,
+select:focus,
+textarea:focus {
+ border: 2px solid #0071de
+}
+select {
+ height: 2.35rem
+}
+.disabled,
+input.disabled,
+input[disabled],
+select.disabled,
+select[disabled],
+textarea.disabled,
+textarea[disabled] {
+ cursor: not-allowed;
+ opacity: .5
+}
+.form-group {
+ margin-bottom: 1rem
+}
+.form-group > label,
+.form-group legend {
+ display: inline-block;
+ margin-bottom: .5rem
+}
+.form-group .input-block {
+ width: 100%
+}
+.form-group textarea {
+ max-height: 90vh;
+ max-width: 100%
+}
+.form-group textarea.no-resize {
+ resize: none
+}
+.form-group .paper-check,
+.form-group .paper-radio {
+ cursor: pointer;
+ display: block;
+ margin-bottom: .5rem
+}
+.form-group .paper-check input,
+.form-group .paper-radio input {
+ border: 0;
+ height: 1px;
+ margin: -1px;
+ opacity: 0;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 1px
+}
+.form-group .paper-check input + span,
+.form-group .paper-radio input + span {
+ display: block
+}
+.form-group .paper-check input + span::before,
+.form-group .paper-radio input + span::before {
+ border: 2px solid #41403e;
+ content: '';
+ display: inline-block;
+ height: 1rem;
+ margin-right: .75em;
+ position: relative;
+ vertical-align: -.25em;
+ width: 1rem
+}
+.form-group .paper-check input[type=radio] + span::before,
+.form-group .paper-radio input[type=radio] + span::before {
+ border-bottom-left-radius: .7rem 1rem;
+ border-bottom-right-radius: 1rem .9rem;
+ border-top-left-radius: 1rem 1rem;
+ border-top-right-radius: 1rem .6rem
+}
+.form-group .paper-check input[type=radio]:checked + span::before,
+.form-group .paper-radio input[type=radio]:checked + span::before {
+ background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%20100%20100'%3E%3Cpath%20fill%3D'%230071de'%20d%3D'M49.346,46.341c-3.79-2.005,3.698-10.294,7.984-8.89%20c8.713,2.852,4.352,20.922-4.901,20.269c-4.684-0.33-12.616-7.405-14.38-11.818c-2.375-5.938,7.208-11.688,11.624-13.837%20c9.078-4.42,18.403-3.503,22.784,6.651c4.049,9.378,6.206,28.09-1.462,36.276c-7.091,7.567-24.673,2.277-32.357-1.079%20c-11.474-5.01-24.54-19.124-21.738-32.758c3.958-19.263,28.856-28.248,46.044-23.244c20.693,6.025,22.012,36.268,16.246,52.826%20c-5.267,15.118-17.03,26.26-33.603,21.938c-11.054-2.883-20.984-10.949-28.809-18.908C9.236,66.096,2.704,57.597,6.01,46.371%20c3.059-10.385,12.719-20.155,20.892-26.604C40.809,8.788,58.615,1.851,75.058,12.031c9.289,5.749,16.787,16.361,18.284,27.262%20c0.643,4.698,0.646,10.775-3.811,13.746'%3E%3C/path%3E%3C/svg%3E") left center no-repeat
+}
+.form-group .paper-check input[type=checkbox] + span::before,
+.form-group .paper-radio input[type=checkbox] + span::before {
+ border-bottom-left-radius: 15px 255px;
+ border-bottom-right-radius: 225px 15px;
+ border-top-left-radius: 255px 15px;
+ border-top-right-radius: 15px 225px
+}
+.form-group .paper-check input[type=checkbox]:checked + span::before,
+.form-group .paper-radio input[type=checkbox]:checked + span::before {
+ background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%20100%20100'%3E%3Cpath%20stroke%3D'%230071de'%20fill-opacity%3D'0'%20stroke-width%3D'16'%20d%3D'm13,62c0.61067,1.6%201.3045,2.3045%201.75717,2.75716c0.72683,0.72684%201.24283,1.24284%202.07617,2.07617c0.54133,0.54133%201.04116,1.06035%201.82833,1.82383c0.5781,0.5607%201.00502,0.96983%202.02633,1.74417c0.55877,0.42365%201.191,0.84034%201.884,1.284c1.16491,0.74577%201.59777,1.00147%202.5,1.55067c0.4692,0.28561%201.43689,0.86868%201.93067,1.16534c0.99711,0.59904%201.99667,1.19755%202.49283,1.49866c0.98501,0.59779%201.47073,0.89648%201.94733,1.2c1.3971,0.88972%201.83738,1.19736%202.7,1.7955c0.42201,0.29262%201.24022,0.87785%202.05583,1.41917c0.79531,0.52785%201.59376,1.0075%202.38,1.43867c0.74477,0.40842%201.45167,0.75802%202.37817,1.22517c0.76133,0.38387%201.54947,0.82848%202.40717,1.41084c0.7312,0.49647%201.49563,1.08231%202.27884,1.258c0.35564,0.07978%200.14721,-0.95518%200.35733,-1.86867c0.18092,-0.78651%200.98183,-1.2141%200.99983,-2.07867c0.02073,-0.99529%200.07916,-1.79945%200.42533,-2.56133c0.43607,-0.95973%200.53956,-1.66774%200.79617,-2.68183c0.18888,-0.74645%200.39764,-1.31168%200.7785,-2.6235c0.20865,-0.71867%200.41483,-1.48614%200.708,-2.28c0.15452,-0.41843%200.77356,-1.73138%201.348,-2.64133c0.30581,-0.48443%200.65045,-0.97043%201.0065,-1.4745c0.74776,-1.05863%201.1531,-1.60163%201.9375,-2.77084c0.40621,-0.60548%200.80272,-1.23513%201.2045,-1.8765c0.40757,-0.65062%200.81464,-1.31206%201.2315,-1.9755c0.41946,-0.66757%200.83374,-1.34258%201.73067,-2.648c0.44696,-0.65053%200.91436,-1.28356%201.386,-1.9095c0.46972,-0.6234%200.94725,-1.2364%201.422,-1.8465c0.94116,-1.20947%201.86168,-2.40844%202.30367,-3.0105c0.438,-0.59664%200.86246,-1.19396%201.27501,-1.7895c0.40743,-0.58816%200.80352,-1.17234%201.185,-1.7535c1.10526,-1.68381%201.44079,-2.23511%201.77633,-2.7705c0.32878,-0.52461%200.96306,-1.5459%201.27467,-2.04c0.60654,-0.96177%201.20782,-1.88193%201.51051,-2.325c0.59013,-0.86381%201.17888,-1.68032%201.46416,-2.075c0.5498,-0.76063%201.31747,-1.8231%201.77883,-2.4895c0.43918,-0.63437%200.85266,-1.25267%201.45717,-2.15717c0.59549,-0.891%200.96531,-1.46814%201.51466,-2.22933c0.58413,-0.80936%201.12566,-1.40253%201.83801,-2.12333c0.61304,-0.62031%200.45171,-1.48306%200.7045,-2.34733c0.25668,-0.87762%200.75447,-1.62502%201,-2.40983c0.25128,-0.8032%200.7633,-1.39453%201.33217,-2.25417c0.54528,-0.82398%200.73415,-1.6714%201.31516,-2.336c0.55639,-0.63644%201.38658,-1.22588%201.8595,-1.9c0.5082,-0.72441%200.78867,-1.4%201.60266,-1.56667l0.71184,-0.4905'%3E%3C/path%3E%3C/svg%3E") left center no-repeat
+}
+fieldset.form-group {
+ border: 0;
+ padding: 0
+}
+.modal {
+ transition: opacity 235ms ease-in-out 0s;
+ background: rgba(0,0,0,.6);
+ bottom: 0;
+ flex: 1 1 auto;
+ left: 0;
+ opacity: 0;
+ position: fixed;
+ right: 0;
+ text-align: left;
+ top: 0;
+ visibility: hidden;
+ word-wrap: break-word;
+ z-index: 12
+}
+.modal-bg {
+ bottom: 0;
+ cursor: pointer;
+ left: 0;
+ position: absolute;
+ right: 0;
+ top: 0
+}
+.modal .modal-body {
+ transition: all 235ms ease-in-out 0s;
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+ background: #fff;
+ border: 2px solid #e6e7e9;
+ left: 50%;
+ padding: 1.25rem;
+ position: absolute;
+ top: 0;
+ -webkit-transform: translate(-50%,-50%);
+ transform: translate(-50%,-50%)
+}
+@media only screen and (max-width:768px) {
+ .modal .modal-body {
+ box-sizing: border-box;
+ width: 90%
+ }
+}
+.modal .btn-close {
+ transition: all 235ms ease-in-out 0s;
+ color: #c1c0bd;
+ cursor: pointer;
+ font-size: 30px;
+ height: 1.1rem;
+ position: absolute;
+ right: 1rem;
+ text-decoration: none;
+ top: 1rem;
+ width: 1.1rem
+}
+.modal .btn-close:active,
+.modal .btn-close:focus,
+.modal .btn-close:hover {
+ color: #41403e
+}
+.modal .modal-title,
+.modal h4 {
+ margin-bottom: .5rem;
+ margin-top: 0
+}
+.modal .modal-subtitle,
+.modal h5 {
+ color: #0071de;
+ margin-bottom: .5rem;
+ margin-top: 0
+}
+.modal .modal-text,
+.modal p {
+ margin-bottom: 1rem;
+ margin-top: 0
+}
+.modal .modal-link + .modal-link,
+.modal a + a {
+ margin-left: 1.25rem
+}
+.modal .paper-btn {
+ background: #fff;
+ display: inline-block;
+ text-decoration: none
+}
+.modal .modal-link,
+.modal a {
+ background-image: linear-gradient(5deg,transparent 65%,#0071de 80%,transparent 90%),linear-gradient(165deg,transparent 5%,#0071de 15%,transparent 25%),linear-gradient(165deg,transparent 45%,#0071de 55%,transparent 65%),linear-gradient(15deg,transparent 25%,#0071de 35%,transparent 50%);
+ background-position: 0 90%;
+ background-repeat: repeat-x;
+ background-size: 4px 3px;
+ cursor: pointer;
+ text-decoration: none
+}
+.modal .modal-link:focus,
+.modal .modal-link:hover,
+.modal .modal-link:visited,
+.modal a:focus,
+.modal a:hover,
+.modal a:visited {
+ color: #41403e;
+ text-decoration: none
+}
+.modal-state {
+ display: none
+}
+.modal-state:checked + .modal {
+ opacity: 1;
+ visibility: visible
+}
+.modal-state:checked + .modal .modal-body {
+ top: 50%
+}
+[popover-bottom],
+[popover-left],
+[popover-right],
+[popover-top] {
+ margin: 24px;
+ position: relative
+}
+[popover-bottom]:hover::after,
+[popover-left]:hover::after,
+[popover-right]:hover::after,
+[popover-top]:hover::after {
+ opacity: 1;
+ transition: opacity .2s ease-out
+}
+[popover-bottom]::after,
+[popover-left]::after,
+[popover-right]::after,
+[popover-top]::after {
+ border-bottom-left-radius: 15px 255px;
+ border-bottom-right-radius: 225px 15px;
+ border-top-left-radius: 255px 15px;
+ border-top-right-radius: 15px 225px;
+ transition: opacity 235ms ease-in-out 0s;
+ background: rgba(0,0,0,.7);
+ border: 2px solid #41403e;
+ color: #fff;
+ font-size: .7em;
+ left: 50%;
+ min-width: 80px;
+ opacity: 0;
+ padding: 4px 2px;
+ position: absolute;
+ text-align: center;
+ top: -6px;
+ -webkit-transform: translateX(-50%) translateY(-100%);
+ transform: translateX(-50%) translateY(-100%)
+}
+[popover-left]::before {
+ left: 0;
+ margin-left: -12px;
+ top: 50%;
+ -webkit-transform: translateY(-50%) rotate(-90deg);
+ transform: translateY(-50%) rotate(-90deg)
+}
+[popover-left]::after {
+ content: attr(popover-left);
+ left: 0;
+ margin-left: -8px;
+ top: 50%;
+ -webkit-transform: translateX(-100%) translateY(-50%);
+ transform: translateX(-100%) translateY(-50%)
+}
+[popover-right]::before {
+ left: 100%;
+ margin-left: 1px;
+ top: 50%;
+ -webkit-transform: translatey(-50%) rotate(90deg);
+ transform: translatey(-50%) rotate(90deg)
+}
+[popover-right]::after {
+ content: attr(popover-right);
+ left: 100%;
+ margin-left: 8px;
+ top: 50%;
+ -webkit-transform: translateX(0) translateY(-50%);
+ transform: translateX(0) translateY(-50%)
+}
+[popover-top]::before {
+ left: 50%
+}
+[popover-top]::after {
+ content: attr(popover-top);
+ left: 50%
+}
+[popover-bottom]::before {
+ margin-top: 8px;
+ top: 100%;
+ -webkit-transform: translateX(-50%) translatey(-100%) rotate(-180deg);
+ transform: translateX(-50%) translatey(-100%) rotate(-180deg)
+}
+[popover-bottom]::after {
+ content: attr(popover-bottom);
+ margin-top: 8px;
+ top: 100%;
+ -webkit-transform: translateX(-50%) translateY(0);
+ transform: translateX(-50%) translateY(0)
+}
+.progress {
+ border-bottom-left-radius: 20px 115px;
+ border-bottom-right-radius: 15px 105px;
+ border-top-left-radius: 250px 15px;
+ border-top-right-radius: 25px 80px;
+ border: 2px solid #41403e;
+ box-shadow: 2px 8px 8px -5px rgba(0,0,0,.3);
+ height: 1.2rem;
+ overflow: hidden;
+ width: 100%
+}
+.progress .bar {
+ border-bottom-left-radius: 20px 115px;
+ border-bottom-right-radius: 15px 105px;
+ border-top-left-radius: 250px 15px;
+ border-top-right-radius: 25px 80px;
+ transition: all 235ms ease-in-out 0s;
+ background-color: #c1c0bd;
+ border-right: 2px solid #41403e;
+ display: flex;
+ flex-direction: column;
+ font-size: .6rem;
+ height: 100%;
+ justify-content: center;
+ text-align: center;
+ width: 0%
+}
+.progress .bar.striped {
+ background: repeating-linear-gradient(45deg,#c1c0bd,#c1c0bd .25rem,#a8a6a3 .25rem,#a8a6a3 .5rem)
+}
+.progress .bar.primary {
+ background-color: #c1c0bd
+}
+.progress .bar.primary.striped {
+ background: repeating-linear-gradient(45deg,#c1c0bd,#c1c0bd .25rem,#a8a6a3 .25rem,#a8a6a3 .5rem)
+}
+.progress .bar.secondary {
+ background-color: #deefff
+}
+.progress .bar.secondary.striped {
+ background: repeating-linear-gradient(45deg,#deefff,#deefff .25rem,#abd6ff .25rem,#abd6ff .5rem)
+}
+.progress .bar.success {
+ background-color: #d0dbc2
+}
+.progress .bar.success.striped {
+ background: repeating-linear-gradient(45deg,#d0dbc2,#d0dbc2 .25rem,#b7c9a1 .25rem,#b7c9a1 .5rem)
+}
+.progress .bar.warning {
+ background-color: #f5f0c6
+}
+.progress .bar.warning.striped {
+ background: repeating-linear-gradient(45deg,#f5f0c6,#f5f0c6 .25rem,#ede49b .25rem,#ede49b .5rem)
+}
+.progress .bar.danger {
+ background-color: #f0cbc9
+}
+.progress .bar.danger.striped {
+ background: repeating-linear-gradient(45deg,#f0cbc9,#f0cbc9 .25rem,#e6a5a1 .25rem,#e6a5a1 .5rem)
+}
+.progress .bar.muted {
+ background-color: #e6e7e9
+}
+.progress .bar.muted.striped {
+ background: repeating-linear-gradient(45deg,#e6e7e9,#e6e7e9 .25rem,#caced1 .25rem,#caced1 .5rem)
+}
+.progress .bar.w-0 {
+ width: 0%
+}
+.progress .bar.w-1 {
+ width: 1%
+}
+.progress .bar.w-2 {
+ width: 2%
+}
+.progress .bar.w-3 {
+ width: 3%
+}
+.progress .bar.w-4 {
+ width: 4%
+}
+.progress .bar.w-5 {
+ width: 5%
+}
+.progress .bar.w-6 {
+ width: 6%
+}
+.progress .bar.w-7 {
+ width: 7%
+}
+.progress .bar.w-8 {
+ width: 8%
+}
+.progress .bar.w-9 {
+ width: 9%
+}
+.progress .bar.w-10 {
+ width: 10%
+}
+.progress .bar.w-11 {
+ width: 11%
+}
+.progress .bar.w-12 {
+ width: 12%
+}
+.progress .bar.w-13 {
+ width: 13%
+}
+.progress .bar.w-14 {
+ width: 14%
+}
+.progress .bar.w-15 {
+ width: 15%
+}
+.progress .bar.w-16 {
+ width: 16%
+}
+.progress .bar.w-17 {
+ width: 17%
+}
+.progress .bar.w-18 {
+ width: 18%
+}
+.progress .bar.w-19 {
+ width: 19%
+}
+.progress .bar.w-20 {
+ width: 20%
+}
+.progress .bar.w-21 {
+ width: 21%
+}
+.progress .bar.w-22 {
+ width: 22%
+}
+.progress .bar.w-23 {
+ width: 23%
+}
+.progress .bar.w-24 {
+ width: 24%
+}
+.progress .bar.w-25 {
+ width: 25%
+}
+.progress .bar.w-26 {
+ width: 26%
+}
+.progress .bar.w-27 {
+ width: 27%
+}
+.progress .bar.w-28 {
+ width: 28%
+}
+.progress .bar.w-29 {
+ width: 29%
+}
+.progress .bar.w-30 {
+ width: 30%
+}
+.progress .bar.w-31 {
+ width: 31%
+}
+.progress .bar.w-32 {
+ width: 32%
+}
+.progress .bar.w-33 {
+ width: 33%
+}
+.progress .bar.w-34 {
+ width: 34%
+}
+.progress .bar.w-35 {
+ width: 35%
+}
+.progress .bar.w-36 {
+ width: 36%
+}
+.progress .bar.w-37 {
+ width: 37%
+}
+.progress .bar.w-38 {
+ width: 38%
+}
+.progress .bar.w-39 {
+ width: 39%
+}
+.progress .bar.w-40 {
+ width: 40%
+}
+.progress .bar.w-41 {
+ width: 41%
+}
+.progress .bar.w-42 {
+ width: 42%
+}
+.progress .bar.w-43 {
+ width: 43%
+}
+.progress .bar.w-44 {
+ width: 44%
+}
+.progress .bar.w-45 {
+ width: 45%
+}
+.progress .bar.w-46 {
+ width: 46%
+}
+.progress .bar.w-47 {
+ width: 47%
+}
+.progress .bar.w-48 {
+ width: 48%
+}
+.progress .bar.w-49 {
+ width: 49%
+}
+.progress .bar.w-50 {
+ width: 50%
+}
+.progress .bar.w-51 {
+ width: 51%
+}
+.progress .bar.w-52 {
+ width: 52%
+}
+.progress .bar.w-53 {
+ width: 53%
+}
+.progress .bar.w-54 {
+ width: 54%
+}
+.progress .bar.w-55 {
+ width: 55%
+}
+.progress .bar.w-56 {
+ width: 56%
+}
+.progress .bar.w-57 {
+ width: 57%
+}
+.progress .bar.w-58 {
+ width: 58%
+}
+.progress .bar.w-59 {
+ width: 59%
+}
+.progress .bar.w-60 {
+ width: 60%
+}
+.progress .bar.w-61 {
+ width: 61%
+}
+.progress .bar.w-62 {
+ width: 62%
+}
+.progress .bar.w-63 {
+ width: 63%
+}
+.progress .bar.w-64 {
+ width: 64%
+}
+.progress .bar.w-65 {
+ width: 65%
+}
+.progress .bar.w-66 {
+ width: 66%
+}
+.progress .bar.w-67 {
+ width: 67%
+}
+.progress .bar.w-68 {
+ width: 68%
+}
+.progress .bar.w-69 {
+ width: 69%
+}
+.progress .bar.w-70 {
+ width: 70%
+}
+.progress .bar.w-71 {
+ width: 71%
+}
+.progress .bar.w-72 {
+ width: 72%
+}
+.progress .bar.w-73 {
+ width: 73%
+}
+.progress .bar.w-74 {
+ width: 74%
+}
+.progress .bar.w-75 {
+ width: 75%
+}
+.progress .bar.w-76 {
+ width: 76%
+}
+.progress .bar.w-77 {
+ width: 77%
+}
+.progress .bar.w-78 {
+ width: 78%
+}
+.progress .bar.w-79 {
+ width: 79%
+}
+.progress .bar.w-80 {
+ width: 80%
+}
+.progress .bar.w-81 {
+ width: 81%
+}
+.progress .bar.w-82 {
+ width: 82%
+}
+.progress .bar.w-83 {
+ width: 83%
+}
+.progress .bar.w-84 {
+ width: 84%
+}
+.progress .bar.w-85 {
+ width: 85%
+}
+.progress .bar.w-86 {
+ width: 86%
+}
+.progress .bar.w-87 {
+ width: 87%
+}
+.progress .bar.w-88 {
+ width: 88%
+}
+.progress .bar.w-89 {
+ width: 89%
+}
+.progress .bar.w-90 {
+ width: 90%
+}
+.progress .bar.w-91 {
+ width: 91%
+}
+.progress .bar.w-92 {
+ width: 92%
+}
+.progress .bar.w-93 {
+ width: 93%
+}
+.progress .bar.w-94 {
+ width: 94%
+}
+.progress .bar.w-95 {
+ width: 95%
+}
+.progress .bar.w-96 {
+ width: 96%
+}
+.progress .bar.w-97 {
+ width: 97%
+}
+.progress .bar.w-98 {
+ width: 98%
+}
+.progress .bar.w-99 {
+ width: 99%
+}
+.progress .bar.w-100 {
+ width: 100%
+}
+.progress .bar.w-0,
+.progress .bar.w-100 {
+ border-right: 0
+}
+.tabs .content {
+ display: none;
+ padding: .75rem 0 0
+}
+.tabs input {
+ display: none
+}
+.tabs input:checked + label {
+ border-bottom: solid 3px #0071de;
+ color: #41403e
+}
+.tabs input[id=tab1]:checked ~ div[id=content1] {
+ display: block
+}
+.tabs input[id=tab2]:checked ~ div[id=content2] {
+ display: block
+}
+.tabs input[id=tab3]:checked ~ div[id=content3] {
+ display: block
+}
+.tabs input[id=tab4]:checked ~ div[id=content4] {
+ display: block
+}
+.tabs input[id=tab5]:checked ~ div[id=content5] {
+ display: block
+}
+.tabs label {
+ color: #c1c0bd;
+ display: inline-block;
+ font-weight: 600;
+ margin: 0 0 -1px;
+ padding: .75rem;
+ text-align: center
+}
+.tabs label:hover {
+ color: #868e96;
+ cursor: pointer
+}
+.margin {
+ margin: 1rem
+}
+.margin-top {
+ margin-top: 1rem
+}
+.margin-top-large {
+ margin-top: 2rem
+}
+.margin-top-small {
+ margin-top: .5rem
+}
+.margin-top-none {
+ margin-top: 0
+}
+.margin-right {
+ margin-right: 1rem
+}
+.margin-right-large {
+ margin-right: 2rem
+}
+.margin-right-small {
+ margin-right: .5rem
+}
+.margin-right-none {
+ margin-right: 0
+}
+.margin-bottom {
+ margin-bottom: 1rem
+}
+.margin-bottom-large {
+ margin-bottom: 2rem
+}
+.margin-bottom-small {
+ margin-bottom: .5rem
+}
+.margin-bottom-none {
+ margin-bottom: 0
+}
+.margin-left {
+ margin-left: 1rem
+}
+.margin-left-large {
+ margin-left: 2rem
+}
+.margin-left-small {
+ margin-left: .5rem
+}
+.margin-left-none {
+ margin-left: 0
+}
+.margin-large {
+ margin: 2rem
+}
+.margin-small {
+ margin: .5rem
+}
+.margin-none {
+ margin: 0
+}
+.padding {
+ padding: 1rem
+}
+.padding-top {
+ padding-top: 1rem
+}
+.padding-top-large {
+ padding-top: 2rem
+}
+.padding-top-small {
+ padding-top: .5rem
+}
+.padding-top-none {
+ padding-top: 0
+}
+.padding-right {
+ padding-right: 1rem
+}
+.padding-right-large {
+ padding-right: 2rem
+}
+.padding-right-small {
+ padding-right: .5rem
+}
+.padding-right-none {
+ padding-right: 0
+}
+.padding-bottom {
+ padding-bottom: 1rem
+}
+.padding-bottom-large {
+ padding-bottom: 2rem
+}
+.padding-bottom-small {
+ padding-bottom: .5rem
+}
+.padding-bottom-none {
+ padding-bottom: 0
+}
+.padding-left {
+ padding-left: 1rem
+}
+.padding-left-large {
+ padding-left: 2rem
+}
+.padding-left-small {
+ padding-left: .5rem
+}
+.padding-left-none {
+ padding-left: 0
+}
+.padding-large {
+ padding: 2rem
+}
+.padding-small {
+ padding: .5rem
+}
+.padding-none {
+ padding: 0
+}
+nav {
+ background-color: #fff;
+ display: flex;
+ padding: .3rem;
+ position: relative;
+ width: 100%;
+ z-index: 100
+}
+@media only screen and (max-width:768px) {
+ nav {
+ display: block
+ }
+}
+nav .bar1,
+nav .bar2,
+nav .bar3 {
+ background-color: #41403e;
+ border-bottom: 5px solid #41403e;
+ border-bottom-left-radius: 15px 5px;
+ border-bottom-right-radius: 15px 3px;
+ color: #41403e;
+ margin: 6px 0;
+ transition: .4s;
+ width: 2rem
+}
+nav .collapsible input[id^=collapsible]:checked + button .bar1 {
+ -webkit-transform: rotate(-45deg) translate(-9px,7px);
+ transform: rotate(-45deg) translate(-9px,7px)
+}
+nav .collapsible input[id^=collapsible]:checked + button .bar2 {
+ opacity: 0
+}
+nav .collapsible input[id^=collapsible]:checked + button .bar3 {
+ -webkit-transform: rotate(45deg) translate(-8px,-9px);
+ transform: rotate(45deg) translate(-8px,-9px)
+}
+nav.split-nav {
+ justify-content: space-between
+}
+nav.fixed {
+ left: 0;
+ position: fixed;
+ right: 0;
+ top: 0
+}
+nav div {
+ margin: 0 1rem
+}
+nav ul.inline {
+ margin-bottom: 0;
+ margin-top: 10px;
+ padding: 0
+}
+nav ul.inline li {
+ display: inline-block;
+ margin: 0 .5rem
+}
+@media only screen and (max-width:768px) {
+ nav ul.inline li {
+ display: block;
+ margin: 1rem 0
+ }
+}
+nav a {
+ background-image: none;
+ border-bottom: 5px solid #41403e;
+ border-bottom-left-radius: 15px 3px;
+ border-bottom-right-radius: 15px 5px;
+ color: #41403e;
+ padding-bottom: .1rem
+}
+nav a:hover {
+ border-bottom: 5px solid #c1c0bd
+}
+nav ul.inline li a {
+ font-size: 1.3rem
+}
+nav ul.inline li::before {
+ content: ''
+}
+@media only screen and (max-width:992px) {
+ nav ul {
+ text-align: center
+ }
+}
+nav .nav-brand h1,
+nav .nav-brand h2,
+nav .nav-brand h3,
+nav .nav-brand h4,
+nav .nav-brand h5,
+nav .nav-brand h6 {
+ margin: 0;
+ margin-bottom: .2rem
+}
+nav .collapsible input[id^=collapsible]:checked ~ div.collapsible-body {
+ margin: 0;
+ max-height: 960px;
+ opacity: 1;
+ padding: 0
+}
+nav .collapsible .collapsible-body,
+nav .collapsible:nth-of-type(1) {
+ border: 0
+}
+@media only screen and (min-width:769px) {
+ nav .collapsible .collapsible-body,
+ nav .collapsible:nth-of-type(1) {
+ display: contents
+ }
+}
+nav div.collapsible-body {
+ padding: none
+}
+nav .collapsible label {
+ border-bottom: 0;
+ padding: 0
+}
+nav .collapsible > button {
+ background-color: #fff;
+ display: none;
+ font-size: .5rem;
+ margin-right: 1rem;
+ padding: .25rem;
+ position: absolute;
+ right: 0;
+ top: .2rem
+}
+@media only screen and (max-width:768px) {
+ nav .collapsible > button {
+ display: block
+ }
+} \ No newline at end of file
diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png
new file mode 100644
index 0000000..da89e37
--- /dev/null
+++ b/static/favicon-16x16.png
Binary files differ
diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png
new file mode 100644
index 0000000..237af40
--- /dev/null
+++ b/static/favicon-32x32.png
Binary files differ
diff --git a/static/favicon.ico b/static/favicon.ico
new file mode 100644
index 0000000..edd5b55
--- /dev/null
+++ b/static/favicon.ico
Binary files differ
diff --git a/static/img/geometry2.png b/static/img/geometry2.png
new file mode 100644
index 0000000..d43966e
--- /dev/null
+++ b/static/img/geometry2.png
Binary files differ
diff --git a/static/mstile-144x144.png b/static/mstile-144x144.png
new file mode 100644
index 0000000..9cff6c7
--- /dev/null
+++ b/static/mstile-144x144.png
Binary files differ
diff --git a/static/mstile-150x150.png b/static/mstile-150x150.png
new file mode 100644
index 0000000..a666b07
--- /dev/null
+++ b/static/mstile-150x150.png
Binary files differ
diff --git a/static/mstile-310x150.png b/static/mstile-310x150.png
new file mode 100644
index 0000000..91e7071
--- /dev/null
+++ b/static/mstile-310x150.png
Binary files differ
diff --git a/static/mstile-310x310.png b/static/mstile-310x310.png
new file mode 100644
index 0000000..8f0340d
--- /dev/null
+++ b/static/mstile-310x310.png
Binary files differ
diff --git a/static/mstile-70x70.png b/static/mstile-70x70.png
new file mode 100644
index 0000000..17a29aa
--- /dev/null
+++ b/static/mstile-70x70.png
Binary files differ
diff --git a/static/safari-pinned-tab.svg b/static/safari-pinned-tab.svg
new file mode 100644
index 0000000..5e76bca
--- /dev/null
+++ b/static/safari-pinned-tab.svg
@@ -0,0 +1,72 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
+ width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000"
+ preserveAspectRatio="xMidYMid meet">
+<metadata>
+Created by potrace 1.11, written by Peter Selinger 2001-2013
+</metadata>
+<g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)"
+fill="#000000" stroke="none">
+<path d="M6255 6994 c-123 -25 -239 -75 -373 -160 -29 -19 -55 -34 -58 -34 -4
+0 -43 -22 -88 -49 -44 -27 -364 -212 -711 -411 -346 -200 -642 -370 -657 -379
+-24 -14 -219 -126 -273 -157 -11 -6 -108 -62 -215 -124 -163 -95 -1331 -768
+-1553 -896 -38 -21 -76 -43 -85 -49 -32 -19 -248 -143 -287 -165 -22 -12 -80
+-46 -130 -75 -49 -29 -109 -63 -131 -76 -23 -13 -139 -80 -258 -149 -119 -69
+-231 -133 -249 -144 -17 -10 -88 -51 -157 -91 -69 -39 -145 -83 -170 -97 -25
+-14 -101 -58 -170 -98 -129 -75 -140 -81 -275 -158 -124 -71 -165 -101 -231
+-167 -186 -190 -234 -483 -119 -730 60 -131 157 -232 283 -298 37 -19 195 -88
+352 -152 157 -64 304 -126 327 -136 23 -10 44 -19 48 -19 3 0 24 -9 48 -19 23
+-11 213 -90 422 -176 209 -86 390 -161 402 -167 l22 -11 4 -636 c1 -350 6
+-649 11 -666 61 -239 236 -414 481 -482 106 -30 264 -25 369 11 44 15 92 36
+107 46 15 11 31 20 37 20 29 0 177 168 334 380 382 515 438 590 443 590 2 0
+44 -16 92 -36 79 -32 112 -46 178 -75 11 -4 85 -35 165 -67 237 -97 783 -322
+805 -332 74 -34 327 -134 374 -146 171 -46 378 -10 529 94 169 115 258 267
+292 497 5 39 12 84 15 100 12 70 15 92 20 135 4 25 10 68 15 95 8 42 19 116
+36 230 7 51 55 363 59 385 3 14 7 50 11 80 3 30 8 58 10 61 1 3 6 28 9 55 6
+49 11 80 20 132 2 15 6 41 9 57 3 17 8 53 11 80 4 28 8 57 10 65 2 8 7 35 10
+60 3 25 10 70 15 100 5 30 12 73 15 95 8 57 25 165 30 195 3 14 7 45 10 70 3
+25 8 56 10 70 3 14 7 39 9 55 3 17 12 75 21 130 18 117 23 146 30 200 3 22 10
+65 15 95 5 30 12 73 15 95 13 92 36 242 40 265 5 33 23 145 30 195 4 22 8 51
+10 65 2 14 16 102 30 195 28 187 33 218 40 255 3 14 7 45 10 70 3 25 7 56 10
+70 3 14 7 39 9 55 2 17 7 46 10 65 9 55 15 90 22 139 3 25 8 57 10 71 2 14 9
+57 14 95 6 39 12 77 15 85 2 8 6 38 10 65 6 52 14 105 20 135 2 10 6 40 10 67
+4 26 13 86 20 133 19 114 25 158 31 200 2 19 9 60 14 90 5 30 12 75 15 99 6
+48 12 84 21 121 3 14 7 77 9 141 6 212 -53 354 -209 502 -66 63 -201 135 -291
+157 -51 12 -204 21 -240 14z m80 -701 c-4 -27 -9 -61 -11 -78 -3 -27 -12 -86
+-19 -125 -5 -26 -15 -94 -21 -135 -3 -22 -12 -78 -19 -125 -8 -47 -17 -103
+-20 -125 -7 -47 -26 -178 -55 -365 -11 -74 -23 -153 -26 -175 -4 -22 -8 -49
+-10 -60 -4 -22 -14 -87 -19 -125 -2 -14 -6 -38 -9 -55 -2 -16 -7 -50 -11 -75
+-10 -65 -13 -87 -25 -165 -18 -117 -20 -129 -25 -155 -3 -14 -7 -41 -9 -60 -3
+-19 -12 -82 -21 -140 -9 -58 -18 -116 -20 -130 -1 -14 -6 -41 -9 -60 -10 -56
+-15 -90 -21 -139 -4 -25 -13 -84 -20 -131 -22 -138 -26 -163 -31 -200 -2 -19
+-6 -46 -9 -60 -6 -31 -8 -42 -40 -255 -53 -351 -76 -501 -80 -525 -7 -41 -56
+-361 -60 -389 -5 -35 -14 -95 -25 -161 -5 -30 -12 -75 -15 -100 -6 -42 -29
+-195 -41 -265 -3 -16 -7 -41 -9 -55 -2 -14 -8 -56 -14 -95 -6 -38 -12 -83 -15
+-100 -2 -16 -9 -61 -16 -100 -6 -38 -14 -88 -16 -110 -3 -22 -14 -92 -24 -155
+-10 -63 -22 -140 -25 -170 -4 -30 -10 -60 -14 -66 -4 -8 -31 -2 -86 21 -111
+45 -886 364 -910 374 -11 5 -65 28 -120 51 -55 22 -120 50 -145 60 -25 10 -85
+35 -135 55 -49 21 -103 43 -120 50 -16 7 -154 64 -305 126 -151 61 -276 113
+-278 114 -2 2 28 47 66 101 37 55 93 135 124 179 30 44 189 274 353 510 165
+237 321 462 347 500 26 39 62 90 79 115 18 25 59 86 93 135 34 50 141 203 236
+340 96 138 206 296 245 353 38 57 91 133 117 170 26 37 52 74 58 82 6 8 51 74
+101 145 106 153 125 187 132 239 22 161 -169 297 -311 222 -15 -8 -68 -50
+-118 -93 -50 -43 -124 -107 -165 -142 -41 -35 -79 -68 -84 -75 -6 -6 -39 -36
+-75 -66 -36 -30 -67 -57 -70 -60 -3 -3 -54 -48 -115 -100 -129 -111 -173 -149
+-195 -170 -9 -8 -63 -55 -120 -105 -58 -49 -107 -92 -110 -95 -3 -3 -39 -35
+-82 -72 -42 -36 -91 -79 -110 -96 -18 -16 -143 -125 -278 -242 -135 -117 -261
+-227 -280 -244 -19 -17 -82 -72 -140 -121 -58 -50 -107 -93 -110 -96 -3 -3
+-79 -70 -170 -149 -91 -78 -181 -157 -200 -174 -19 -17 -55 -48 -80 -70 -25
+-21 -74 -64 -110 -96 -36 -31 -125 -109 -197 -172 l-133 -116 -167 70 c-93 39
+-229 95 -303 125 -74 30 -148 60 -165 68 -34 15 -775 322 -813 336 -30 12 -64
+-11 368 239 264 153 295 170 379 218 25 14 68 38 95 55 28 16 139 80 246 142
+515 297 1042 600 1362 786 141 82 261 149 267 149 5 0 11 4 13 8 2 4 23 19 48
+33 25 14 63 36 85 49 64 36 1247 719 1603 924 177 102 324 186 327 186 3 0 11
+5 18 11 10 8 393 231 592 343 22 13 79 46 127 75 48 28 91 51 97 51 6 0 11 5
+11 10 0 6 5 10 11 10 8 0 9 -15 4 -47z m-3503 -4838 c100 -42 207 -86 236 -97
+28 -12 52 -24 52 -27 0 -3 -76 -108 -168 -232 -92 -125 -176 -239 -187 -254
+-30 -41 -127 -169 -134 -177 -3 -4 -6 189 -6 428 0 322 3 434 11 434 7 0 95
+-34 196 -75z"/>
+</g>
+</svg>
diff --git a/static/site.webmanifest b/static/site.webmanifest
new file mode 100644
index 0000000..b20abb7
--- /dev/null
+++ b/static/site.webmanifest
@@ -0,0 +1,19 @@
+{
+ "name": "",
+ "short_name": "",
+ "icons": [
+ {
+ "src": "/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "/android-chrome-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ }
+ ],
+ "theme_color": "#ffffff",
+ "background_color": "#ffffff",
+ "display": "standalone"
+}
diff --git a/theme.toml b/theme.toml
index d092997..5ecb044 100644
--- a/theme.toml
+++ b/theme.toml
@@ -1,7 +1,7 @@
name = "PaperCSS"
license = "MIT"
licenselink = "https://github.com/zwbetz-gh/papercss-hugo-theme/blob/master/LICENSE"
-description = "TODO"
+description = "A Hugo theme made with PaperCSS, the less formal CSS framework."
homepage = "https://github.com/zwbetz-gh/papercss-hugo-theme"
tags = ["TODO"]
features = ["TODO"]