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

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibaud Leprêtre <thibaud.lepretre@gmail.com>2017-04-15 15:22:40 +0300
committerThibaud Leprêtre <thibaud.lepretre@gmail.com>2017-09-10 12:38:14 +0300
commit7f15006b51f3862700814610fbf89ec6447d3b8f (patch)
tree2961e7533f5e8e592fc5aa85bc4ad8b97b3a38d4
parent59a3489c0df882d1d77cc4bc585e204e4a3eeebb (diff)
Upgrade theme base on hexo 1.10.0 version
- [x] Italian translation - [x] `showMeta` & `showActions` - [x] `rel="noopener"` - [x] _sharing options_ - [x] XLG side bar bug on Edge - [x] 'OLDER POSTS' Button Overlaps Sidebar - [x] Print media queries However I will not backport persian translation because I can't handle by myself the missing translation for that theme that is not exist on hexo one closes #132
-rw-r--r--archetypes/page.md6
-rw-r--r--docs/user.md55
-rw-r--r--exampleSite/config.toml19
-rw-r--r--i18n/de-de.yaml28
-rw-r--r--i18n/en-us.yaml28
-rw-r--r--i18n/es-es.yaml28
-rw-r--r--i18n/fr-fr.yaml28
-rw-r--r--i18n/it-it.yaml157
-rw-r--r--i18n/ja.yaml28
-rw-r--r--i18n/pt-br.yaml21
-rw-r--r--i18n/ru.yaml28
-rw-r--r--i18n/vi.yaml28
-rw-r--r--i18n/zh-cn.yaml28
-rw-r--r--i18n/zh-tw.yaml28
-rw-r--r--layouts/partials/head.html2
-rw-r--r--layouts/partials/header.html2
-rw-r--r--layouts/partials/menu.html2
-rw-r--r--layouts/partials/post/actions.html111
-rw-r--r--layouts/partials/post/meta.html18
-rw-r--r--layouts/partials/post/share-options.html23
-rw-r--r--layouts/partials/script.html2
-rw-r--r--layouts/partials/search.html2
-rw-r--r--package-lock.json2092
-rw-r--r--package.json2
-rwxr-xr-xsrc/js/search-modal.js5
-rwxr-xr-xsrc/js/share-options.js10
-rwxr-xr-xsrc/scss/components/_pagination.scss1
-rwxr-xr-xsrc/scss/components/_post-actions.scss10
-rwxr-xr-xsrc/scss/components/_share-options-bar.scss41
-rwxr-xr-xsrc/scss/layouts/_header.scss7
-rwxr-xr-xsrc/scss/layouts/_sidebar.scss7
-rwxr-xr-xsrc/scss/utils/mixins/_sidebar.scss19
-rw-r--r--static/css/style-fpbzgxsy0kgmdvyrj5ykkg6ratccrk3gocmaqn4xpcjywmv5dteilzucro4f.min.css1
-rw-r--r--static/css/style-roysq7c4y3ysto46xd32ppqstniqcarkmgmwxl7dz47k2u2ououx3e18fuif.min.css1
-rw-r--r--static/js/script-qi9wbxp2ya2j6p7wx1i6tgavftewndznf4v0hy2gvivk1rxgc3lm7njqb6bz.min.js1
-rw-r--r--static/js/script-wl33z0n6ocaypepiqrazthtivfrliqijej4rq8ek8gvrv1awftmgjuv8k4zc.min.js1
36 files changed, 2483 insertions, 387 deletions
diff --git a/archetypes/page.md b/archetypes/page.md
index 9d90a0c..1c3af87 100644
--- a/archetypes/page.md
+++ b/archetypes/page.md
@@ -9,10 +9,8 @@ tags:
keywords:
- tech
comments: false
-showDate: false
-showSocial: false
-showTags: false
-showPagination: false
+showMeta: false
+showActions: false
#thumbnailImage: //example.com/image.jpg
---
diff --git a/docs/user.md b/docs/user.md
index b423147..f34b9da 100644
--- a/docs/user.md
+++ b/docs/user.md
@@ -28,6 +28,7 @@ If you want to report a bug or ask a question, [create an issue](https://github.
* [Author](#author)
* [Customization](#customization)
* [Integrated services](#integrated-services)
+ * [Sharing options](#sharing-options)
* [Enable pages](#enable-pages)
- [Integrated services configuration](#integrated-services-configuration)
* [Google Analytics](#google-analytics)
@@ -426,7 +427,43 @@ googleAnalytics =
| fbAdminIds | Your Facebook user ids used to connect your blog with your facebook user accounts (Facebook Insights). Use array syntax. E.g : `[9830047, 1003342]`. Visit [Facebook docs](https://developers.facebook.com/docs/platforminsights/domains) for more information. |
| fbAppId | Your Facebook app id used to connect your blog with your facebook app account (Facebook Insights). E.g : `9841307`. Visit [Facebook docs](https://developers.facebook.com/docs/platforminsights/domains) for more information. |
-### Enable pages
+#### Sharing options
+
+``` toml
+[params]
+ [[params.sharingOptions]]
+ name = "Facebook"
+ icon = "fa-facebook-official"
+ url = "https://www.facebook.com/sharer/sharer.php?u=%s"
+
+ [[params.sharingOptions]]
+ name = "Twitter"
+ icon = "fa-twitter"
+ url = "https://twitter.com/intent/tweet?text=%s"
+
+ [[params.sharingOptions]]
+ name = "Google+"
+ icon = "fa-google-plus"
+ url = "https://plus.google.com/share?url=%s"
+```
+
+You can comment and uncomment to enable or disable sharing options. If your own sharing options, simply add new sharing options on your configuration. E.g with **foo_bar** social network:
+
+```toml
+[params]
+ [[params.sharingOptions]]
+ name = "Foo bar"
+ icon = "fa-foo-bar"
+ url = "https://www.foo-bar.com/sharer/sharer.php?u=%s"
+```
+
+|Variable|Description|
+|---|---|
+|name| Name of your sharing site.|
+|icon|Name of the fontawesome icon class (Go to [font-awesome icons](http://fontawesome.io/icons/) to find class name of icon)|
+|url|URL of the link. use %s to specify where to put the permalink.|
+
+#### Enable pages
Tranquilpeak provides you 2 pages to display all posts title and date by tags, by categories, by date and an about page. To enable one of this pages simply add following [taxonomies](https://gohugo.io/taxonomies/overview/):
@@ -532,11 +569,13 @@ showDate: true
|coverCaption|Add a caption under the cover image : [Cover caption demo](https://tranquilpeak.kakawait.com/2015/05/cover-image-showcase/)|
|coverMeta|`in`: display post meta (title, date and categories) on cover image, `out`: display meta (title, date and categories) under cover image as usual. Default behavior : `in`|
|gallery|Images displayed in an image gallery (with fancybox) at the end of the post. If thumbnail image is not configured and cover image too, the first photo is used as thumbnail image. format: `original url [thumbnail url] [caption]`, E.g : `https://example.com/original.jpg https://example.com/thumbnail.jpg "New York"`|
-|comments|Disable the comment of the post.
+|comments|`true`: Show the comment of the post.|
|showDate|`true`: Show the date when `true` (default)|
-|showTags|`true`: show tags of this page. Default behavior: `true`
-|showPagination|`true`: show pagination. Default behavior: `true`
-|showSocial|`true`: show social button such as share on Twitter, Facebook... Default behavior: `true`
+|showTags|`true`: show tags of this page.|
+|showPagination|`true`: show pagination.|
+|showSocial|`true`: show social button such as share on Twitter, Facebook...|
+|showMeta|`true`: Show post meta (date, categories).|
+|showActions|`true`: Show post actions (navigation, share links).|
Example:
A post on index page will look like this with :`thumbnailImagePosition` set to `bottom`:
@@ -726,10 +765,8 @@ tags:
keywords:
- tech
comments: false
-showDate: false
-showSocial: false
-showTags: false
-showPagination: false
+showMeta: false
+showActions: false
#thumbnailImage: //example.com/image.jpg
---
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 8a4286b..3d82053 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -172,6 +172,25 @@ canonifyurls = true
# they have to be referred from static root. Example
# customJS = ["js/foo.js"]
+ # Sharing options
+ # Comment and uncomment to enable or disable sharing options
+ # If you wanna add a sharing option, read user documentation :
+ # Tranquilpeak configuration > Theme configuration > sharing-options
+ [[params.sharingOptions]]
+ name = "Facebook"
+ icon = "fa-facebook-official"
+ url = "https://www.facebook.com/sharer/sharer.php?u=%s"
+
+ [[params.sharingOptions]]
+ name = "Twitter"
+ icon = "fa-twitter"
+ url = "https://twitter.com/intent/tweet?text=%s"
+
+ [[params.sharingOptions]]
+ name = "Google+"
+ icon = "fa-google-plus"
+ url = "https://plus.google.com/share?url=%s"
+
[params.header.rightLink]
class = ""
icon = ""
diff --git a/i18n/de-de.yaml b/i18n/de-de.yaml
index 48de08c..9785123 100644
--- a/i18n/de-de.yaml
+++ b/i18n/de-de.yaml
@@ -26,23 +26,8 @@
- id: "global.author_picture"
translation: "Bild des Autors"
-- id: "global.github"
- translation: "GitHub"
-
-- id: "global.stackoverflow"
- translation: "Stack Overflow"
-
-- id: "global.twitter"
- translation: "Twitter"
-
-- id: "global.facebook"
- translation: "Facebook"
-
-- id: "global.google_plus"
- translation: "Google Plus"
-
-- id: "global.linkedin"
- translation: "LinkedIn"
+- id: "global.share_on"
+ translation: "Auf %s teilen"
- id: "global.mail"
translation: "Mail"
@@ -50,15 +35,6 @@
- id: "global.rss"
translation: "RSS"
-- id: "global.share_on_google_plus"
- translation: "Auf Google Plus teilen"
-
-- id: "global.share_on_facebook"
- translation: "Auf Facebook teilen"
-
-- id: "global.share_on_twitter"
- translation: "Auf Twitter teilen"
-
- id: "global.search_category"
translation: "Suche Kategorie"
diff --git a/i18n/en-us.yaml b/i18n/en-us.yaml
index ae0d8f2..c1b147e 100644
--- a/i18n/en-us.yaml
+++ b/i18n/en-us.yaml
@@ -26,23 +26,8 @@
- id: "global.author_picture"
translation: "Author's picture"
-- id: "global.github"
- translation: "GitHub"
-
-- id: "global.stackoverflow"
- translation: "Stack Overflow"
-
-- id: "global.twitter"
- translation: "Twitter"
-
-- id: "global.facebook"
- translation: "Facebook"
-
-- id: "global.google_plus"
- translation: "Google Plus"
-
-- id: "global.linkedin"
- translation: "LinkedIn"
+- id: "global.share_on"
+ translation: "Share on %s"
- id: "global.mail"
translation: "Mail"
@@ -50,15 +35,6 @@
- id: "global.rss"
translation: "RSS"
-- id: "global.share_on_google_plus"
- translation: "Share on Google Plus"
-
-- id: "global.share_on_facebook"
- translation: "Share on Facebook"
-
-- id: "global.share_on_twitter"
- translation: "Share on Twitter"
-
- id: "global.search_category"
translation: "Search category"
diff --git a/i18n/es-es.yaml b/i18n/es-es.yaml
index a8aeb3e..bc21b0c 100644
--- a/i18n/es-es.yaml
+++ b/i18n/es-es.yaml
@@ -26,23 +26,8 @@
- id: "global.author_picture"
translation: "Foto de autor"
-- id: "global.github"
- translation: "GitHub"
-
-- id: "global.stackoverflow"
- translation: "Stack Overflow"
-
-- id: "global.twitter"
- translation: "Twitter"
-
-- id: "global.facebook"
- translation: "Facebook"
-
-- id: "global.google_plus"
- translation: "Google Plus"
-
-- id: "global.linkedin"
- translation: "LinkedIn"
+- id: "global.share_on"
+ translation: "Compartir en %s"
- id: "global.mail"
translation: "Correo"
@@ -50,15 +35,6 @@
- id: "global.rss"
translation: "RSS"
-- id: "global.share_on_google_plus"
- translation: "Compartir en Google Plus"
-
-- id: "global.share_on_facebook"
- translation: "Compartir en Facebook"
-
-- id: "global.share_on_twitter"
- translation: "Compartir en Twitter"
-
- id: "global.search_category"
translation: "Buscar categoría"
diff --git a/i18n/fr-fr.yaml b/i18n/fr-fr.yaml
index 9d46c8e..d3b7604 100644
--- a/i18n/fr-fr.yaml
+++ b/i18n/fr-fr.yaml
@@ -20,23 +20,8 @@
- id: "global.author_picture"
translation: "Photo de l'auteur"
-- id: "global.github"
- translation: "GitHub"
-
-- id: "global.stackoverflow"
- translation: "Stack Overflow"
-
-- id: "global.twitter"
- translation: "Twitter"
-
-- id: "global.facebook"
- translation: "Facebook"
-
-- id: "global.google_plus"
- translation: "Google Plus"
-
-- id: "global.linkedin"
- translation: "LinkedIn"
+- id: "global.share_on"
+ translation: "Partager sur %s"
- id: "global.mail"
translation: "Mail"
@@ -44,15 +29,6 @@
- id: "global.rss"
translation: "RSS"
-- id: "global.share_on_google_plus"
- translation: "Partager sur Google Plus"
-
-- id: "global.share_on_facebook"
- translation: "Partager sur Facebook"
-
-- id: "global.share_on_twitter"
- translation: "Partager sur Twitter"
-
- id: "global.search_category"
translation: "Rechercher une catégorie"
diff --git a/i18n/it-it.yaml b/i18n/it-it.yaml
new file mode 100644
index 0000000..c895c6c
--- /dev/null
+++ b/i18n/it-it.yaml
@@ -0,0 +1,157 @@
+## GLOBAL ##
+- id: "global.home"
+ translation: "Home"
+
+- id: "global.categories"
+ translation: "Categorie"
+
+- id: "global.category"
+ translation: "Categoria"
+
+- id: "global.tags"
+ translation: "Tags"
+
+- id: "global.tag"
+ translation: "Tag"
+
+- id: "global.archives"
+ translation: "Archivio"
+
+- id: "global.search"
+ translation: "Ricerca"
+
+- id: "global.about"
+ translation: "About"
+
+- id: "global.author_picture"
+ translation: "Foto dell'autore"
+
+- id: "global.share_on"
+ translation: "Condividi su %s"
+
+- id: "global.mail"
+ translation: "Mail"
+
+- id: "global.rss"
+ translation: "RSS"
+
+- id: "global.search_category"
+ translation: "Cerca categoria"
+
+- id: "global.search_tag"
+ translation: "Cerca tag"
+
+- id: "global.search_date"
+ translation: "Cerca data (YYYY/MM/DD)"
+
+## GLOBAL.POST_FOUND ##
+- id: "global.posts_found.zero"
+ translation: "nessun post trovato"
+
+- id: "global.posts_found.one"
+ translation: "1 post trovato"
+
+- id: "global.posts_found.other"
+ translation: "{n} posts trovati"
+
+## GLOBAL.CATEGORIES_FOUND ##
+- id: "global.categories_found.zero"
+ translation: "nessuna categoria trovata"
+
+- id: "global.categories_found.one"
+ translation: "1 categoria trovata"
+
+- id: "global.categories_found.other"
+ translation: "{n} categorie trovate"
+
+## GLOBAL.TAGS_FOUND ##
+- id: "global.tags_found.zero"
+ translation: "nessun tag trovato"
+
+- id: "global.tags_found.one"
+ translation: "1 tag trovato"
+
+- id: "global.tags_found.other"
+ translation: "{n} tags trovati"
+
+## PAGINATION ##
+- id: "pagination.page"
+ translation: "pagina {{ .Paginator.PageNumber }}"
+
+- id: "pagination.of"
+ translation: "di {{ .Paginator.TotalPages }}"
+
+- id: "pagination.newer_posts"
+ translation: "POSTS SUCCESSIVI"
+
+- id: "pagination.older_posts"
+ translation: "POSTS PRECEDENTI"
+
+- id: "pagination.previous"
+ translation: "PRECEDENTE"
+
+- id: "pagination.next"
+ translation: "SUCCESSIVO"
+
+## POST ##
+- id: "post.no_title"
+ translation: "nessun titolo"
+
+- id: "post.categorized_in"
+ translation: "in"
+
+- id: "post.tagged_in"
+ translation: "TAGGATO IN"
+
+- id: "post.toc"
+ translation: "Indice"
+
+- id: "post.read_more"
+ translation: "Continua a leggere"
+
+- id: "post.go_to_website"
+ translation: "Vai al sito"
+
+- id: "post.comment_and_share"
+ translation: "Commenta e condividi"
+
+## FOOTER ##
+- id: "footer.all_rights_reserved"
+ translation: "Tutti i diritti riservati"
+
+## DATE ##
+- id: "date.month.january"
+ translation: "Gennaio"
+
+- id: "date.month.february"
+ translation: "Febbraio"
+
+- id: "date.month.march"
+ translation: "Marzo"
+
+- id: "date.month.april"
+ translation: "Aprile"
+
+- id: "date.month.may"
+ translation: "Maggio"
+
+- id: "date.month.june"
+ translation: "Giugno"
+
+- id: "date.month.july"
+ translation: "Luglio"
+
+- id: "date.month.august"
+ translation: "Agosto"
+
+- id: "date.month.september"
+ translation: "Settembre"
+
+- id: "date.month.october"
+ translation: "Ottobre"
+
+- id: "date.month.november"
+ translation: "Novembre"
+
+- id: "date.month.december"
+ translation: "Dicembre"
diff --git a/i18n/ja.yaml b/i18n/ja.yaml
index 604897f..4624693 100644
--- a/i18n/ja.yaml
+++ b/i18n/ja.yaml
@@ -26,23 +26,8 @@
- id: "global.author_picture"
translation: "著者の絵"
-- id: "global.github"
- translation: "GitHub"
-
-- id: "global.stackoverflow"
- translation: "Stack Overflow"
-
-- id: "global.twitter"
- translation: "Twitter"
-
-- id: "global.facebook"
- translation: "Facebook"
-
-- id: "global.google_plus"
- translation: "Google Plus"
-
-- id: "global.linkedin"
- translation: "LinkedIn"
+- id: "global.share_on"
+ translation: "%sで共有"
- id: "global.mail"
translation: "メール"
@@ -50,15 +35,6 @@
- id: "global.rss"
translation: "RSS"
-- id: "global.share_on_google_plus"
- translation: "Google Plusで共有"
-
-- id: "global.share_on_facebook"
- translation: "Facebookで共有"
-
-- id: "global.share_on_twitter"
- translation: "Twitterで共有"
-
- id: "global.search_category"
translation: "カテゴリー検索"
diff --git a/i18n/pt-br.yaml b/i18n/pt-br.yaml
index 5514d8d..c87abbb 100644
--- a/i18n/pt-br.yaml
+++ b/i18n/pt-br.yaml
@@ -26,23 +26,8 @@
- id: "global.author_picture"
translation: "Foto do autor"
-- id: "global.github"
- translation: "GitHub"
-
-- id: "global.stackoverflow"
- translation: "Stack Overflow"
-
-- id: "global.twitter"
- translation: "Twitter"
-
-- id: "global.facebook"
- translation: "Facebook"
-
-- id: "global.google_plus"
- translation: "Google Plus"
-
-- id: "global.linkedin"
- translation: "LinkedIn"
+- id: "global.share_on"
+ translation: "Compartilhar no %s"
- id: "global.mail"
translation: "Email"
@@ -51,7 +36,7 @@
translation: "RSS"
- id: "global.share_on_google_plus"
- translation: "Compartilhar no Google Plus"
+ translation: "Compartilhar no Google+"
- id: "global.share_on_facebook"
translation: "Compartilhar no Facebook"
diff --git a/i18n/ru.yaml b/i18n/ru.yaml
index 01bfcc9..67d4f2f 100644
--- a/i18n/ru.yaml
+++ b/i18n/ru.yaml
@@ -26,23 +26,8 @@
- id: "global.author_picture"
translation: "Авторская фотография"
-- id: "global.github"
- translation: "GitHub"
-
-- id: "global.stackoverflow"
- translation: "Stack Overflow"
-
-- id: "global.twitter"
- translation: "Twitter"
-
-- id: "global.facebook"
- translation: "Facebook"
-
-- id: "global.google_plus"
- translation: "Google Plus"
-
-- id: "global.linkedin"
- translation: "LinkedIn"
+- id: "global.share_on"
+ translation: "Поделиться в %s"
- id: "global.mail"
translation: "Mail"
@@ -50,15 +35,6 @@
- id: "global.rss"
translation: "RSS"
-- id: "global.share_on_google_plus"
- translation: "Поделиться в Google Plus"
-
-- id: "global.share_on_facebook"
- translation: "Поделиться в Facebook"
-
-- id: "global.share_on_twitter"
- translation: "Поделиться в Twitter"
-
- id: "global.search_category"
translation: "Поиск по разделу"
diff --git a/i18n/vi.yaml b/i18n/vi.yaml
index 5e63da9..91e655f 100644
--- a/i18n/vi.yaml
+++ b/i18n/vi.yaml
@@ -26,23 +26,8 @@
- id: "global.author_picture"
translation: "Ảnh đại diện của tác giả"
-- id: "global.github"
- translation: "GitHub"
-
-- id: "global.stackoverflow"
- translation: "Stack Overflow"
-
-- id: "global.twitter"
- translation: "Twitter"
-
-- id: "global.facebook"
- translation: "Facebook"
-
-- id: "global.google_plus"
- translation: "Google Plus"
-
-- id: "global.linkedin"
- translation: "LinkedIn"
+- id: "global.share_on"
+ translation: "Chia sẻ với %s"
- id: "global.mail"
translation: "Thư"
@@ -50,15 +35,6 @@
- id: "global.rss"
translation: "RSS"
-- id: "global.share_on_google_plus"
- translation: "Chia sẻ với Google Plus"
-
-- id: "global.share_on_facebook"
- translation: "Chia sẻ với Facebook"
-
-- id: "global.share_on_twitter"
- translation: "Chia sẻ với Twitter"
-
- id: "global.search_category"
translation: "Tìm kiếm danh mục"
diff --git a/i18n/zh-cn.yaml b/i18n/zh-cn.yaml
index 57b86c2..d6594c2 100644
--- a/i18n/zh-cn.yaml
+++ b/i18n/zh-cn.yaml
@@ -26,23 +26,8 @@
- id: "global.author_picture"
translation: "作者的图片"
-- id: "global.github"
- translation: "GitHub"
-
-- id: "global.stackoverflow"
- translation: "Stack Overflow"
-
-- id: "global.twitter"
- translation: "Twitter"
-
-- id: "global.facebook"
- translation: "Facebook"
-
-- id: "global.google_plus"
- translation: "Google Plus"
-
-- id: "global.linkedin"
- translation: "LinkedIn"
+- id: "global.share_on"
+ translation: "分享到 %s"
- id: "global.mail"
translation: "邮箱"
@@ -50,15 +35,6 @@
- id: "global.rss"
translation: "RSS"
-- id: "global.share_on_google_plus"
- translation: "分享到 Google+"
-
-- id: "global.share_on_facebook"
- translation: "分享到 Facebook"
-
-- id: "global.share_on_twitter"
- translation: "分享到 Twitter"
-
- id: "global.search_category"
translation: "搜索分类"
diff --git a/i18n/zh-tw.yaml b/i18n/zh-tw.yaml
index 0444269..07f3803 100644
--- a/i18n/zh-tw.yaml
+++ b/i18n/zh-tw.yaml
@@ -26,23 +26,8 @@
- id: "global.author_picture"
translation: "作者的圖片"
-- id: "global.github"
- translation: "GitHub"
-
-- id: "global.stackoverflow"
- translation: "Stack Overflow"
-
-- id: "global.twitter"
- translation: "Twitter"
-
-- id: "global.facebook"
- translation: "Facebook"
-
-- id: "global.google_plus"
- translation: "Google Plus"
-
-- id: "global.linkedin"
- translation: "LinkedIn"
+- id: "global.share_on"
+ translation: "分享到 %s"
- id: "global.mail"
translation: "Email"
@@ -50,15 +35,6 @@
- id: "global.rss"
translation: "Atom"
-- id: "global.share_on_google_plus"
- translation: "分享到 Google+"
-
-- id: "global.share_on_facebook"
- translation: "分享到 Facebook"
-
-- id: "global.share_on_twitter"
- translation: "分享到 Twitter"
-
- id: "global.search_category"
translation: "搜尋分類"
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 4e28a25..03f53ae 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -89,7 +89,7 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/helpers/jquery.fancybox-thumbs.min.css" integrity="sha256-SEa4XYAHihTcEP1f5gARTB2K26Uk8PsndQYHQC1f4jU=" crossorigin="anonymous" />
<!--EXTERNAL STYLES END-->
<!--STYLES-->
- <link rel="stylesheet" href="/css/style-roysq7c4y3ysto46xd32ppqstniqcarkmgmwxl7dz47k2u2ououx3e18fuif.min.css" />
+ <link rel="stylesheet" href="/css/style-fpbzgxsy0kgmdvyrj5ykkg6ratccrk3gocmaqn4xpcjywmv5dteilzucro4f.min.css" />
<!--STYLES END-->
{{ range .Site.Params.customCSS }}
{{ if isset . "href" }}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index e8e7382..4dd6bbe 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -6,7 +6,7 @@
{{ with .Site.Params.header.rightLink }}
{{ if and (in .url ":") (not (in .url (printf "%s" $.Site.BaseURL))) }}
<a class="{{ if .icon }}header-right-icon {{ else }}header-right-picture {{ end }}{{ with .class }}{{ . }}{{ end }}"
- href="{{ .url | safeURL }}" target="_blank">
+ href="{{ .url | safeURL }}" target="_blank" rel="noopener">
{{ else if .url }}
<a class="{{ if .icon }}header-right-icon {{ else }}header-right-picture {{ end }}{{ with .class }}{{ . }}{{ end }}"
href="{{ .url | safeURL }}">
diff --git a/layouts/partials/menu.html b/layouts/partials/menu.html
index 4bc8a4e..69eaf1b 100644
--- a/layouts/partials/menu.html
+++ b/layouts/partials/menu.html
@@ -1,7 +1,7 @@
{{ range .menu }}
<li class="sidebar-button">
{{ if and (in .URL "://") (not (in .URL (printf "%s" $.root.Site.BaseURL))) }}
- <a class="sidebar-button-link {{ if eq .Identifier "search" }}open-algolia-search{{ end }}" href="{{ .URL | safeURL }}" target="_blank">
+ <a class="sidebar-button-link {{ if eq .Identifier "search" }}open-algolia-search{{ end }}" href="{{ .URL | safeURL }}" target="_blank" rel="noopener">
{{ else }}
<a class="sidebar-button-link {{ if eq .Identifier "search" }}open-algolia-search{{ end }}" href="{{ .URL | relLangURL }}">
{{ end }}
diff --git a/layouts/partials/post/actions.html b/layouts/partials/post/actions.html
index 3fe1b59..a4ab3bc 100644
--- a/layouts/partials/post/actions.html
+++ b/layouts/partials/post/actions.html
@@ -1,69 +1,60 @@
-<div class="post-actions-wrap">
- <nav>
- <ul class="post-actions post-action-nav">
- {{ if (not (eq .Params.showPagination false)) }}
- <li class="post-action">
- {{ with .NextInSection }}
- <a class="post-action-btn btn btn--default tooltip--top" href="{{ .RelPermalink }}" data-tooltip="{{ .Title }}">
- {{ else }}
- <a class="post-action-btn btn btn--disabled">
- {{ end }}
- <i class="fa fa-angle-left"></i>
- <span class="hide-xs hide-sm text-small icon-ml">{{ i18n "pagination.next" }}</span>
+{{ if not (eq .Params.showActions false) }}
+ <div class="post-actions-wrap">
+ <nav {{ if eq .Params.showPagination false }}style="visibility: hidden"{{ end }}>
+ <ul class="post-actions post-action-nav">
+ <li class="post-action">
+ {{ with .NextInSection }}
+ <a class="post-action-btn btn btn--default tooltip--top" href="{{ .RelPermalink }}" data-tooltip="{{ .Title }}">
+ {{ else }}
+ <a class="post-action-btn btn btn--disabled">
+ {{ end }}
+ <i class="fa fa-angle-left"></i>
+ <span class="hide-xs hide-sm text-small icon-ml">{{ i18n "pagination.next" }}</span>
+ </a>
+ </li>
+ <li class="post-action">
+ {{ with .PrevInSection }}
+ <a class="post-action-btn btn btn--default tooltip--top" href="{{ .RelPermalink }}" data-tooltip="{{ .Title }}">
+ {{ else }}
+ <a class="post-action-btn btn btn--disabled">
+ {{ end }}
+ <span class="hide-xs hide-sm text-small icon-mr">{{ i18n "pagination.previous" }}</span>
+ <i class="fa fa-angle-right"></i>
+ </a>
+ </li>
+ </ul>
+ </nav>
+ <ul class="post-actions post-action-share" >
+ {{ if (not (eq .Params.showSocial false)) }}
+ <li class="post-action hide-lg hide-md hide-sm">
+ <a class="post-action-btn btn btn--default btn-open-shareoptions" href="#btn-open-shareoptions">
+ <i class="fa fa-share-alt"></i>
</a>
</li>
+ {{ range .Site.Params.sharingOptions }}
+ <li class="post-action hide-xs">
+ <a class="post-action-btn btn btn--default" target="new" href="{{ printf .url .Permalink }}">
+ <i class="fa {{ .icon }}"></i>
+ </a>
+ </li>
+ {{ end }}
+ {{ end }}
+ {{ if and (not (eq .Params.comments false)) .Site.DisqusShortname }}
<li class="post-action">
- {{ with .PrevInSection }}
- <a class="post-action-btn btn btn--default tooltip--top" href="{{ .RelPermalink }}" data-tooltip="{{ .Title }}">
- {{ else }}
- <a class="post-action-btn btn btn--disabled">
- {{ end }}
- <span class="hide-xs hide-sm text-small icon-mr">{{ i18n "pagination.previous" }}</span>
- <i class="fa fa-angle-right"></i>
+ <a class="post-action-btn btn btn--default" href="#disqus_thread">
+ <i class="fa fa-comment-o"></i>
</a>
</li>
{{ end }}
- </ul>
- </nav>
- <ul class="post-actions post-action-share">
- {{ if (not (eq .Params.showSocial false)) }}
- <li class="post-action hide-lg hide-md hide-sm">
- <a class="post-action-btn btn btn--default btn-open-shareoptions" href="#btn-open-shareoptions">
- <i class="fa fa-share-alt"></i>
- </a>
- </li>
- <li class="post-action hide-xs">
- <a class="post-action-btn btn btn--default" target="new" href="https://plus.google.com/share?url={{ .Permalink }}">
- <i class="fa fa-google-plus"></i>
- </a>
- </li>
- <li class="post-action hide-xs">
- <a class="post-action-btn btn btn--default" target="new" href="https://www.facebook.com/sharer/sharer.php?u={{ .Permalink }}">
- <i class="fa fa-facebook-official"></i>
- </a>
- </li>
- <li class="post-action hide-xs">
- <a class="post-action-btn btn btn--default" target="new" href="https://twitter.com/intent/tweet?text={{ .Permalink }}">
- <i class="fa fa-twitter"></i>
- </a>
- </li>
- {{ end }}
- {{ if and (not (eq .Params.comments false)) .Site.DisqusShortname }}
<li class="post-action">
- <a class="post-action-btn btn btn--default" href="#disqus_thread">
- <i class="fa fa-comment-o"></i>
+ {{ if findRE "<!--\\s*[t|T][o|O][c|C]\\s*-->" .Content }}
+ <a class="post-action-btn btn btn--default" href="#table-of-contents">
+ {{ else }}
+ <a class="post-action-btn btn btn--default" href="#">
+ {{ end }}
+ <i class="fa fa-list"></i>
</a>
</li>
- {{ end }}
- <li class="post-action">
- {{ if findRE "<!--\\s*[t|T][o|O][c|C]\\s*-->" .Content }}
- <a class="post-action-btn btn btn--default" href="#table-of-contents">
- {{ else }}
- <a class="post-action-btn btn btn--default" href="#">
- {{ end }}
- <i class="fa fa-list"></i>
- </a>
- </li>
- </ul>
-</div>
-
+ </ul>
+ </div>
+{{ end }}
diff --git a/layouts/partials/post/meta.html b/layouts/partials/post/meta.html
index 634ebbe..d143721 100644
--- a/layouts/partials/post/meta.html
+++ b/layouts/partials/post/meta.html
@@ -1,8 +1,10 @@
-<div class="postShorten-meta post-meta">
- {{ if not (eq .Params.showDate false) }}
- <time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
- {{ partial "internal/date.html" . }}
- </time>
- {{ end }}
- {{ partial "post/category.html" . }}
-</div>
+{{ if not (eq .Params.showMeta false) }}
+ <div class="postShorten-meta post-meta">
+ {{ if not (eq .Params.showDate false) }}
+ <time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
+ {{ partial "internal/date.html" . }}
+ </time>
+ {{ end }}
+ {{ partial "post/category.html" . }}
+ </div>
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/post/share-options.html b/layouts/partials/post/share-options.html
index 7e70c64..871f3c2 100644
--- a/layouts/partials/post/share-options.html
+++ b/layouts/partials/post/share-options.html
@@ -1,20 +1,13 @@
<div id="share-options-bar" class="share-options-bar" data-behavior="{{ .Scratch.Get "sidebarBehavior" }}">
+ <i id="btn-close-shareoptions" class="fa fa-close"></i>
<ul class="share-options">
- <li class="share-option">
- <a class="share-option-btn" target="new" href="https://plus.google.com/share?url={{ .Permalink }}">
- <i class="fa fa-google-plus"></i><span>{{ i18n "global.share_on_google_plus" }}</span>
- </a>
- </li>
- <li class="share-option">
- <a class="share-option-btn" target="new" href="https://www.facebook.com/sharer/sharer.php?u={{ .Permalink }}">
- <i class="fa fa-facebook-official"></i><span>{{ i18n "global.share_on_facebook" }}</span>
- </a>
- </li>
- <li class="share-option">
- <a class="share-option-btn" target="new" href="https://twitter.com/intent/tweet?text={{ .Permalink }}">
- <i class="fa fa-twitter"></i><span>{{ i18n "global.share_on_twitter" }}</span>
- </a>
- </li>
+ {{ range .Site.Params.sharingOptions }}
+ <li class="share-option">
+ <a class="share-option-btn" target="new" href="{{ printf .url (substr (querify "x" $.Permalink) 2) }}">
+ <i class="fa {{ .icon }}"></i><span>{{ printf (i18n "global.share_on") .name }}</span>
+ </a>
+ </li>
+ {{ end }}
</ul>
</div>
<div id="share-options-mask" class="share-options-mask"></div> \ No newline at end of file
diff --git a/layouts/partials/script.html b/layouts/partials/script.html
index c292590..ad727bc 100644
--- a/layouts/partials/script.html
+++ b/layouts/partials/script.html
@@ -5,7 +5,7 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/helpers/jquery.fancybox-thumbs.min.js" integrity="sha256-N0qFUh7/9vLvia87dDndewmsgsyYoNkdA212tPc+2NI=" crossorigin="anonymous"></script>
<!--EXTERNAL SCRIPTS END-->
<!--SCRIPTS-->
-<script src="/js/script-wl33z0n6ocaypepiqrazthtivfrliqijej4rq8ek8gvrv1awftmgjuv8k4zc.min.js"></script>
+<script src="/js/script-qi9wbxp2ya2j6p7wx1i6tgavftewndznf4v0hy2gvivk1rxgc3lm7njqb6bz.min.js"></script>
<!--SCRIPTS END-->
{{ range .Site.Params.customJS }}
{{ if isset . "src" }}
diff --git a/layouts/partials/search.html b/layouts/partials/search.html
index c416371..33b9520 100644
--- a/layouts/partials/search.html
+++ b/layouts/partials/search.html
@@ -2,7 +2,7 @@
<div class="modal">
<div class="modal-header">
<span class="close-button"><i class="fa fa-close"></i></span>
- <a href="https://algolia.com" target="_blank" class="searchby-algolia text-color-light link-unstyled">
+ <a href="https://algolia.com" target="_blank" rel="noopener" class="searchby-algolia text-color-light link-unstyled">
<span class="searchby-algolia-text text-color-light text-small">by</span>
<img class="searchby-algolia-logo" src="https://www.algolia.com/static_assets/images/press/downloads/algolia-light.svg">
</a>
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..777711b
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,2092 @@
+{
+ "name": "hugo-tranquilpeak-theme",
+ "version": "0.4.0-SNAPSHOT",
+ "lockfileVersion": 1,
+ "dependencies": {
+ "abbrev": {
+ "version": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz",
+ "integrity": "sha1-0FVMIlZjbi9W58LlrRg/hZQo2B8=",
+ "dev": true
+ },
+ "acorn": {
+ "version": "https://registry.npmjs.org/acorn/-/acorn-5.0.3.tgz",
+ "integrity": "sha1-xGDfCEkUY/AozLguqzcwvwEIez0=",
+ "dev": true
+ },
+ "acorn-jsx": {
+ "version": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz",
+ "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=",
+ "dev": true,
+ "dependencies": {
+ "acorn": {
+ "version": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
+ "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=",
+ "dev": true
+ }
+ }
+ },
+ "ajv": {
+ "version": "https://registry.npmjs.org/ajv/-/ajv-4.11.6.tgz",
+ "integrity": "sha1-lH6TBJeQlCsqLWCoKJsokk05+Yc=",
+ "dev": true
+ },
+ "ajv-keywords": {
+ "version": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz",
+ "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=",
+ "dev": true
+ },
+ "align-text": {
+ "version": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
+ "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
+ "dev": true
+ },
+ "amdefine": {
+ "version": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
+ "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
+ "dev": true
+ },
+ "ansi-escapes": {
+ "version": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz",
+ "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=",
+ "dev": true
+ },
+ "ansi-regex": {
+ "version": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+ "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
+ "dev": true
+ },
+ "aproba": {
+ "version": "https://registry.npmjs.org/aproba/-/aproba-1.1.1.tgz",
+ "integrity": "sha1-ldNgDwdxCqDpKYxyatXs8urLq6s=",
+ "dev": true
+ },
+ "are-we-there-yet": {
+ "version": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz",
+ "integrity": "sha1-gORw6VoIR5T+GJkmLFZnxuiN4bM=",
+ "dev": true
+ },
+ "argparse": {
+ "version": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
+ "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
+ "dev": true
+ },
+ "array-find-index": {
+ "version": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
+ "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=",
+ "dev": true
+ },
+ "array-union": {
+ "version": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
+ "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
+ "dev": true
+ },
+ "array-uniq": {
+ "version": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
+ "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
+ "dev": true
+ },
+ "arrify": {
+ "version": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
+ "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
+ "dev": true
+ },
+ "asn1": {
+ "version": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz",
+ "integrity": "sha1-VZvhg3bQik7E2+gId9J4GGObLfc=",
+ "dev": true
+ },
+ "assert-plus": {
+ "version": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz",
+ "integrity": "sha1-7nQAlBMALYTOxyGcasgRgS5yMWA=",
+ "dev": true
+ },
+ "async": {
+ "version": "https://registry.npmjs.org/async/-/async-0.1.22.tgz",
+ "integrity": "sha1-D8GqoIig4+8Ovi2IMbqw3PiEUGE=",
+ "dev": true
+ },
+ "async-foreach": {
+ "version": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz",
+ "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=",
+ "dev": true
+ },
+ "asynckit": {
+ "version": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
+ "dev": true
+ },
+ "aws-sign": {
+ "version": "https://registry.npmjs.org/aws-sign/-/aws-sign-0.3.0.tgz",
+ "integrity": "sha1-PYHKabR0seFlGHKLUcJP8Lvtxuk=",
+ "dev": true
+ },
+ "aws-sign2": {
+ "version": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz",
+ "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=",
+ "dev": true
+ },
+ "aws4": {
+ "version": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz",
+ "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=",
+ "dev": true
+ },
+ "balanced-match": {
+ "version": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
+ "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
+ "dev": true
+ },
+ "bcrypt-pbkdf": {
+ "version": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
+ "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=",
+ "dev": true,
+ "optional": true
+ },
+ "block-stream": {
+ "version": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz",
+ "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=",
+ "dev": true
+ },
+ "boom": {
+ "version": "https://registry.npmjs.org/boom/-/boom-0.4.2.tgz",
+ "integrity": "sha1-emNune1O/O+xnO9JR6PGffrukRs=",
+ "dev": true
+ },
+ "brace-expansion": {
+ "version": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.7.tgz",
+ "integrity": "sha1-Pv/DxQ4ABTH7cg6v+A8K6O8jz1k=",
+ "dev": true
+ },
+ "browserify-zlib": {
+ "version": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz",
+ "integrity": "sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=",
+ "dev": true
+ },
+ "buffer-shims": {
+ "version": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz",
+ "integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E=",
+ "dev": true
+ },
+ "builtin-modules": {
+ "version": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
+ "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=",
+ "dev": true
+ },
+ "caller-path": {
+ "version": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz",
+ "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=",
+ "dev": true
+ },
+ "callsites": {
+ "version": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz",
+ "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=",
+ "dev": true
+ },
+ "camelcase": {
+ "version": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz",
+ "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=",
+ "dev": true
+ },
+ "camelcase-keys": {
+ "version": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz",
+ "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=",
+ "dev": true
+ },
+ "caseless": {
+ "version": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
+ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
+ "dev": true
+ },
+ "center-align": {
+ "version": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
+ "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
+ "dev": true
+ },
+ "chalk": {
+ "version": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+ "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+ "dev": true
+ },
+ "circular-json": {
+ "version": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.1.tgz",
+ "integrity": "sha1-vos2rvzN6LPKeqLWr8B6NyQsDS0=",
+ "dev": true
+ },
+ "clean-css": {
+ "version": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.25.tgz",
+ "integrity": "sha1-nppS1cHmvFEj4bJ4P6Zf6ViUbt4=",
+ "dev": true,
+ "dependencies": {
+ "source-map": {
+ "version": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
+ "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=",
+ "dev": true
+ }
+ }
+ },
+ "cli-cursor": {
+ "version": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz",
+ "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=",
+ "dev": true
+ },
+ "cli-width": {
+ "version": "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz",
+ "integrity": "sha1-sjTKIJsp72b8UY2bmNWEewDt8Ao=",
+ "dev": true
+ },
+ "cliui": {
+ "version": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
+ "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
+ "dev": true,
+ "dependencies": {
+ "wordwrap": {
+ "version": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
+ "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=",
+ "dev": true
+ }
+ }
+ },
+ "co": {
+ "version": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
+ "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
+ "dev": true
+ },
+ "code-point-at": {
+ "version": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
+ "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
+ "dev": true
+ },
+ "coffee-script": {
+ "version": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz",
+ "integrity": "sha1-FQ1rTLUiiUNp7+1qIQHCC8f0pPQ=",
+ "dev": true
+ },
+ "colors": {
+ "version": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz",
+ "integrity": "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=",
+ "dev": true
+ },
+ "combined-stream": {
+ "version": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz",
+ "integrity": "sha1-ATfmV7qlp1QcV6w3rF/AfXO03B8=",
+ "dev": true
+ },
+ "commander": {
+ "version": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
+ "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=",
+ "dev": true
+ },
+ "concat-map": {
+ "version": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
+ "dev": true
+ },
+ "concat-stream": {
+ "version": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz",
+ "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=",
+ "dev": true
+ },
+ "console-control-strings": {
+ "version": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+ "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=",
+ "dev": true
+ },
+ "cookie-jar": {
+ "version": "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.3.0.tgz",
+ "integrity": "sha1-vJon1OK5fhhs1XyeIGPLmfpozMw=",
+ "dev": true
+ },
+ "core-util-is": {
+ "version": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
+ "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
+ "dev": true
+ },
+ "cross-spawn": {
+ "version": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz",
+ "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=",
+ "dev": true,
+ "dependencies": {
+ "lru-cache": {
+ "version": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.2.tgz",
+ "integrity": "sha1-HRdnnAac2l0ECZGgnbwsDbN35V4=",
+ "dev": true
+ },
+ "which": {
+ "version": "https://registry.npmjs.org/which/-/which-1.2.14.tgz",
+ "integrity": "sha1-mofEN48D6CfOyvGs31bHNsAcFOU=",
+ "dev": true
+ }
+ }
+ },
+ "cryptiles": {
+ "version": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.2.2.tgz",
+ "integrity": "sha1-7ZH/HxetE9N0gohZT4pIoNJvMlw=",
+ "dev": true
+ },
+ "ctype": {
+ "version": "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz",
+ "integrity": "sha1-gsGMJGH3QRTvFsE1IkrQuRRMoS8=",
+ "dev": true
+ },
+ "currently-unhandled": {
+ "version": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
+ "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
+ "dev": true
+ },
+ "d": {
+ "version": "https://registry.npmjs.org/d/-/d-1.0.0.tgz",
+ "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=",
+ "dev": true
+ },
+ "dashdash": {
+ "version": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
+ "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
+ "dev": true,
+ "dependencies": {
+ "assert-plus": {
+ "version": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
+ "dev": true
+ }
+ }
+ },
+ "dateformat": {
+ "version": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz",
+ "integrity": "sha1-sCIMAt6YYXQztyhRz0fePfLNvuk=",
+ "dev": true
+ },
+ "debug": {
+ "version": "https://registry.npmjs.org/debug/-/debug-2.6.3.tgz",
+ "integrity": "sha1-D364wwll7AjHKsz6ATDIt5mEFB0=",
+ "dev": true
+ },
+ "decamelize": {
+ "version": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+ "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
+ "dev": true
+ },
+ "deep-is": {
+ "version": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
+ "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
+ "dev": true
+ },
+ "del": {
+ "version": "https://registry.npmjs.org/del/-/del-2.2.2.tgz",
+ "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=",
+ "dev": true
+ },
+ "delayed-stream": {
+ "version": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz",
+ "integrity": "sha1-1LH0OpPoKW3+AmlPRoC8N6MTxz8=",
+ "dev": true
+ },
+ "delegates": {
+ "version": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+ "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=",
+ "dev": true
+ },
+ "doctrine": {
+ "version": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
+ "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=",
+ "dev": true
+ },
+ "each-async": {
+ "version": "https://registry.npmjs.org/each-async/-/each-async-1.1.1.tgz",
+ "integrity": "sha1-3uUim98KtrogEqOV4bhpq/iBNHM=",
+ "dev": true
+ },
+ "ecc-jsbn": {
+ "version": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
+ "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=",
+ "dev": true,
+ "optional": true
+ },
+ "error-ex": {
+ "version": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz",
+ "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=",
+ "dev": true
+ },
+ "es5-ext": {
+ "version": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.15.tgz",
+ "integrity": "sha1-wzClk0we4hKEp8CBqG5f2TfJHqY=",
+ "dev": true
+ },
+ "es6-iterator": {
+ "version": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.1.tgz",
+ "integrity": "sha1-jjGcnwRTv1ddN0lAplWSDlnKVRI=",
+ "dev": true
+ },
+ "es6-map": {
+ "version": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz",
+ "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=",
+ "dev": true
+ },
+ "es6-set": {
+ "version": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz",
+ "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=",
+ "dev": true
+ },
+ "es6-symbol": {
+ "version": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz",
+ "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=",
+ "dev": true
+ },
+ "es6-weak-map": {
+ "version": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz",
+ "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=",
+ "dev": true
+ },
+ "escape-string-regexp": {
+ "version": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+ "dev": true
+ },
+ "escope": {
+ "version": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz",
+ "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=",
+ "dev": true
+ },
+ "eslint": {
+ "version": "https://registry.npmjs.org/eslint/-/eslint-2.13.1.tgz",
+ "integrity": "sha1-5MyPoPAJ+4KaquI4VaKTYL4fbBE=",
+ "dev": true
+ },
+ "eslint-config-google": {
+ "version": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.5.0.tgz",
+ "integrity": "sha1-W3rxpmZtXvWEB3dp11vROUCC5Vc=",
+ "dev": true
+ },
+ "eslint-config-xo": {
+ "version": "https://registry.npmjs.org/eslint-config-xo/-/eslint-config-xo-0.13.0.tgz",
+ "integrity": "sha1-+RZ2VDK6Z9L8enF3uLz+8/brBWQ=",
+ "dev": true
+ },
+ "espree": {
+ "version": "https://registry.npmjs.org/espree/-/espree-3.4.1.tgz",
+ "integrity": "sha1-KKg6tKrtce2P4PXv5ht2oFwTxNI=",
+ "dev": true
+ },
+ "esprima": {
+ "version": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz",
+ "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=",
+ "dev": true
+ },
+ "esrecurse": {
+ "version": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.1.0.tgz",
+ "integrity": "sha1-RxO2U2rffyrE8yfVWed1a/9kgiA=",
+ "dev": true,
+ "dependencies": {
+ "estraverse": {
+ "version": "https://registry.npmjs.org/estraverse/-/estraverse-4.1.1.tgz",
+ "integrity": "sha1-9srKcokzqFDvkGYdDheYK6RxEaI=",
+ "dev": true
+ }
+ }
+ },
+ "estraverse": {
+ "version": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
+ "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=",
+ "dev": true
+ },
+ "esutils": {
+ "version": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
+ "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
+ "dev": true
+ },
+ "event-emitter": {
+ "version": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz",
+ "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=",
+ "dev": true
+ },
+ "eventemitter2": {
+ "version": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz",
+ "integrity": "sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=",
+ "dev": true
+ },
+ "exit": {
+ "version": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
+ "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
+ "dev": true
+ },
+ "exit-hook": {
+ "version": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz",
+ "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=",
+ "dev": true
+ },
+ "extend": {
+ "version": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz",
+ "integrity": "sha1-WkdDU7nzNT3dgXbf03uRyDpG8dQ=",
+ "dev": true
+ },
+ "extsprintf": {
+ "version": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz",
+ "integrity": "sha1-4QgOBljjALBilJkMxw4VAiNf1VA=",
+ "dev": true
+ },
+ "fast-levenshtein": {
+ "version": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
+ "dev": true
+ },
+ "faye-websocket": {
+ "version": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.4.4.tgz",
+ "integrity": "sha1-wUxbO/FNdBf/v9mQwKdJXNnzN7w=",
+ "dev": true
+ },
+ "figures": {
+ "version": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz",
+ "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=",
+ "dev": true
+ },
+ "file-entry-cache": {
+ "version": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.3.1.tgz",
+ "integrity": "sha1-RMYepgeuS+nBQC9B9EJwy/4zT/g=",
+ "dev": true
+ },
+ "find-up": {
+ "version": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
+ "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
+ "dev": true
+ },
+ "findup-sync": {
+ "version": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz",
+ "integrity": "sha1-fz56l7gjksZTvwZYm9hRkOk8NoM=",
+ "dev": true,
+ "dependencies": {
+ "glob": {
+ "version": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz",
+ "integrity": "sha1-Spc/Y1uRkPcV0QmH1cAP0oFevj0=",
+ "dev": true
+ },
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz",
+ "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=",
+ "dev": true
+ },
+ "minimatch": {
+ "version": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz",
+ "integrity": "sha1-J12O2qxPG7MyZHIInnlJyDlGmd0=",
+ "dev": true
+ }
+ }
+ },
+ "flat-cache": {
+ "version": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.2.2.tgz",
+ "integrity": "sha1-+oZxTnLCHbiGAXYezy9VXRq8a5Y=",
+ "dev": true
+ },
+ "forever-agent": {
+ "version": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz",
+ "integrity": "sha1-bQ4JxJIflKJ/Y9O0nF/v8epMUTA=",
+ "dev": true
+ },
+ "form-data": {
+ "version": "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz",
+ "integrity": "sha1-kavXiKupcCsaq/qLwBAxoqyeOxI=",
+ "dev": true,
+ "dependencies": {
+ "async": {
+ "version": "https://registry.npmjs.org/async/-/async-0.9.2.tgz",
+ "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=",
+ "dev": true
+ }
+ }
+ },
+ "fs.realpath": {
+ "version": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
+ "dev": true
+ },
+ "gauge": {
+ "version": "https://registry.npmjs.org/gauge/-/gauge-2.7.3.tgz",
+ "integrity": "sha1-HCOFX5YvF7OtPQ3HRD8wRULt/gk=",
+ "dev": true
+ },
+ "gaze": {
+ "version": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz",
+ "integrity": "sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8=",
+ "dev": true
+ },
+ "generate-function": {
+ "version": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz",
+ "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=",
+ "dev": true
+ },
+ "generate-object-property": {
+ "version": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz",
+ "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=",
+ "dev": true
+ },
+ "get-caller-file": {
+ "version": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz",
+ "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=",
+ "dev": true
+ },
+ "get-stdin": {
+ "version": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
+ "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=",
+ "dev": true
+ },
+ "getobject": {
+ "version": "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz",
+ "integrity": "sha1-BHpEl4n6Fg0Bj1SG7ZEyC27HiFw=",
+ "dev": true
+ },
+ "getpass": {
+ "version": "https://registry.npmjs.org/getpass/-/getpass-0.1.6.tgz",
+ "integrity": "sha1-KD/9n8ElaECHUxHBtg6MQBhxEOY=",
+ "dev": true,
+ "dependencies": {
+ "assert-plus": {
+ "version": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
+ "dev": true
+ }
+ }
+ },
+ "glob": {
+ "version": "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz",
+ "integrity": "sha1-gFIR3wT6rxxjo2ADBs31reULLsg=",
+ "dev": true
+ },
+ "globals": {
+ "version": "https://registry.npmjs.org/globals/-/globals-9.17.0.tgz",
+ "integrity": "sha1-DAymltm5u2lNLlRwvTd3fKrVAoY=",
+ "dev": true
+ },
+ "globby": {
+ "version": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz",
+ "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=",
+ "dev": true
+ },
+ "globule": {
+ "version": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz",
+ "integrity": "sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU=",
+ "dev": true,
+ "dependencies": {
+ "glob": {
+ "version": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz",
+ "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=",
+ "dev": true
+ },
+ "graceful-fs": {
+ "version": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz",
+ "integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=",
+ "dev": true
+ },
+ "inherits": {
+ "version": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz",
+ "integrity": "sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js=",
+ "dev": true
+ },
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz",
+ "integrity": "sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE=",
+ "dev": true
+ },
+ "minimatch": {
+ "version": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz",
+ "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=",
+ "dev": true
+ }
+ }
+ },
+ "graceful-fs": {
+ "version": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
+ "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=",
+ "dev": true
+ },
+ "graceful-readlink": {
+ "version": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
+ "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=",
+ "dev": true
+ },
+ "grunt": {
+ "version": "https://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz",
+ "integrity": "sha1-VpN81RlDJK3/bSB2MYMqnWuk5/A=",
+ "dev": true,
+ "dependencies": {
+ "argparse": {
+ "version": "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz",
+ "integrity": "sha1-z9AeD7uj1srtBJ+9dY1A9lGW9Xw=",
+ "dev": true,
+ "dependencies": {
+ "underscore.string": {
+ "version": "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz",
+ "integrity": "sha1-jN2PusTi0uoefi6Al8QvRCKA+Fs=",
+ "dev": true
+ }
+ }
+ },
+ "esprima": {
+ "version": "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz",
+ "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=",
+ "dev": true
+ },
+ "glob": {
+ "version": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz",
+ "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=",
+ "dev": true
+ },
+ "graceful-fs": {
+ "version": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz",
+ "integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=",
+ "dev": true
+ },
+ "inherits": {
+ "version": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz",
+ "integrity": "sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js=",
+ "dev": true
+ },
+ "js-yaml": {
+ "version": "https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.5.tgz",
+ "integrity": "sha1-olrmUJmZ6X3yeMZxnaEb0Gh3Q6g=",
+ "dev": true
+ },
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz",
+ "integrity": "sha1-jzSZxSRdNG1oLlsNO0B2fgnxqSw=",
+ "dev": true
+ },
+ "minimatch": {
+ "version": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz",
+ "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=",
+ "dev": true
+ },
+ "rimraf": {
+ "version": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz",
+ "integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=",
+ "dev": true
+ }
+ }
+ },
+ "grunt-contrib-clean": {
+ "version": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-0.5.0.tgz",
+ "integrity": "sha1-9T397ghJsce0Dp67umn0jExgecU=",
+ "dev": true,
+ "dependencies": {
+ "rimraf": {
+ "version": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz",
+ "integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=",
+ "dev": true
+ }
+ }
+ },
+ "grunt-contrib-concat": {
+ "version": "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz",
+ "integrity": "sha1-lTxu/f39LBB6uchQd/LUsk0xzUk=",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": {
+ "version": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz",
+ "integrity": "sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz",
+ "integrity": "sha1-6uy/Zs1waIJ2Cy9GkVgrj1XXp94=",
+ "dev": true
+ },
+ "chalk": {
+ "version": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz",
+ "integrity": "sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=",
+ "dev": true
+ },
+ "has-ansi": {
+ "version": "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz",
+ "integrity": "sha1-hPJlqujA5qiKEtcCKJS3VoiUxi4=",
+ "dev": true
+ },
+ "source-map": {
+ "version": "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz",
+ "integrity": "sha1-hYb7mloAXltQHiHNGLbyG0V60fk=",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz",
+ "integrity": "sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz",
+ "integrity": "sha1-2S3iaU6z9nMjlz1649i1W0wiGQo=",
+ "dev": true
+ }
+ }
+ },
+ "grunt-contrib-copy": {
+ "version": "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-0.4.1.tgz",
+ "integrity": "sha1-8HU7QK4hu3BtrvsLKZ4DzfX6nW4=",
+ "dev": true
+ },
+ "grunt-contrib-cssmin": {
+ "version": "https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-0.12.3.tgz",
+ "integrity": "sha1-QVdZYJb7dlb8RktMx7B0beHzkBQ=",
+ "dev": true
+ },
+ "grunt-contrib-uglify": {
+ "version": "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-0.7.0.tgz",
+ "integrity": "sha1-ed3oGmLOxv+jW0ejKDNwZ0T454c=",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": {
+ "version": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz",
+ "integrity": "sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz",
+ "integrity": "sha1-6uy/Zs1waIJ2Cy9GkVgrj1XXp94=",
+ "dev": true
+ },
+ "chalk": {
+ "version": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz",
+ "integrity": "sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=",
+ "dev": true
+ },
+ "has-ansi": {
+ "version": "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz",
+ "integrity": "sha1-hPJlqujA5qiKEtcCKJS3VoiUxi4=",
+ "dev": true
+ },
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz",
+ "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=",
+ "dev": true
+ },
+ "source-map": {
+ "version": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
+ "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz",
+ "integrity": "sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz",
+ "integrity": "sha1-2S3iaU6z9nMjlz1649i1W0wiGQo=",
+ "dev": true
+ },
+ "uglify-js": {
+ "version": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.22.tgz",
+ "integrity": "sha1-1Uk0d4qNoUkD+imjJvskwKtRoaA=",
+ "dev": true
+ }
+ }
+ },
+ "grunt-contrib-watch": {
+ "version": "https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-0.6.1.tgz",
+ "integrity": "sha1-ZP3LolpjX1tNobbOb5DaCutuPxU=",
+ "dev": true,
+ "dependencies": {
+ "async": {
+ "version": "https://registry.npmjs.org/async/-/async-0.2.10.tgz",
+ "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=",
+ "dev": true
+ },
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz",
+ "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=",
+ "dev": true
+ }
+ }
+ },
+ "grunt-exec": {
+ "version": "https://registry.npmjs.org/grunt-exec/-/grunt-exec-0.4.7.tgz",
+ "integrity": "sha1-QAUf+k6wyWV+BTuV6I1ENSocLCU=",
+ "dev": true
+ },
+ "grunt-legacy-log": {
+ "version": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.3.tgz",
+ "integrity": "sha1-7ClCboAwIa9ZAp+H0vnNczWgVTE=",
+ "dev": true,
+ "dependencies": {
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz",
+ "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=",
+ "dev": true
+ },
+ "underscore.string": {
+ "version": "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz",
+ "integrity": "sha1-ccCL9rQosRM/N+ePo6Icgvcymw0=",
+ "dev": true
+ }
+ }
+ },
+ "grunt-legacy-log-utils": {
+ "version": "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-0.1.1.tgz",
+ "integrity": "sha1-wHBrndkGThFvNvI/5OawSGcsD34=",
+ "dev": true,
+ "dependencies": {
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz",
+ "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=",
+ "dev": true
+ },
+ "underscore.string": {
+ "version": "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz",
+ "integrity": "sha1-ccCL9rQosRM/N+ePo6Icgvcymw0=",
+ "dev": true
+ }
+ }
+ },
+ "grunt-legacy-util": {
+ "version": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.2.0.tgz",
+ "integrity": "sha1-kzJIhNv343qf98Am3/RR2UqeVUs=",
+ "dev": true,
+ "dependencies": {
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz",
+ "integrity": "sha1-jzSZxSRdNG1oLlsNO0B2fgnxqSw=",
+ "dev": true
+ }
+ }
+ },
+ "grunt-sails-linker": {
+ "version": "https://registry.npmjs.org/grunt-sails-linker/-/grunt-sails-linker-0.10.1.tgz",
+ "integrity": "sha1-DSz1RzwDuuu2zmwd4eWBY9OsjQY=",
+ "dev": true
+ },
+ "grunt-sass": {
+ "version": "https://registry.npmjs.org/grunt-sass/-/grunt-sass-1.1.0.tgz",
+ "integrity": "sha1-SAUzx1GmFzZjhcD7mEUYTAWy5Ks=",
+ "dev": true
+ },
+ "grunt-sync": {
+ "version": "https://registry.npmjs.org/grunt-sync/-/grunt-sync-0.2.4.tgz",
+ "integrity": "sha1-OfeZUO+ur+48O6N/ypjPWU68VP4=",
+ "dev": true,
+ "dependencies": {
+ "glob": {
+ "version": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz",
+ "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=",
+ "dev": true
+ },
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz",
+ "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=",
+ "dev": true
+ },
+ "minimatch": {
+ "version": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz",
+ "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=",
+ "dev": true
+ }
+ }
+ },
+ "grunt-text-replace": {
+ "version": "https://registry.npmjs.org/grunt-text-replace/-/grunt-text-replace-0.4.0.tgz",
+ "integrity": "sha1-252c5Z4v5J2id+nbwZXD4Rz7FsI=",
+ "dev": true
+ },
+ "gzip-size": {
+ "version": "https://registry.npmjs.org/gzip-size/-/gzip-size-1.0.0.tgz",
+ "integrity": "sha1-Zs+LEBBHInuVus5uodoMF37Vwi8=",
+ "dev": true
+ },
+ "har-schema": {
+ "version": "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz",
+ "integrity": "sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4=",
+ "dev": true
+ },
+ "har-validator": {
+ "version": "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz",
+ "integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=",
+ "dev": true
+ },
+ "has-ansi": {
+ "version": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
+ "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
+ "dev": true
+ },
+ "has-unicode": {
+ "version": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+ "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=",
+ "dev": true
+ },
+ "hawk": {
+ "version": "https://registry.npmjs.org/hawk/-/hawk-1.0.0.tgz",
+ "integrity": "sha1-uQuxaYByhUEdp//LjdJZhQLTtS0=",
+ "dev": true
+ },
+ "hoek": {
+ "version": "https://registry.npmjs.org/hoek/-/hoek-0.9.1.tgz",
+ "integrity": "sha1-PTIkYrrfB3Fup+uFuviAec3c5QU=",
+ "dev": true
+ },
+ "hooker": {
+ "version": "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz",
+ "integrity": "sha1-uDT3I8xKJCqmWWNFnfbZhMXT2Vk=",
+ "dev": true
+ },
+ "hosted-git-info": {
+ "version": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.4.2.tgz",
+ "integrity": "sha1-AHa59GonBQbduq6lZJaJdGBhKmc=",
+ "dev": true
+ },
+ "http-signature": {
+ "version": "https://registry.npmjs.org/http-signature/-/http-signature-0.10.1.tgz",
+ "integrity": "sha1-T72sEyVZqoMjEh5UB3nAoBKyfmY=",
+ "dev": true
+ },
+ "iconv-lite": {
+ "version": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz",
+ "integrity": "sha1-HOYKOleGSiktEyH/RgnKS7llrcg=",
+ "dev": true
+ },
+ "ignore": {
+ "version": "https://registry.npmjs.org/ignore/-/ignore-3.2.7.tgz",
+ "integrity": "sha1-SBDKXx2OylWVITo0uU8utO2Sa70=",
+ "dev": true
+ },
+ "imurmurhash": {
+ "version": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
+ "dev": true
+ },
+ "in-publish": {
+ "version": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz",
+ "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=",
+ "dev": true
+ },
+ "include-all": {
+ "version": "https://registry.npmjs.org/include-all/-/include-all-0.1.6.tgz",
+ "integrity": "sha1-qJZ2sIWGkYVIbr/poZy2mrhKZSs=",
+ "dev": true,
+ "dependencies": {
+ "underscore.string": {
+ "version": "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.1.tgz",
+ "integrity": "sha1-4jKLDAmBio9hcCZCfTSPlq0Qmdk=",
+ "dev": true
+ }
+ }
+ },
+ "indent-string": {
+ "version": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz",
+ "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=",
+ "dev": true
+ },
+ "inflight": {
+ "version": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
+ "dev": true
+ },
+ "inherits": {
+ "version": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+ "dev": true
+ },
+ "inquirer": {
+ "version": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz",
+ "integrity": "sha1-HvK/1jUE3wvHV4X/+MLEHfEvB34=",
+ "dev": true
+ },
+ "invert-kv": {
+ "version": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz",
+ "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=",
+ "dev": true
+ },
+ "is-arrayish": {
+ "version": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+ "dev": true
+ },
+ "is-buffer": {
+ "version": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz",
+ "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=",
+ "dev": true
+ },
+ "is-builtin-module": {
+ "version": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz",
+ "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=",
+ "dev": true
+ },
+ "is-finite": {
+ "version": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz",
+ "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+ "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+ "dev": true
+ },
+ "is-my-json-valid": {
+ "version": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz",
+ "integrity": "sha1-8Hndm/2uZe4gOKrorLyGqxCeNpM=",
+ "dev": true
+ },
+ "is-path-cwd": {
+ "version": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz",
+ "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=",
+ "dev": true
+ },
+ "is-path-in-cwd": {
+ "version": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz",
+ "integrity": "sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw=",
+ "dev": true
+ },
+ "is-path-inside": {
+ "version": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz",
+ "integrity": "sha1-/AbloWg/vaE95mev9xe7wQpI838=",
+ "dev": true
+ },
+ "is-property": {
+ "version": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz",
+ "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=",
+ "dev": true
+ },
+ "is-resolvable": {
+ "version": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.0.tgz",
+ "integrity": "sha1-jfV8YeouPFAUCNEA+wE8+NbgzGI=",
+ "dev": true
+ },
+ "is-typedarray": {
+ "version": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+ "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
+ "dev": true
+ },
+ "is-utf8": {
+ "version": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
+ "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=",
+ "dev": true
+ },
+ "isarray": {
+ "version": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "isexe": {
+ "version": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
+ "dev": true
+ },
+ "isstream": {
+ "version": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
+ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
+ "dev": true
+ },
+ "jodid25519": {
+ "version": "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz",
+ "integrity": "sha1-BtSRIlUJNBlHfUJWM2BuDpB4KWc=",
+ "dev": true,
+ "optional": true
+ },
+ "js-yaml": {
+ "version": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.3.tgz",
+ "integrity": "sha1-M6BexIHIUMiHWSkWb+G+thxyh2Y=",
+ "dev": true
+ },
+ "jsbn": {
+ "version": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
+ "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
+ "dev": true,
+ "optional": true
+ },
+ "json-schema": {
+ "version": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
+ "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=",
+ "dev": true
+ },
+ "json-stable-stringify": {
+ "version": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
+ "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=",
+ "dev": true
+ },
+ "json-stringify-safe": {
+ "version": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
+ "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
+ "dev": true
+ },
+ "jsonify": {
+ "version": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
+ "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=",
+ "dev": true
+ },
+ "jsonpointer": {
+ "version": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz",
+ "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=",
+ "dev": true
+ },
+ "jsprim": {
+ "version": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz",
+ "integrity": "sha1-o7h+QCmNjDgFUtjMdiigu5WiKRg=",
+ "dev": true,
+ "dependencies": {
+ "assert-plus": {
+ "version": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
+ "dev": true
+ }
+ }
+ },
+ "kind-of": {
+ "version": "https://registry.npmjs.org/kind-of/-/kind-of-3.1.0.tgz",
+ "integrity": "sha1-R11pil5J/15T0U4+cyQp3Iv0z0c=",
+ "dev": true
+ },
+ "lazy-cache": {
+ "version": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz",
+ "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=",
+ "dev": true
+ },
+ "lcid": {
+ "version": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
+ "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=",
+ "dev": true
+ },
+ "levn": {
+ "version": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
+ "dev": true
+ },
+ "load-grunt-tasks": {
+ "version": "https://registry.npmjs.org/load-grunt-tasks/-/load-grunt-tasks-0.2.1.tgz",
+ "integrity": "sha1-Gd+Cq7f6t+xw7MUiLOejAahD2s4=",
+ "dev": true
+ },
+ "load-json-file": {
+ "version": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
+ "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
+ "dev": true
+ },
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
+ "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=",
+ "dev": true
+ },
+ "lodash.assign": {
+ "version": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz",
+ "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=",
+ "dev": true
+ },
+ "lodash.clonedeep": {
+ "version": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
+ "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=",
+ "dev": true
+ },
+ "longest": {
+ "version": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz",
+ "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=",
+ "dev": true
+ },
+ "loud-rejection": {
+ "version": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz",
+ "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=",
+ "dev": true
+ },
+ "lru-cache": {
+ "version": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz",
+ "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=",
+ "dev": true
+ },
+ "map-obj": {
+ "version": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
+ "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=",
+ "dev": true
+ },
+ "maxmin": {
+ "version": "https://registry.npmjs.org/maxmin/-/maxmin-1.1.0.tgz",
+ "integrity": "sha1-cTZehKmd2Piz99X94vANHn9zvmE=",
+ "dev": true
+ },
+ "meow": {
+ "version": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz",
+ "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=",
+ "dev": true,
+ "dependencies": {
+ "minimist": {
+ "version": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+ "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
+ "dev": true
+ }
+ }
+ },
+ "mime": {
+ "version": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz",
+ "integrity": "sha1-WCA+7Ybjpe8XrtK32evUfwpg3RA=",
+ "dev": true
+ },
+ "mime-db": {
+ "version": "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz",
+ "integrity": "sha1-gg9XIpa70g7CXtVeW13oaeVDbrE=",
+ "dev": true
+ },
+ "mime-types": {
+ "version": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz",
+ "integrity": "sha1-pOv1BkCUVpI3uM9wBGd20J/JKu0=",
+ "dev": true
+ },
+ "minimatch": {
+ "version": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
+ "integrity": "sha1-Kk5AkLlrLbBqnX3wEFWmKnfJt3Q=",
+ "dev": true
+ },
+ "minimist": {
+ "version": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
+ "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+ "dev": true
+ },
+ "ms": {
+ "version": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
+ "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=",
+ "dev": true
+ },
+ "mute-stream": {
+ "version": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz",
+ "integrity": "sha1-j7+rsKmKJT0xhDMfno3rc3L6xsA=",
+ "dev": true
+ },
+ "nan": {
+ "version": "https://registry.npmjs.org/nan/-/nan-2.6.2.tgz",
+ "integrity": "sha1-5P805slf37WuzAjeZZb0NgWn20U=",
+ "dev": true
+ },
+ "node-gyp": {
+ "version": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.0.tgz",
+ "integrity": "sha1-dHT2OjoFARYd2gtjQfAi8UxCP6Y=",
+ "dev": true,
+ "dependencies": {
+ "fstream": {
+ "version": "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz",
+ "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=",
+ "dev": true
+ },
+ "nopt": {
+ "version": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz",
+ "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=",
+ "dev": true
+ },
+ "semver": {
+ "version": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz",
+ "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=",
+ "dev": true
+ },
+ "tar": {
+ "version": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz",
+ "integrity": "sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=",
+ "dev": true
+ }
+ }
+ },
+ "node-sass": {
+ "version": "https://registry.npmjs.org/node-sass/-/node-sass-3.13.1.tgz",
+ "integrity": "sha1-ckD7v/I5YwS0IjUn7TAgWJwAT8I=",
+ "dev": true,
+ "dependencies": {
+ "assert-plus": {
+ "version": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz",
+ "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=",
+ "dev": true
+ },
+ "boom": {
+ "version": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz",
+ "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=",
+ "dev": true
+ },
+ "combined-stream": {
+ "version": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
+ "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
+ "dev": true
+ },
+ "cryptiles": {
+ "version": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz",
+ "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=",
+ "dev": true
+ },
+ "delayed-stream": {
+ "version": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
+ "dev": true
+ },
+ "forever-agent": {
+ "version": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
+ "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
+ "dev": true
+ },
+ "form-data": {
+ "version": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz",
+ "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=",
+ "dev": true
+ },
+ "gaze": {
+ "version": "https://registry.npmjs.org/gaze/-/gaze-1.1.2.tgz",
+ "integrity": "sha1-hHIkZ3rbiHDWeSV+0ziP22HkAQU=",
+ "dev": true
+ },
+ "globule": {
+ "version": "https://registry.npmjs.org/globule/-/globule-1.1.0.tgz",
+ "integrity": "sha1-xJNS5NwYPYWJPuglOF65lLtt9F8=",
+ "dev": true
+ },
+ "hawk": {
+ "version": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz",
+ "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=",
+ "dev": true
+ },
+ "hoek": {
+ "version": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz",
+ "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=",
+ "dev": true
+ },
+ "http-signature": {
+ "version": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz",
+ "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=",
+ "dev": true
+ },
+ "lodash": {
+ "version": "https://registry.npmjs.org/lodash/-/lodash-4.16.6.tgz",
+ "integrity": "sha1-0iyaxmAojzhD4Wun0rXQbMon13c=",
+ "dev": true
+ },
+ "oauth-sign": {
+ "version": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz",
+ "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=",
+ "dev": true
+ },
+ "qs": {
+ "version": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz",
+ "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=",
+ "dev": true
+ },
+ "request": {
+ "version": "https://registry.npmjs.org/request/-/request-2.81.0.tgz",
+ "integrity": "sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=",
+ "dev": true
+ },
+ "sntp": {
+ "version": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz",
+ "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=",
+ "dev": true
+ },
+ "tunnel-agent": {
+ "version": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+ "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+ "dev": true
+ },
+ "uuid": {
+ "version": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz",
+ "integrity": "sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE=",
+ "dev": true
+ }
+ }
+ },
+ "node-uuid": {
+ "version": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz",
+ "integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc=",
+ "dev": true
+ },
+ "nopt": {
+ "version": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz",
+ "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=",
+ "dev": true
+ },
+ "noptify": {
+ "version": "https://registry.npmjs.org/noptify/-/noptify-0.0.3.tgz",
+ "integrity": "sha1-WPZUpz2XU98MUdlobckhBKZ/S7s=",
+ "dev": true,
+ "dependencies": {
+ "nopt": {
+ "version": "https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz",
+ "integrity": "sha1-ynQW8gpeP5w7hhgPlilfo9C1Lg0=",
+ "dev": true
+ }
+ }
+ },
+ "normalize-package-data": {
+ "version": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.6.tgz",
+ "integrity": "sha1-SY+kIMlkAfeHQCuiHmAN75+YH/8=",
+ "dev": true
+ },
+ "npmlog": {
+ "version": "https://registry.npmjs.org/npmlog/-/npmlog-4.0.2.tgz",
+ "integrity": "sha1-0DlQ4OeM4VJ7om0qdZLpNIrD518=",
+ "dev": true
+ },
+ "number-is-nan": {
+ "version": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
+ "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
+ "dev": true
+ },
+ "oauth-sign": {
+ "version": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.3.0.tgz",
+ "integrity": "sha1-y1QPk7srIqfVlBaRoojWDo6pOG4=",
+ "dev": true
+ },
+ "object-assign": {
+ "version": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
+ "dev": true
+ },
+ "once": {
+ "version": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+ "dev": true
+ },
+ "onetime": {
+ "version": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz",
+ "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=",
+ "dev": true
+ },
+ "optionator": {
+ "version": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz",
+ "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=",
+ "dev": true
+ },
+ "os-homedir": {
+ "version": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
+ "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=",
+ "dev": true
+ },
+ "os-locale": {
+ "version": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz",
+ "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=",
+ "dev": true
+ },
+ "osenv": {
+ "version": "https://registry.npmjs.org/osenv/-/osenv-0.0.3.tgz",
+ "integrity": "sha1-zWrY3bKQkVrZ4idlV2Al1BHynLY=",
+ "dev": true
+ },
+ "pako": {
+ "version": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
+ "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=",
+ "dev": true
+ },
+ "parse-json": {
+ "version": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
+ "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
+ "dev": true
+ },
+ "path-exists": {
+ "version": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
+ "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
+ "dev": true
+ },
+ "path-is-absolute": {
+ "version": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
+ "dev": true
+ },
+ "path-is-inside": {
+ "version": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
+ "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
+ "dev": true
+ },
+ "path-type": {
+ "version": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz",
+ "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
+ "dev": true
+ },
+ "performance-now": {
+ "version": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz",
+ "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=",
+ "dev": true
+ },
+ "pify": {
+ "version": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "dev": true
+ },
+ "pinkie": {
+ "version": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
+ "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=",
+ "dev": true
+ },
+ "pinkie-promise": {
+ "version": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
+ "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
+ "dev": true
+ },
+ "pluralize": {
+ "version": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz",
+ "integrity": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=",
+ "dev": true
+ },
+ "prelude-ls": {
+ "version": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
+ "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
+ "dev": true
+ },
+ "pretty-bytes": {
+ "version": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-1.0.4.tgz",
+ "integrity": "sha1-CiLoIQYJrTVUL4yNXSFZr/B1HIQ=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz",
+ "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=",
+ "dev": true
+ },
+ "progress": {
+ "version": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz",
+ "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=",
+ "dev": true
+ },
+ "promised-io": {
+ "version": "https://registry.npmjs.org/promised-io/-/promised-io-0.3.3.tgz",
+ "integrity": "sha1-DqVWIYD/mJaW82r1tGIITKQWYEg=",
+ "dev": true
+ },
+ "pseudomap": {
+ "version": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
+ "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
+ "dev": true
+ },
+ "punycode": {
+ "version": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
+ "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
+ "dev": true
+ },
+ "qs": {
+ "version": "https://registry.npmjs.org/qs/-/qs-0.6.6.tgz",
+ "integrity": "sha1-bgFQmP9RlouKPIGQAdXyyJvEsQc=",
+ "dev": true
+ },
+ "rand-token": {
+ "version": "https://registry.npmjs.org/rand-token/-/rand-token-0.2.1.tgz",
+ "integrity": "sha1-3GfIEjMGyRInstw/W+pz0wE3YiY=",
+ "dev": true
+ },
+ "read-pkg": {
+ "version": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz",
+ "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
+ "dev": true
+ },
+ "read-pkg-up": {
+ "version": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz",
+ "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.9.tgz",
+ "integrity": "sha1-z3jsb0ptHrQ9JkiMrJfwQudLf8g=",
+ "dev": true
+ },
+ "readline2": {
+ "version": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz",
+ "integrity": "sha1-QQWWCP/BVHV7cV2ZidGZ/783LjU=",
+ "dev": true
+ },
+ "redent": {
+ "version": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz",
+ "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=",
+ "dev": true
+ },
+ "repeat-string": {
+ "version": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
+ "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
+ "dev": true
+ },
+ "repeating": {
+ "version": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
+ "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
+ "dev": true
+ },
+ "request": {
+ "version": "https://registry.npmjs.org/request/-/request-2.27.0.tgz",
+ "integrity": "sha1-37GiJN06Wput5DNwElA9cQ5Thmg=",
+ "dev": true
+ },
+ "require-directory": {
+ "version": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
+ "dev": true
+ },
+ "require-main-filename": {
+ "version": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz",
+ "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=",
+ "dev": true
+ },
+ "require-uncached": {
+ "version": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz",
+ "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=",
+ "dev": true
+ },
+ "resolve-from": {
+ "version": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz",
+ "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=",
+ "dev": true
+ },
+ "restore-cursor": {
+ "version": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz",
+ "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=",
+ "dev": true
+ },
+ "right-align": {
+ "version": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz",
+ "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=",
+ "dev": true
+ },
+ "rimraf": {
+ "version": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz",
+ "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=",
+ "dev": true
+ },
+ "run-async": {
+ "version": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz",
+ "integrity": "sha1-yK1KXhEGYeQCp9IbUw4AnyX444k=",
+ "dev": true
+ },
+ "rx-lite": {
+ "version": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz",
+ "integrity": "sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI=",
+ "dev": true
+ },
+ "safe-buffer": {
+ "version": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz",
+ "integrity": "sha1-0mPKVGls2KMGtcplUekt5XkY++c=",
+ "dev": true
+ },
+ "sass-graph": {
+ "version": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.1.2.tgz",
+ "integrity": "sha1-llEEviPoEDy35fcQ32WTWzF9pXs=",
+ "dev": true,
+ "dependencies": {
+ "cliui": {
+ "version": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
+ "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
+ "dev": true
+ },
+ "window-size": {
+ "version": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz",
+ "integrity": "sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU=",
+ "dev": true
+ },
+ "yargs": {
+ "version": "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz",
+ "integrity": "sha1-wMQpJMpKqmsObaFznfshZDn53cA=",
+ "dev": true
+ }
+ }
+ },
+ "semver": {
+ "version": "https://registry.npmjs.org/semver/-/semver-2.1.0.tgz",
+ "integrity": "sha1-NWKUqQaQtph3TWLPNdfJH5g+coo=",
+ "dev": true
+ },
+ "set-blocking": {
+ "version": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+ "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
+ "dev": true
+ },
+ "set-immediate-shim": {
+ "version": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz",
+ "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=",
+ "dev": true
+ },
+ "shelljs": {
+ "version": "https://registry.npmjs.org/shelljs/-/shelljs-0.6.1.tgz",
+ "integrity": "sha1-7GIRvtGSBEIIj+D3Cyg3Iy7SyKg=",
+ "dev": true
+ },
+ "sigmund": {
+ "version": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz",
+ "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=",
+ "dev": true
+ },
+ "signal-exit": {
+ "version": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
+ "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=",
+ "dev": true
+ },
+ "slice-ansi": {
+ "version": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz",
+ "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=",
+ "dev": true
+ },
+ "sntp": {
+ "version": "https://registry.npmjs.org/sntp/-/sntp-0.2.4.tgz",
+ "integrity": "sha1-+4hfGLDzqtGJ+CSGJTa87ux1CQA=",
+ "dev": true
+ },
+ "spdx-correct": {
+ "version": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz",
+ "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=",
+ "dev": true
+ },
+ "spdx-expression-parse": {
+ "version": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz",
+ "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=",
+ "dev": true
+ },
+ "spdx-license-ids": {
+ "version": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz",
+ "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=",
+ "dev": true
+ },
+ "sprintf-js": {
+ "version": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
+ "dev": true
+ },
+ "sshpk": {
+ "version": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.0.tgz",
+ "integrity": "sha1-/yo+T9BEl1Vf7Zezmg/YL6+zozw=",
+ "dev": true,
+ "dependencies": {
+ "asn1": {
+ "version": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
+ "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=",
+ "dev": true
+ },
+ "assert-plus": {
+ "version": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
+ "dev": true
+ }
+ }
+ },
+ "string_decoder": {
+ "version": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.0.tgz",
+ "integrity": "sha1-8G9BFXtmTYYGn4S9vcmw2KsoFmc=",
+ "dev": true
+ },
+ "string-width": {
+ "version": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+ "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+ "dev": true
+ },
+ "stringstream": {
+ "version": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz",
+ "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+ "dev": true
+ },
+ "strip-bom": {
+ "version": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz",
+ "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
+ "dev": true
+ },
+ "strip-indent": {
+ "version": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz",
+ "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=",
+ "dev": true
+ },
+ "strip-json-comments": {
+ "version": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz",
+ "integrity": "sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E=",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+ "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
+ "dev": true
+ },
+ "table": {
+ "version": "https://registry.npmjs.org/table/-/table-3.8.3.tgz",
+ "integrity": "sha1-K7xULw/amGGnVdOUf+/Ys/UThV8=",
+ "dev": true,
+ "dependencies": {
+ "is-fullwidth-code-point": {
+ "version": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
+ "dev": true
+ },
+ "string-width": {
+ "version": "https://registry.npmjs.org/string-width/-/string-width-2.0.0.tgz",
+ "integrity": "sha1-Y1xUNsxypuDDh87KJ41OLuxSaH4=",
+ "dev": true
+ }
+ }
+ },
+ "text-table": {
+ "version": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
+ "dev": true
+ },
+ "through": {
+ "version": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+ "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
+ "dev": true
+ },
+ "tiny-lr-fork": {
+ "version": "https://registry.npmjs.org/tiny-lr-fork/-/tiny-lr-fork-0.0.5.tgz",
+ "integrity": "sha1-Hpnh4qhGm3NquX2X7vqYxx927Qo=",
+ "dev": true,
+ "dependencies": {
+ "debug": {
+ "version": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz",
+ "integrity": "sha1-BuHqgILCyxTjmAbiLi9vdX+Srzk=",
+ "dev": true
+ },
+ "qs": {
+ "version": "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz",
+ "integrity": "sha1-MbGtBYVnZRxSaSFQa5qHk5EaA4Q=",
+ "dev": true
+ }
+ }
+ },
+ "tough-cookie": {
+ "version": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz",
+ "integrity": "sha1-8IH3bkyFcg5sN6X6ztc3FQ2EByo=",
+ "dev": true
+ },
+ "trim-newlines": {
+ "version": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz",
+ "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=",
+ "dev": true
+ },
+ "tryit": {
+ "version": "https://registry.npmjs.org/tryit/-/tryit-1.0.3.tgz",
+ "integrity": "sha1-OTvnMKlEb9Hq1tpZoBQwjzbCics=",
+ "dev": true
+ },
+ "tunnel-agent": {
+ "version": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.3.0.tgz",
+ "integrity": "sha1-rWgbaPUyGtKCfEz7G31d8s/pQu4=",
+ "dev": true
+ },
+ "tweetnacl": {
+ "version": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
+ "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
+ "dev": true,
+ "optional": true
+ },
+ "type-check": {
+ "version": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
+ "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
+ "dev": true
+ },
+ "typedarray": {
+ "version": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+ "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
+ "dev": true
+ },
+ "uglify-to-browserify": {
+ "version": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz",
+ "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=",
+ "dev": true,
+ "optional": true
+ },
+ "underscore": {
+ "version": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz",
+ "integrity": "sha1-a7rwh3UA02vjTsqlhODbn+8DUgk=",
+ "dev": true
+ },
+ "underscore.string": {
+ "version": "https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz",
+ "integrity": "sha1-18D6KvXVoaZ/QlPa7pgTLnM/Dxk=",
+ "dev": true
+ },
+ "uri-path": {
+ "version": "https://registry.npmjs.org/uri-path/-/uri-path-0.0.2.tgz",
+ "integrity": "sha1-gD6wHy/rF5J9zOD2GH5yt19T9VQ=",
+ "dev": true
+ },
+ "user-home": {
+ "version": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz",
+ "integrity": "sha1-nHC/2Babwdy/SGBODwS4tJzenp8=",
+ "dev": true
+ },
+ "util-deprecate": {
+ "version": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
+ "dev": true
+ },
+ "validate-npm-package-license": {
+ "version": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz",
+ "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=",
+ "dev": true
+ },
+ "verror": {
+ "version": "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz",
+ "integrity": "sha1-z/XfEpRtKX0rqu+qJoniW+AcAFw=",
+ "dev": true
+ },
+ "which": {
+ "version": "https://registry.npmjs.org/which/-/which-1.0.9.tgz",
+ "integrity": "sha1-RgwdoPgQED0DIam2M6+eV15kSG8=",
+ "dev": true
+ },
+ "which-module": {
+ "version": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz",
+ "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=",
+ "dev": true
+ },
+ "wide-align": {
+ "version": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.0.tgz",
+ "integrity": "sha1-QO3egCpx/qHwcNo+YtzaLnrdlq0=",
+ "dev": true
+ },
+ "window-size": {
+ "version": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz",
+ "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=",
+ "dev": true
+ },
+ "wordwrap": {
+ "version": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
+ "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
+ "dev": true
+ },
+ "wrap-ansi": {
+ "version": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
+ "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
+ "dev": true
+ },
+ "wrappy": {
+ "version": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
+ "dev": true
+ },
+ "write": {
+ "version": "https://registry.npmjs.org/write/-/write-0.2.1.tgz",
+ "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=",
+ "dev": true
+ },
+ "xtend": {
+ "version": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz",
+ "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=",
+ "dev": true
+ },
+ "y18n": {
+ "version": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz",
+ "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=",
+ "dev": true
+ },
+ "yallist": {
+ "version": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
+ "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
+ "dev": true
+ },
+ "yargs": {
+ "version": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz",
+ "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=",
+ "dev": true,
+ "dependencies": {
+ "camelcase": {
+ "version": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
+ "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=",
+ "dev": true
+ }
+ }
+ },
+ "yargs-parser": {
+ "version": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz",
+ "integrity": "sha1-hVaN488VD/SfpRgl8DqMiA3cxcQ=",
+ "dev": true,
+ "dependencies": {
+ "camelcase": {
+ "version": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
+ "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=",
+ "dev": true
+ }
+ }
+ }
+ }
+}
diff --git a/package.json b/package.json
index 0080d2c..899498a 100644
--- a/package.json
+++ b/package.json
@@ -46,4 +46,4 @@
"rand-token": "^0.2.1"
},
"dependencies": {}
-} \ No newline at end of file
+}
diff --git a/src/js/search-modal.js b/src/js/search-modal.js
index cfd1e50..808a685 100755
--- a/src/js/search-modal.js
+++ b/src/js/search-modal.js
@@ -33,8 +33,9 @@
// open modal when `s` button is pressed
$(document).keyup(function(event) {
var target = event.target || event.srcElement;
- // exit if user is focusing an input
- if (target.tagName.toUpperCase() === 'INPUT') {
+ // exit if user is focusing an input or textarea
+ var tagName = target.tagName.toUpperCase();
+ if (tagName === 'INPUT' || tagName === 'TEXTAREA') {
return;
}
diff --git a/src/js/share-options.js b/src/js/share-options.js
index 5ea077b..24367c3 100755
--- a/src/js/share-options.js
+++ b/src/js/share-options.js
@@ -10,7 +10,8 @@
var ShareOptionsBar = function() {
this.$shareOptionsBar = $('#share-options-bar');
this.$openBtn = $('.btn-open-shareoptions');
- this.$closeBtn = $('#share-options-mask');
+ this.$closeBtn = $('#btn-close-shareoptions');
+ this.$body = $('body');
};
ShareOptionsBar.prototype = {
@@ -52,7 +53,7 @@
!this.$shareOptionsBar.hasClass('processing')) {
// Open the share option bar
self.$shareOptionsBar.addClass('processing opened');
-
+ self.$body.css('overflow', 'hidden');
setTimeout(function() {
self.$shareOptionsBar.removeClass('processing');
}, 250);
@@ -71,12 +72,11 @@
if (self.$shareOptionsBar.hasClass('opened') &&
!this.$shareOptionsBar.hasClass('processing')) {
// Close the share option bar
- self.$shareOptionsBar
- .addClass('processing')
- .removeClass('opened');
+ self.$shareOptionsBar.addClass('processing').removeClass('opened');
setTimeout(function() {
self.$shareOptionsBar.removeClass('processing');
+ self.$body.css('overflow', '');
}, 250);
}
}
diff --git a/src/scss/components/_pagination.scss b/src/scss/components/_pagination.scss
index 0f7be25..d1aa58c 100755
--- a/src/scss/components/_pagination.scss
+++ b/src/scss/components/_pagination.scss
@@ -4,6 +4,7 @@
height: $pagination-height;
.pagination {
+ position: relative;
height: $pagination-height;
line-height: $pagination-height;
display: block;
diff --git a/src/scss/components/_post-actions.scss b/src/scss/components/_post-actions.scss
index 55ccba6..599873b 100755
--- a/src/scss/components/_post-actions.scss
+++ b/src/scss/components/_post-actions.scss
@@ -18,7 +18,7 @@
// Post's navigation options
ul.post-action-nav {
// Best width for responsive post's navigation panel on small screen and up
- width: 45%;
+ width: 35%;
// On very small screen `.post-actions-nav` will be above `.post-actions-share`
z-index: map-get($z-indexes, c-post-bottom-bar) + 2;
@@ -38,7 +38,7 @@
ul.post-action-share {
// 100% minus width of `.post-action-nav`,
// best width for responsive post's share panel on small screen and up
- width: 55%;
+ width: 65%;
// On very small screen `.post-actions-nav` will be above `.post-actions-share`
z-index: map-get($z-indexes, c-post-bottom-bar) + 1;
@@ -80,4 +80,10 @@
width: 65%;
}
}
+}
+
+@media print {
+ .post-actions-wrap {
+ display: none;
+ }
} \ No newline at end of file
diff --git a/src/scss/components/_share-options-bar.scss b/src/scss/components/_share-options-bar.scss
index 95aba60..04bf805 100755
--- a/src/scss/components/_share-options-bar.scss
+++ b/src/scss/components/_share-options-bar.scss
@@ -2,23 +2,31 @@
position: fixed;
// height + border-top
// used to hide the div at the bottom of the window
- bottom: -156px;
+ bottom: -100%;
background: white;
- height: 155px;
+ height: 100%;
clear: both;
border-top: 1px solid #eef2f8;
transition: transform .25s ease-in-out;
z-index: map-get($z-indexes, 'c-share-options-bar');
-webkit-transition: -webkit-transform .25s ease-in-out;
+ display: -webkit-flex;
+ display: -webkit-box;
+ display: -moz-box;
+ display: -ms-flexbox;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+
// use to animate the share option bar
&.opened {
- @include prefix(transform, translate3d(0, -155px, 0), 'webkit' 'moz');
+ @include prefix(transform, translate3d(0, -100%, 0), 'webkit' 'moz');
}
.share-options {
padding: 0;
margin: 0;
- text-align: center;
list-style: none;
.share-option {
@@ -46,15 +54,13 @@
}
}
-// mask where the user can click to close the share options bar
-.share-options-mask {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: none;
- z-index: map-get($z-indexes, 'c-mask');
+#btn-close-shareoptions {
+ position: absolute;
+ top: 15px;
+ right: 15px;
+ font-size: 20px;
+ color: map-get($colors, 'base');
+ cursor: pointer;
}
// Behavior of the share options bar on small screens
@@ -88,7 +94,7 @@
.share-options-bar {
// Display share options bar in small size
&[data-behavior="1"],
- &[data-behavior="2"]{
+ &[data-behavior="2"] {
@include share-options-bar-sm;
}
// Display share options bar in medium size
@@ -102,4 +108,11 @@
@include share-options-bar-lg;
}
}
+}
+
+// Hide share options in print layout
+@media print {
+ .share-options-bar {
+ display: none;
+ }
} \ No newline at end of file
diff --git a/src/scss/layouts/_header.scss b/src/scss/layouts/_header.scss
index dc71569..4760154 100755
--- a/src/scss/layouts/_header.scss
+++ b/src/scss/layouts/_header.scss
@@ -109,4 +109,11 @@
@include header-pushed-lg;
}
}
+}
+
+// Hide header in print layout
+@media print {
+ #header {
+ display: none;
+ }
} \ No newline at end of file
diff --git a/src/scss/layouts/_sidebar.scss b/src/scss/layouts/_sidebar.scss
index 0275397..4e68241 100755
--- a/src/scss/layouts/_sidebar.scss
+++ b/src/scss/layouts/_sidebar.scss
@@ -166,3 +166,10 @@
display: none;
}
}
+
+// Hide sidebar in print layout
+@media print {
+ #sidebar {
+ display: none;
+ }
+} \ No newline at end of file
diff --git a/src/scss/utils/mixins/_sidebar.scss b/src/scss/utils/mixins/_sidebar.scss
index f1ff827..d5ca2ec 100755
--- a/src/scss/utils/mixins/_sidebar.scss
+++ b/src/scss/utils/mixins/_sidebar.scss
@@ -110,15 +110,18 @@
/// Mixin helper to display the sidebar in large size
@mixin sidebar-xlg {
- width: map-get($sidebar, xlg-screen-width);
- box-sizing: border-box;
- padding: 0 80px;
+ width: map-get($sidebar, xlg-screen-width);
+ display: -webkit-flex;
+ display: -webkit-box;
+ display: -moz-box;
+ display: -ms-flexbox;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+
.sidebar-container {
- position: relative;
- top: 50%;
- transform: translateY(-50%);
- -webkit-transform: translateY(-50%);
- -moz-transform: translateY(-50%);
+ position: relative;
+ padding: 0 80px;
}
// Author information
.sidebar-profile {
diff --git a/static/css/style-fpbzgxsy0kgmdvyrj5ykkg6ratccrk3gocmaqn4xpcjywmv5dteilzucro4f.min.css b/static/css/style-fpbzgxsy0kgmdvyrj5ykkg6ratccrk3gocmaqn4xpcjywmv5dteilzucro4f.min.css
new file mode 100644
index 0000000..e8b6673
--- /dev/null
+++ b/static/css/style-fpbzgxsy0kgmdvyrj5ykkg6ratccrk3gocmaqn4xpcjywmv5dteilzucro4f.min.css
@@ -0,0 +1 @@
+@charset "UTF-8";@import url(https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,700,700i&subset=cyrillic,cyrillic-ext,latin-ext);body,h1,h2,h3,h4,h5,h6,html{font-family:"Open Sans",sans-serif}table td,table th{padding:5px 10px}dl dt,table th{font-weight:700}#about,#blog,#cover{height:100%;left:0}#about,#blog,#cover,#header{width:100%;top:0}#about,#sidebar{background:rgba(17,26,35,0)}.form-control:focus,.form-control:hover,hr{outline:0}#header,.post-header-cover{-webkit-backface-visibility:hidden;-webkit-perspective:1000}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local("Open Sans"),local("OpenSans"),url(https://fonts.gstatic.com/s/opensans/v10/cJZKeOuBrn4kERxqtaUH3SZ2oysoEQEeKwjgmXLRnTc.ttf) format("truetype")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;src:local("Open Sans Bold"),local("OpenSans-Bold"),url(https://fonts.gstatic.com/s/opensans/v10/k3k702ZOKiLJc3WVjuplzJS3E-kSBmtLoNJPDtbj2Pk.ttf) format("truetype")}html{font-size:10px;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;text-size-adjust:100%;-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent}body{width:100%;height:100%;margin:0;padding:0;background:#fff;font-size:1.6rem;line-height:1.9em;letter-spacing:.01em;-webkit-font-smoothing:subpixel-antialiased;font-smoothing:subpixel-antialiased}body.pushed{overflow-x:hidden}h1,h2,h3,h4,h5,h6{letter-spacing:-.04em;font-weight:700;line-height:1.45em;color:#4a4a4a}code,pre>code{font-family:Menlo,Consolas,monospace}h1,h2,h3{margin:1em 0}h4,h5,h6{margin:1em 0 .5em}h1{font-size:2.8rem}h2{font-size:2.4rem}h3{font-size:2rem}h4{font-size:1.8rem}h5{font-size:1.7rem}h6{font-size:1.6rem}p{margin:0 0 1.5em}dl,ol,ul{margin:0 0 .5em}a,a:active,a:hover,a:visited{cursor:pointer;color:#349ef3;text-decoration:none}.archive .archive-posts .archive-post .archive-post-title:hover,.archive .archive-title:hover,a:hover{text-decoration:underline}a:hover{color:#349ef3}table{width:100%;background:0 0;border-collapse:collapse;border-spacing:0;text-align:left}table th{border-bottom:2px solid #909ba2}table tr:nth-child(2n){background:#f7f8f8}hr{margin:1.5em 0 0;border:none;border-top:1px solid #eef2f8}dl dd{margin-left:0}pre>code{display:block;width:100%;box-sizing:border-box;padding:15px;border:none;margin:0;cursor:text;overflow-x:auto;line-height:2.7rem;font-size:1.4rem}#about,#bottom-bar{display:none;position:fixed}code{font-size:1.5rem;display:inline-block;font-weight:400;padding:0 10px}abbr,acronym{border-bottom:1px dotted #5d686f}blockquote{border-left:3px solid #5d686f;padding:0 15px;font-style:italic;margin:1.5em 0 0}blockquote cite:before{content:' — ';padding:0 .3em}blockquote>p:first-child{margin:0}@media only screen and (max-width:767px){code,h6{font-size:1.4rem}h1{font-size:2.6rem}h2{font-size:2.2rem}h3{font-size:1.8rem}h4{font-size:1.6rem}h5{font-size:1.5rem}}@media only screen and (min-width:768px) and (max-width:1023px){h1{font-size:2.65rem}h2{font-size:2.25rem}h3{font-size:1.85rem}h4{font-size:1.65rem}h5{font-size:1.55rem}h6{font-size:1.45rem}}.task-list{list-style-type:none}.task-list .task-list-item{margin:0 .2em .25em -1.6em;vertical-align:middle}#about{text-align:center;line-height:100%;overflow-y:auto;overflow-x:hidden;z-index:30}#sidebar,#sidebar .sidebar-container{overflow:auto}#about #about-card{position:relative;top:-1000px;display:block;background:#fff;max-width:400px;margin:15px auto;border-radius:3px;padding:30px 0;-webkit-box-shadow:0 0 5px rgba(0,0,0,.5);-moz-box-shadow:0 0 5px rgba(0,0,0,.5);box-shadow:0 0 5px rgba(0,0,0,.5)}#about #about-card #about-btn-close{position:absolute;top:15px;right:15px;color:#9eabb3;cursor:pointer}#about #about-card #about-btn-close:hover{color:#738691}#about #about-card #about-card-picture{margin-bottom:15px}#about #about-card #about-card-name{margin-top:0;margin-bottom:20px}#about #about-card #about-card-bio{padding:0 30px;margin:0 0 30px}#about #about-card #about-card-job,#about #about-card #about-card-location{display:inline-block;vertical-align:top}#about #about-card #about-card-bio,#about #about-card #about-card-job,#about #about-card #about-card-location{font-size:1.6rem;line-height:1.9em;font-weight:400;color:#5d686f}@media only screen and (max-width:767px){#about #about-card{width:90%}#about #about-card #about-card-job,#about #about-card #about-card-location{display:block;width:calc(100% - 60px);padding:0 30px}#about #about-card #about-card-picture{width:90px;height:90px;border-radius:45px}#about #about-card #about-card-job{margin-bottom:15px}#bottom-bar{width:calc(100% - 15px * 2);left:0}#bottom-bar[data-behavior="4"].pushed,#bottom-bar[data-behavior="5"].pushed,#bottom-bar[data-behavior="1"].pushed,#bottom-bar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="3"].pushed,#bottom-bar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:768px){#about #about-card{width:80%}#about #about-card #about-card-picture{width:110px;height:110px;border-radius:55px}#about #about-card #about-card-job,#about #about-card #about-card-location{display:inline-block;width:calc((100% / 2) - 48px)}#about #about-card #about-card-job{padding:0 15px 0 30px}#about #about-card #about-card-location{padding:0 30px 0 15px}}#blog{position:absolute}#bottom-bar{bottom:0;height:60px;background:#fff;margin:0;border-top:1px solid #eef2f8;padding:0 15px;z-index:40;transition:transform .25s ease-in-out;-webkit-transition:-webkit-transform .25s ease-in-out}#header,#main{background:#fff;transition:transform .25s ease-in-out}@media only screen and (min-width:768px) and (max-width:1023px){#bottom-bar[data-behavior="4"],#bottom-bar[data-behavior="5"],#bottom-bar[data-behavior="6"]{width:calc(100% - 15px * 2);left:0}#bottom-bar[data-behavior="3"],#bottom-bar[data-behavior="1"],#bottom-bar[data-behavior="2"]{width:calc(100% - 75px - 15px * 2);left:75px}#bottom-bar[data-behavior="3"].pushed,#bottom-bar[data-behavior="1"].pushed,#bottom-bar[data-behavior="2"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#bottom-bar[data-behavior="4"].pushed,#bottom-bar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1024px) and (max-width:1279px){#bottom-bar[data-behavior="4"],#bottom-bar[data-behavior="5"],#bottom-bar[data-behavior="6"]{width:calc(100% - 15px * 2);left:0}#bottom-bar[data-behavior="1"],#bottom-bar[data-behavior="2"]{width:calc(100% - 250px - 15px * 2);left:250px}#bottom-bar[data-behavior="1"].pushed,#bottom-bar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="3"]{width:calc(100% - 75px - 15px * 2);left:75px}#bottom-bar[data-behavior="3"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#bottom-bar[data-behavior="4"].pushed,#bottom-bar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1280px){#bottom-bar[data-behavior="4"],#bottom-bar[data-behavior="5"],#bottom-bar[data-behavior="6"]{width:calc(100% - 15px * 2);left:0}#bottom-bar[data-behavior="1"]{width:calc(100% - 500px - 15px * 2);left:500px}#bottom-bar[data-behavior="1"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#bottom-bar[data-behavior="2"]{width:calc(100% - 250px - 15px * 2);left:250px}#bottom-bar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="3"]{width:calc(100% - 75px - 15px * 2);left:75px}#bottom-bar[data-behavior="3"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#bottom-bar[data-behavior="4"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#bottom-bar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}#cover{position:fixed;background-repeat:no-repeat;background-size:cover;z-index:-1}#footer{color:#9eabb3;font-size:1.5rem;text-align:center;margin-top:70px;height:auto;padding:20px}#header{display:block;height:55px;position:fixed;border:1px solid #eef2f8;color:#88909a;z-index:20;-webkit-transition:-webkit-transform .25s ease-in-out}#header #btn-open-sidebar{position:absolute;top:20px;left:20px;cursor:pointer}#header .header-right-icon,#header .header-right-picture{position:absolute;top:12.5px;right:20px;color:#88909a}#header .header-right-picture{display:block;width:30px;height:30px}#header .header-right-picture .header-picture{display:block;width:30px;height:30px;border-radius:15px}#header .header-title{text-align:center;font-size:1.6rem;line-height:55px;margin:0}#header .header-title .header-title-link{color:#88909a;font-weight:400}#header .header-title .header-title-link:active,#header .header-title .header-title-link:hover{color:#6e7681;text-decoration:none}#header.header-up{-webkit-transform:translate3d(0,-55px,0);-moz-transform:translate3d(0,-55px,0);transform:translate3d(0,-55px,0)}#header[data-behavior="4"].pushed,#header[data-behavior="5"].pushed,#header[data-behavior="1"].pushed,#header[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#header[data-behavior="3"].pushed,#header[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}@media only screen and (min-width:768px){#header[data-behavior="3"],#header[data-behavior="1"],#header[data-behavior="2"]{display:none}}@media only screen and (min-width:1280px){#header[data-behavior="4"].pushed,#header[data-behavior="1"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#header[data-behavior="5"].pushed,#header[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}}@media print{#header{display:none}}#main{display:block;min-height:100%;-webkit-transition:-webkit-transform .25s ease-in-out}#sidebar,.post-header-cover{transition:transform .25s ease-in-out}#main.hasCover.hasCoverCaption,#main.hasCover.hasCoverMetaOut{padding-top:50px!important}#main.hasCover.hasCoverMetaIn,#main.hasCover.hasCoverMetaOut.hasCoverCaption{padding-top:0!important}@media only screen and (max-width:767px){#main{padding-top:70px;display:block;width:100%}#main[data-behavior="4"].pushed,#main[data-behavior="5"].pushed,#main[data-behavior="1"].pushed,#main[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#main[data-behavior="3"].pushed,#main[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:768px) and (max-width:1023px){#main[data-behavior="4"],#main[data-behavior="5"],#main[data-behavior="6"]{padding-top:70px;display:block;width:100%}#main[data-behavior="3"],#main[data-behavior="1"],#main[data-behavior="2"]{padding-top:15px;float:right;width:calc(100% - 75px)}#main[data-behavior="4"].pushed,#main[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#main[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1024px) and (max-width:1279px){#main[data-behavior="4"],#main[data-behavior="5"],#main[data-behavior="6"]{padding-top:70px;display:block;width:100%}#main[data-behavior="1"],#main[data-behavior="2"]{padding-top:15px;float:right;width:calc(100% - 250px)}#main[data-behavior="3"]{padding-top:15px;float:right;width:calc(100% - 75px)}#main[data-behavior="4"].pushed,#main[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#main[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1280px){#main[data-behavior="4"],#main[data-behavior="5"],#main[data-behavior="6"]{padding-top:70px;display:block;width:100%}#main[data-behavior="1"]{padding-top:15px;float:right;width:calc(100% - 500px)}#main[data-behavior="2"]{padding-top:15px;float:right;width:calc(100% - 250px)}#main[data-behavior="3"]{padding-top:15px;float:right;width:calc(100% - 75px)}#main[data-behavior="4"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#main[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#main[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}#sidebar{font-family:"Open Sans",sans-serif;height:100%;position:fixed;top:0;z-index:20;-webkit-transition:-webkit-transform .25s ease-in-out;-webkit-font-smoothing:antialiased;font-smoothing:antialiased}#sidebar .sidebar-profile{color:#ebebeb;text-align:center;padding-top:18px;margin-bottom:15px}#sidebar .sidebar-profile .sidebar-profile-picture{display:block;margin:0 auto}#sidebar .sidebar-profile .sidebar-profile-name{font-size:1.1em;color:#ebebeb}#sidebar ul.sidebar-buttons{padding:0;margin:0 0 20px}#sidebar ul.sidebar-buttons li.sidebar-button{display:block;width:100%;height:45px;line-height:45px}#sidebar ul.sidebar-buttons li.sidebar-button .sidebar-button-link{color:#ebebeb;display:block;height:100%}#sidebar ul.sidebar-buttons li.sidebar-button .sidebar-button-link:active,#sidebar ul.sidebar-buttons li.sidebar-button .sidebar-button-link:hover{text-decoration:none;color:#fff}#sidebar ul.sidebar-buttons:first-child{margin-top:5px}@media only screen and (max-width:767px){#sidebar[data-behavior="4"],#sidebar[data-behavior="5"],#sidebar[data-behavior="1"],#sidebar[data-behavior="2"]{left:-250px;width:250px}#sidebar[data-behavior="4"] .sidebar-profile,#sidebar[data-behavior="5"] .sidebar-profile,#sidebar[data-behavior="1"] .sidebar-profile,#sidebar[data-behavior="2"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="4"].pushed,#sidebar[data-behavior="5"].pushed,#sidebar[data-behavior="1"].pushed,#sidebar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="3"],#sidebar[data-behavior="6"]{left:-75px;width:75px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="3"].pushed,#sidebar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:768px) and (max-width:1023px){#sidebar[data-behavior="3"],#sidebar[data-behavior="1"],#sidebar[data-behavior="2"]{width:75px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="3"].pushed,#sidebar[data-behavior="1"].pushed,#sidebar[data-behavior="2"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#sidebar[data-behavior="4"],#sidebar[data-behavior="5"]{left:-250px;width:250px}#sidebar[data-behavior="4"] .sidebar-profile,#sidebar[data-behavior="5"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="4"].pushed,#sidebar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="6"]{left:-75px;width:75px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1024px) and (max-width:1279px){#sidebar[data-behavior="1"],#sidebar[data-behavior="2"]{width:250px}#sidebar[data-behavior="1"] .sidebar-profile,#sidebar[data-behavior="2"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="1"].pushed,#sidebar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="3"]{width:75px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="3"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#sidebar[data-behavior="4"],#sidebar[data-behavior="5"]{left:-250px;width:250px}#sidebar[data-behavior="4"] .sidebar-profile,#sidebar[data-behavior="5"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="4"].pushed,#sidebar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="6"]{left:-75px;width:75px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1280px){#sidebar[data-behavior="1"]{width:500px;display:-webkit-flex;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:flex;flex-direction:column;justify-content:center}#sidebar[data-behavior="1"] .sidebar-container{position:relative;padding:0 80px}#sidebar[data-behavior="1"] .sidebar-profile{padding-top:0;padding-bottom:7.5px}#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-bio,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-job,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-location{font-weight:400;font-size:1.6rem;color:#ebebeb}#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-job,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-location{margin-top:0;width:49%;display:inline-block}#sidebar[data-behavior="1"] ul.sidebar-buttons{width:49%;vertical-align:top;display:inline-block}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button{text-align:left;box-sizing:border-box}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-top:0;white-space:nowrap}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;float:left;text-align:center;width:30px;height:35px;line-height:35px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button:nth-child(odd){padding-right:20px}#sidebar[data-behavior="1"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#sidebar[data-behavior="2"]{width:250px}#sidebar[data-behavior="2"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="3"]{width:75px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="3"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#sidebar[data-behavior="4"]{left:-500px;width:500px;display:-webkit-flex;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:flex;flex-direction:column;justify-content:center}#sidebar[data-behavior="4"] .sidebar-container{position:relative;padding:0 80px}#sidebar[data-behavior="4"] .sidebar-profile{padding-top:0;padding-bottom:7.5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-bio,#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-job,#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-location{font-weight:400;font-size:1.6rem;color:#ebebeb}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-job,#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-location{margin-top:0;width:49%;display:inline-block}#sidebar[data-behavior="4"] ul.sidebar-buttons{width:49%;vertical-align:top;display:inline-block}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button{text-align:left;box-sizing:border-box}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-top:0;white-space:nowrap}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;float:left;text-align:center;width:30px;height:35px;line-height:35px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button:nth-child(odd){padding-right:20px}#sidebar[data-behavior="4"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#sidebar[data-behavior="5"]{left:-250px;width:250px}#sidebar[data-behavior="5"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="6"]{left:-75px;width:75px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="5"] .sidebar-profile-bio,#sidebar[data-behavior="3"] .sidebar-profile-bio,#sidebar[data-behavior="6"] .sidebar-profile-bio,#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="2"] .sidebar-profile-bio{display:none}#sidebar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}.codeblock,.codeblock .gutter,figure.highlight,figure.highlight .gutter{line-height:2.3rem;background:#f7f8f8}.codeblock .code,.codeblock .gutter,.post,figure.highlight .code,figure.highlight .gutter{vertical-align:top}@media only screen and (max-width:1279px){#sidebar .sidebar-profile-bio{display:none}}@media print{#sidebar{display:none}}.alert{position:relative;text-align:left;padding:10px 15px;min-height:30px;margin:1em 0 0;border:none;border-left:3px solid}.alert p{margin:1.5em 0 0}.alert p:first-child{margin:0}.alert:not(.no-icon){padding-left:55px}.btn,.btn--medium,.btn--small{padding:8px 15px}.alert:not(.no-icon):before{position:absolute;top:10px;left:15px;font-family:FontAwesome;font-size:2.5rem}.alert.info{border-color:#349ef3;background-color:#e6f3fe}.alert.info:not(.no-icon):before{content:"\f05a";color:#349ef3}.alert.success{border-color:#4dc657;background-color:#effaf0;content:"\f058"}.alert.success:not(.no-icon):before{content:"\f058";color:#4dc657}.alert.warning{border-color:#f5aa0a;background-color:#fdf1d8}.alert.warning:not(.no-icon):before{content:"\f071";color:#f5aa0a}.alert.danger{border-color:#f5311d;background-color:#feecea}.alert.danger:not(.no-icon):before{content:"\f05e";color:#f5311d}.archive-result{display:none}.archive .archive-title{color:#5d686f}.archive .archive-posts{list-style:none}.archive .archive-posts .archive-post .archive-post-title{margin-left:10px;color:#5d686f}.archive .archive-posts .archive-post .archive-post-date{color:#9eabb3}.archive .archive-posts .archive-post::before{font-family:FontAwesome;content:'\f0da';font-size:1.3rem}.boxes,.boxes .box:nth-child(n+2){margin-top:20px}.box{border-bottom:1px solid #eef2f8}.btn{width:auto;height:auto;background:#fff;border-radius:3px;margin:0;letter-spacing:.01em;font-size:1.6rem;cursor:pointer}.btn:active,.btn:focus,.btn:hover{text-decoration:none}.btn--disabled,.btn--disabled:hover{color:#bbc4c9!important;border:1px solid #bbc4c9;cursor:not-allowed;text-decoration:none}.btn--default{color:#9eabb3!important;border:1px solid #9eabb3}.btn--default:hover{color:#738691!important;border:1px solid #738691}.btn--success{color:#4dc657!important;border:1px solid #4dc657}.btn--success:hover{color:#309639!important;border:1px solid #309639}.btn--primary{color:#349ef3!important;border:1px solid #349ef3}.btn--primary:hover{color:#0c78ce!important;border:1px solid #0c78ce}.btn--danger{color:#f5311d!important;border:1px solid #f5311d}.btn--danger:hover{color:#bd1908!important;border:1px solid #bd1908}.btn--medium{font-size:1.5rem}.btn--small{font-size:1.3rem}.caption{display:block;font-family:Merriweather,serif;font-size:1.3rem;color:#81929d;text-align:center;font-style:italic;padding-right:10px;padding-left:10px}.codeblock,figure.highlight{margin:10px 0;line-height:2.3rem;padding-top:15px;padding-bottom:15px;overflow:hidden}.codeblock table,figure.highlight table{display:block;width:100%}.codeblock .code,.codeblock .gutter,.codeblock .tag,.codeblock pre,figure.highlight .code,figure.highlight .gutter,figure.highlight .tag,figure.highlight pre{background-color:inherit;font-family:Menlo,Consolas,monospace;border:none;padding:0;margin:0;cursor:text}.codeblock.plain .gutter,figure.highlight.plain .gutter{display:none}.codeblock figcaption,figure.highlight figcaption{font-size:1.3rem;padding:0 15px 20px;margin:0}.codeblock figcaption a,figure.highlight figcaption a{float:right}.codeblock .gutter,figure.highlight .gutter{border-right:1px solid;padding:.3em 15px;line-height:2.3rem;font-size:1.4rem}.codeblock .gutter pre,figure.highlight .gutter pre{color:#aaa}.codeblock .code,figure.highlight .code{padding:.3em 15px .3em 1em;width:100%}.codeblock .code pre,figure.highlight .code pre{line-height:2.3rem;font-size:1.4rem;max-width:calc(750px - 50px);overflow-x:auto;overflow-y:hidden}.codeblock .line,figure.highlight .line{height:2.3rem;font-size:1.4rem}.codeblock--tabbed figure.highlight,.codeblock--tabbed pre>code{margin-bottom:0;padding-bottom:0}.codeblock--tabbed figcaption a,.codeblock--tabbed figcaption span{float:left!important}.codeblock--tabbed figcaption .tabs{float:right}.codeblock--tabbed figcaption .tabs .tab{cursor:pointer;display:inline-block;margin:0 5px;padding:0 7px}.codeblock--tabbed figcaption .tabs .tab:last-child{margin-right:0}.gist .line,.gist .line-number{font-family:Menlo,Consolas,monospace;font-size:1em;margin:0 0 5px}.figure.center,.figure.center .fig-img{margin:2px auto}.figure.clear{clear:both}.figure.center{width:calc(100% - 4px)}.figure.fig-20,.figure.fig-25,.figure.fig-33,.figure.fig-50,.figure.fig-75,.figure.left{float:left;margin:2px}.figure.right{float:right;margin:2px}.figure.fig-20{width:calc(20% - 4px)}.figure.fig-25{width:calc(25% - 4px)}.figure.fig-33{width:calc(33.3% - 4px)}.figure.fig-50{width:calc(50% - 4px)}.figure.fig-75{width:calc(75% - 4px)}.figure.fig-100{width:calc(100% - 4px);margin:2px}.figure.figure--fullWidth{width:100%}.figure.figure--fullWidth .figure-img{margin:0 auto}@media only screen and (max-width:767px){.fig-20 .caption,.fig-25 .caption,.fig-33 .caption{display:none}}.form-control{background:0 0;width:100%;border:none;outline:0;color:#5d686f;font-weight:300}.input--large{height:auto;padding:10px 0;font-size:18px;line-height:21px}.input--xlarge{height:auto;padding:10px 0;font-size:25px;line-height:30px}.hide{display:none}@media only screen and (max-width:479px){.hide-xs{display:none}}@media only screen and (min-width:480px) and (max-width:767px){.hide-sm{display:none}}@media only screen and (min-width:768px) and (max-width:1023px){.hide-md{display:none}}@media only screen and (min-width:1024px){.hide-lg{display:none}}.highlight-text{display:inline;padding:3px}.highlight-text.red{background-color:#ffe6e6}.highlight-text.green{background-color:#cdffcd}.highlight-text.blue{background-color:#e6e6ff}.highlight-text.purple{background-color:#ffe6ff}.highlight-text.orange{background-color:#ffedcc}.highlight-text.yellow{background-color:#ffc}.highlight-text.cyan{background-color:#cff}.highlight-text.primary{background-color:#ddeffd}.highlight-text.success{background-color:#d4f1d7}.highlight-text.warning{background-color:#fdeece}.highlight-text.danger{background-color:#fee3e0}.icon-mt{margin-top:10px}.icon-mr{margin-right:10px}.icon-mb{margin-bottom:10px}.icon-ml{margin-left:10px}.image-gallery{display:block;position:relative;height:auto;overflow:hidden;margin-bottom:30px}.modal,.modal-container{height:100%;box-sizing:border-box}.image-gallery .image-gallery-metabar{position:absolute;bottom:0;width:calc(100% - (1.5em) * 2);font-family:"Open Sans";font-style:italic;background:rgba(0,0,0,.75);font-size:1.3rem;color:#fff;padding:.5em 1.5em;z-index:1}.image-gallery .image-gallery-photos .photo-box{float:left;position:relative;overflow:hidden;display:none}.image-gallery .image-gallery-photos .photo-box:first-child{display:block;width:100%;padding-bottom:56.25%}.image-gallery .image-gallery-photos .photo-box .photo-box-inner{position:absolute;overflow:hidden}.image-gallery .image-gallery-photos .photo-box .photo-box-inner .photo{width:100%;cursor:-webkit-zoom-in;cursor:-moz-zoom-in}.image-gallery .image-gallery-photos--thumbnail .photo-box{display:block;width:50%;padding-bottom:30%}.image-gallery .image-gallery-photos--thumbnail .photo-box:first-child{width:100%;padding-bottom:40%;margin-bottom:2px}.image-gallery .image-gallery-photos--thumbnail .photo-box:nth-child(2){margin-right:2px;width:calc(50% - 2px)}.media-body,.modal,.overlay,.pagination-bar{width:100%}.image-gallery .image-gallery-photos--thumbnail .photo-box:nth-child(n+4){display:none}a.link-unstyled,a.link-unstyled:active,a.link-unstyled:hover{cursor:pointer!important;color:inherit!important;text-decoration:none!important}a.link-unstyled a.link,a.link-unstyled a.link:active,a.link-unstyled a.link:hover{text-decoration:underline!important}.post .post-header .post-title:hover,.post-header .post-title:hover,.post-header-cover .post-header .post-title:hover,.postShorten .postShorten-header .postShorten-title:hover,.tag--danger:hover,.tag--primary:hover,.tag--success:hover,a.tag--danger:hover,a.tag--primary:hover,a.tag--success:hover{text-decoration:none}a.fancybox{cursor:zoom-in!important}.main-content-wrap{display:block;max-width:750px;margin:0 auto;padding-right:20px;padding-left:20px}@media only screen and (min-width:1024px){.markdown h1{font-size:3rem}.markdown h2{font-size:2.7rem}.markdown h3{font-size:2.4rem}.markdown h4{font-size:2.1rem}.markdown h5{font-size:1.9rem}.markdown h6{font-size:1.7rem}}@media only screen and (max-width:767px){.markdown h1{font-size:2.65rem}.markdown h2{font-size:2.35rem}.markdown h3{font-size:2.05rem}.markdown h4{font-size:1.75rem}.markdown h5{font-size:1.55rem}.markdown h6{font-size:1.35rem}}@media only screen and (min-width:768px) and (max-width:1023px){.markdown h1{font-size:2.8rem}.markdown h2{font-size:2.5rem}.markdown h3{font-size:2.2rem}.markdown h4{font-size:1.9rem}.markdown h5{font-size:1.7rem}.markdown h6{font-size:1.5rem}}.media-body,.media-left{display:table-cell;vertical-align:top}.media-left{float:left;padding-right:15px}.media-heading{margin:0 0 -5px}.media-meta{color:#9eabb3}.media-content{color:#5d686f}.modal-container{position:fixed;top:0;left:0;width:100%;z-index:1010}.modal,.modal-body,.modal-header{position:relative}.modal{max-width:750px;margin:0 auto;padding:0;overflow:hidden}.modal-header{padding:10px 15px 0;background:#fff;border-bottom:1px solid #eef2f8}.modal-body,.modal-footer{padding:0 15px;background:#fff}.modal-body{overflow-y:auto}.modal-footer{height:50px;border-top:1px solid #eef2f8}.modal .close-button{position:absolute;top:9px;right:15px;color:#5d686f;cursor:pointer}.overlay{display:none;background:rgba(0,0,0,.5);height:100%;position:fixed;top:0;left:0;z-index:1009;overflow:hidden}@media only screen and (min-width:768px){.modal-container{padding:50px 0;left:50%;transform:translateX(-50%)}.modal{border-radius:5px}}.pagination-bar{height:60px}.pagination-bar .pagination{position:relative;height:60px;line-height:60px;display:block;list-style:none;padding:0 10px;width:auto}.pagination-bar .pagination .pagination-next,.pagination-bar .pagination .pagination-prev{float:left;margin-right:10px}.pagination-bar .pagination .pagination-number{float:right;font-size:1.3rem;color:#9eabb3}.post{position:relative;width:100%;display:inline-block}.post .post-header .post-title{margin:0;word-break:initial;overflow:hidden}.post .post-meta{line-height:1.5em;font-family:"Open Sans",sans-serif;font-size:1.3rem;font-weight:400;color:#9eabb3}.post .post-meta a{color:#9eabb3}.post .post-content{text-rendering:optimizelegibility;letter-spacing:-.3px;font-family:Merriweather,serif;color:#5d686f;margin-top:20px;font-weight:400;overflow:hidden;-webkit-hypens:auto;-moz-hypens:auto;hypens:auto}.post .post-content img{display:block;width:auto;max-width:100%}.post .post-content :not(blockquote):not(.alert)>p{margin:1.5em 0 0}.post .post-footer{margin-top:20px}.post .post-footer-tags{padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #eef2f8}@media only screen and (min-width:768px) and (max-width:1023px){.post .post-header .post-title{font-size:3.3rem}}@media only screen and (min-width:1024px){.post .post-header .post-title{font-size:3.7rem}}@media only screen and (min-width:768px){.post-content{font-size:1.7rem}}.post-actions-wrap{height:60px;padding:0;line-height:60px;clear:both}.post-actions-wrap ul.post-actions{float:left;padding-left:0;margin-top:0;list-style:none}.post-actions-wrap ul.post-actions li.post-action{width:auto;text-align:center}.post-actions-wrap ul.post-action-nav{width:35%;z-index:42}.post-actions-wrap ul.post-action-nav li.post-action{float:left;min-width:42px}.post-actions-wrap ul.post-action-nav li.post-action:last-child .post-action-btn{margin-left:15px}.post-actions-wrap ul.post-action-share{width:65%;z-index:41}.post-actions-wrap ul.post-action-share li.post-action{float:right}.post-actions-wrap ul.post-action-share li.post-action:nth-child(n+3) .post-action-btn{margin-right:15px}@media only screen and (max-width:767px){.post-actions-wrap ul.post-action-nav{width:25%}.post-actions-wrap ul.post-action-share{width:75%}}@media only screen and (max-width:479px){.post-actions-wrap ul.post-action-nav{width:35%}.post-actions-wrap ul.post-action-share{width:65%}}@media print{.post-actions-wrap{display:none}}.pullquote{text-align:left;font-style:italic;margin:1.5em 0 0}.pullquote.figure.fig-20,.pullquote.figure.fig-25,.pullquote.figure.fig-33,.pullquote.figure.fig-50,.pullquote.figure.fig-75,.pullquote.left{width:45%;float:left;margin:1.5em 35px 1.5em 0}.pullquote.right{width:45%;float:right;margin:1.5em 0 1.5em 35px}.pullquote.blur{background-color:#eef0f1}.post-header .post-title{margin:0;word-break:initial;overflow:hidden}.post-header-cover{display:table;position:relative;top:0;left:0;background-size:cover;background-position:center;background-repeat:no-repeat;width:100%;padding:calc(55px + 30px) 0 30px;height:100%;z-index:15;-webkit-transition:-webkit-transform .25s ease-in-out}.post-header-cover .post-header{display:table-cell;vertical-align:middle}.post-header-cover .post-header .post-title{max-width:750px;margin:0 auto 20px;color:#fff;text-shadow:0 2px 0 rgba(0,0,0,.9)}.post-header-cover .post-header .post-meta{max-width:750px;font-family:"Open Sans",sans-serif;font-size:1.6rem;color:#fff!important;font-weight:400;letter-spacing:.05em;text-shadow:0 1px 0 rgba(0,0,0,.9);margin:0 auto}.post-header-cover .post-header .post-meta a{color:#fff}.post-header-cover.post-header-cover--partial{height:60%}.post-header-cover-caption{margin:5px 0 50px}@media only screen and (max-width:479px){.post-header-cover .post-header .post-title{font-size:2.8rem}}@media only screen and (min-width:480px) and (max-width:767px){.post-header-cover .post-header .post-title{font-size:3.3rem}}@media only screen and (max-width:767px){.post-header-cover{width:100%;left:0}.post-header-cover[data-behavior="4"].pushed,.post-header-cover[data-behavior="5"].pushed,.post-header-cover[data-behavior="1"].pushed,.post-header-cover[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}.post-header-cover[data-behavior="3"].pushed,.post-header-cover[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:768px) and (max-width:1023px){.post-header-cover .post-header .post-title{font-size:5.8rem;line-height:1.3em}.post-header-cover[data-behavior="3"],.post-header-cover[data-behavior="1"],.post-header-cover[data-behavior="2"]{width:calc(100% - 75px);left:75px}.post-header-cover[data-behavior="4"],.post-header-cover[data-behavior="5"],.post-header-cover[data-behavior="6"]{width:100%;left:0}.post-header-cover[data-behavior="4"].pushed,.post-header-cover[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}.post-header-cover[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1024px) and (max-width:1279px){.post-header-cover .post-header .post-title{font-size:6.5rem;line-height:1.3em}.post-header-cover[data-behavior="1"],.post-header-cover[data-behavior="2"]{width:calc(100% - 250px);left:250px}.post-header-cover[data-behavior="3"]{width:calc(100% - 75px);left:75px}.post-header-cover[data-behavior="4"],.post-header-cover[data-behavior="5"],.post-header-cover[data-behavior="6"]{width:100%;left:0}.post-header-cover[data-behavior="4"].pushed,.post-header-cover[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}.post-header-cover[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1280px){.post-header-cover .post-header .post-title{font-size:6.5rem;line-height:1.3em}.post-header-cover[data-behavior="1"]{width:calc(100% - 500px);left:500px}.post-header-cover[data-behavior="2"]{width:calc(100% - 250px);left:250px}.post-header-cover[data-behavior="3"]{width:calc(100% - 75px);left:75px}.post-header-cover[data-behavior="4"],.post-header-cover[data-behavior="5"],.post-header-cover[data-behavior="6"]{width:100%;left:0}.post-header-cover[data-behavior="4"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}.post-header-cover[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}.post-header-cover[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}.postShorten-group .postShorten{margin-top:15px;border-bottom:1px solid #eef2f8}.postShorten{position:relative;width:100%;display:inline-block;vertical-align:top}.postShorten .postShorten-thumbnailimg{overflow:hidden}.postShorten .postShorten-header .postShorten-title{margin:0;word-break:initial;overflow:hidden}.postShorten .postShorten-meta{line-height:1.5em}.postShorten .postShorten-meta,.postShorten .postShorten-meta a,.postShorten .postShorten-readingtime{color:#9eabb3}.postShorten .postShorten-excerpt_link{margin-top:-15px}.postShorten .postShorten-excerpt_link,.postShorten .postShorten-meta,.postShorten .postShorten-readingtime{font-family:"Open Sans",sans-serif;font-size:1.3rem;font-weight:400}.postShorten .postShorten-content,.postShorten .postShorten-excerpt{text-rendering:optimizelegibility;letter-spacing:-.3px;font-family:Merriweather,serif;color:#5d686f;font-weight:400;overflow:hidden;-webkit-hypens:auto;-moz-hypens:auto;hypens:auto}.postShorten .postShorten-content img,.postShorten .postShorten-excerpt img{display:block;width:auto;max-width:100%}.postShorten .postShorten-excerpt{margin-top:15px}.postShorten .postShorten-excerpt p:nth-child(1){margin:0}.postShorten .postShorten-content{margin-top:25px}@media only screen and (max-width:479px){.postShorten .postShorten-thumbnailimg,.postShorten .postShorten-thumbnailimg img{display:none}}@media only screen and (min-width:480px){.postShorten.postShorten--thumbnailimg-right .postShorten-thumbnailimg{float:right;margin:5px 0 30px 15px}.postShorten.postShorten--thumbnailimg-right .postShorten-thumbnailimg img{display:block;width:140px;height:140px;object-fit:cover;overflow:hidden}.postShorten.postShorten--thumbnailimg-right .postShorten-wrap{float:left;width:calc(100% - 140px - 20px)}.postShorten.postShorten--thumbnailimg-left .postShorten-thumbnailimg{float:left;margin:5px 15px 30px 0}.postShorten.postShorten--thumbnailimg-left .postShorten-thumbnailimg img{display:block;width:140px;height:140px;object-fit:cover;overflow:hidden}.postShorten.postShorten--thumbnailimg-left .postShorten-wrap{float:right;width:calc(100% - 140px - 20px)}.postShorten.postShorten--thumbnailimg-top .postShorten-thumbnailimg{margin-top:5px}.postShorten.postShorten--thumbnailimg-bottom .postShorten-wrap{display:block;width:100%}.postShorten.postShorten--thumbnailimg-bottom .postShorten-excerpt>p{margin-bottom:0}.postShorten.postShorten--thumbnailimg-bottom .postShorten-thumbnailimg{display:block;width:100%;overflow:hidden;margin:15px 0}.postShorten.postShorten--thumbnailimg-bottom .postShorten-thumbnailimg img{width:auto;height:auto}}.share-options-bar{position:fixed;bottom:-100%;background:#fff;height:100%;clear:both;border-top:1px solid #eef2f8;transition:transform .25s ease-in-out;z-index:50;-webkit-transition:-webkit-transform .25s ease-in-out;display:-webkit-flex;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:flex;flex-direction:column;justify-content:center;align-items:center}.share-options-bar.opened{-webkit-transform:translate3d(0,-100%,0);-moz-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.share-options-bar .share-options{padding:0;margin:0;list-style:none}.share-options-bar .share-options .share-option:first-child .share-option-btn{padding:20px 0 10px}.share-options-bar .share-options .share-option:last-child .share-option-btn{padding:10px 0 20px}.share-options-bar .share-options .share-option .share-option-btn{color:#6e7681;display:block;width:100%;padding:10px 0}.share-options-bar .share-options .share-option .share-option-btn .fa{margin-right:15px}#btn-close-shareoptions{position:absolute;top:15px;right:15px;font-size:20px;color:#5d686f;cursor:pointer}@media only screen and (max-width:767px){.share-options-bar{width:100%}}@media only screen and (min-width:768px) and (max-width:1023px){.share-options-bar[data-behavior="3"],.share-options-bar[data-behavior="1"],.share-options-bar[data-behavior="2"]{width:calc(100% - 75px);left:75px}.share-options-bar[data-behavior="4"],.share-options-bar[data-behavior="5"],.share-options-bar[data-behavior="6"]{width:100%}}@media only screen and (min-width:1024px){.share-options-bar[data-behavior="1"],.share-options-bar[data-behavior="2"]{width:calc(100% - 250px);left:250px}.share-options-bar[data-behavior="3"]{width:calc(100% - 75px);left:75px}.share-options-bar[data-behavior="4"],.share-options-bar[data-behavior="5"],.share-options-bar[data-behavior="6"]{width:100%}}@media print{.share-options-bar{display:none}}.tag,a.tag{display:inline-block;background:#fff;width:auto;height:auto;border-radius:3px;letter-spacing:.01em;cursor:pointer;margin:0 4px 7px 0}.tag--default,a.tag--default{color:#9eabb3!important;border:1px solid #9eabb3;font-size:1.3rem;padding:4.5px 15px}.tag--default:hover,a.tag--default:hover{color:#738691!important;border:1px solid #738691;text-decoration:none}.tag--success,a.tag--success{color:#4dc657!important;border:1px solid #4dc657}.tag--success:hover,a.tag--success:hover{color:#309639!important;border:1px solid #309639}.tag--primary,a.tag--primary{color:#349ef3!important;border:1px solid #349ef3}.tag--primary:hover,a.tag--primary:hover{color:#0c78ce!important;border:1px solid #0c78ce}.tag--danger,a.tag--danger{color:#f5311d!important;border:1px solid #f5311d}.tag--danger:hover,a.tag--danger:hover{color:#bd1908!important;border:1px solid #bd1908}.tag--small,a.tag--small{font-size:1.3rem;padding:2px 10px}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-xsmall{font-size:1rem!important}.text-small{font-size:1.3rem!important}.text-medium{font-size:1.5rem!important}.text-base{font-size:1.6rem!important}.text-large{font-size:1.7rem!important}.text-xlarge{font-size:1.8rem!important}.text-strong{font-weight:700!important}.text-regular{font-weight:400!important}.text-light{font-weight:300!important}.text-italic{font-style:italic!important}.text-underline,.text-underline-hover:hover{text-decoration:underline!important}.text-color-base{color:#5d686f!important}.text-color-light{color:#9eabb3!important}.text-color-link{color:#349ef3!important}.font-merryweather{font-family:Merriweather,serif}.tooltip,[data-tooltip]{position:relative;cursor:pointer}.tooltip:before,[data-tooltip]:before{z-index:1000;border:6px solid transparent;background:0 0;content:""}.tooltip:after,[data-tooltip]:after{z-index:1000;padding:8px;min-width:180px;background-color:rgba(0,0,20,.93);color:#fff;content:attr(data-tooltip);font-size:.93em;line-height:1.9em;border-radius:5px}.tooltip:after,.tooltip:before,[data-tooltip]:after,[data-tooltip]:before{position:absolute;visibility:hidden;opacity:0;filter:alpha(opacity=0);-webkit-transition:opacity .2s ease-in-out,visibility .2s ease-in-out,-webkit-transform .2s cubic-bezier(.71,1.7,.77,1.24);-moz-transition:opacity .2s ease-in-out,visibility .2s ease-in-out,-moz-transform .2s cubic-bezier(.71,1.7,.77,1.24);transition:opacity .2s ease-in-out,visibility .2s ease-in-out,transform .2s cubic-bezier(.71,1.7,.77,1.24);-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);pointer-events:none}.tooltip:focus:after,.tooltip:focus:before,.tooltip:hover:after,.tooltip:hover:before,[data-tooltip]:focus:after,[data-tooltip]:focus:before,[data-tooltip]:hover:after,[data-tooltip]:hover:before{visibility:visible;opacity:1;filter:alpha(opacity=100)}.tooltip--top:before,.tooltip:before,[data-tooltip]:before{margin-bottom:-12px;border-top-color:rgba(0,0,20,.93)}.tooltip--top:after,.tooltip:after,[data-tooltip]:after{margin-left:-91px}.tooltip--top:after,.tooltip--top:before,.tooltip:after,.tooltip:before,[data-tooltip]:after,[data-tooltip]:before{bottom:100%;left:calc(50% - (15px / 2))}.tooltip--top:focus:after,.tooltip--top:focus:before,.tooltip--top:hover:after,.tooltip--top:hover:before,.tooltip:focus:after,.tooltip:focus:before,.tooltip:hover:after,.tooltip:hover:before,[data-tooltip]:focus:after,[data-tooltip]:focus:before,[data-tooltip]:hover:after,[data-tooltip]:hover:before{-webkit-transform:translateY(-12px);-moz-transform:translateY(-12px);-ms-transform:translateY(-12px);-o-transform:translateY(-12px);transform:translateY(-12px)}.tooltip--left:before{margin-left:0;margin-right:-12px;margin-bottom:0;border-top-color:transparent;border-left-color:rgba(0,0,20,.93)}.tooltip--left:after{margin-left:0;margin-bottom:-15px}.tooltip--left:after,.tooltip--left:before{right:100%;bottom:calc(50% - (15px / 2));left:auto}.tooltip--left:focus:after,.tooltip--left:focus:before,.tooltip--left:hover:after,.tooltip--left:hover:before{-webkit-transform:translateX(-12px);-moz-transform:translateX(-12px);-ms-transform:translateX(-12px);-o-transform:translateX(-12px);transform:translateX(-12px)}.tooltip--bottom:before{margin-top:-12px;margin-bottom:0;border-top-color:transparent;border-bottom-color:rgba(0,0,20,.93)}.tooltip--bottom:after,.tooltip--bottom:before{top:100%;bottom:auto;left:calc(50% - (15px / 2))}.tooltip--bottom:focus:after,.tooltip--bottom:focus:before,.tooltip--bottom:hover:after,.tooltip--bottom:hover:before{-webkit-transform:translateY(12px);-moz-transform:translateY(12px);-ms-transform:translateY(12px);-o-transform:translateY(12px);transform:translateY(12px)}.tooltip--right:before{margin-bottom:0;margin-left:-12px;border-top-color:transparent;border-right-color:rgba(0,0,20,.93)}.tooltip--right:after{margin-left:0;margin-bottom:-15px}.tooltip--right:after,.tooltip--right:before{bottom:calc(50% - (15px / 2));left:100%;right:auto}.tooltip--right:focus:after,.tooltip--right:focus:before,.tooltip--right:hover:after,.tooltip--right:hover:before{-webkit-transform:translateX(12px);-moz-transform:translateX(12px);-ms-transform:translateX(12px);-o-transform:translateX(12px);transform:translateX(12px)}.video-container{position:relative;height:0;overflow:hidden;padding-bottom:56.25%;margin:0 0 1.75em}.video-container embed,.video-container iframe,.video-container object{position:absolute;top:0;left:0;width:100%;height:100%;margin-top:0}#algolia-search-modal{display:none}#algolia-search-modal .search-icon{position:absolute;top:15px;left:15px;color:#5d686f}#algolia-search-modal .media-content{font-size:.95em}#algolia-search-modal .search-input{box-sizing:border-box;padding:0 130px 0 25px;margin:0}#algolia-search-modal .modal-header{padding-bottom:8px}#algolia-search-modal .modal-body{padding-top:15px;height:calc(100% - 100px - 15px)}#algolia-search-modal .searchby-algolia-logo,#algolia-search-modal .searchby-algolia-text{display:inline-block;vertical-align:top;height:20px}#algolia-search-modal .media:nth-child(n+2){padding-top:15px}#algolia-search-modal hr{margin-top:0}#algolia-search-modal .results-count{line-height:50px;color:#5d686f}#algolia-search-modal .searchby-algolia{position:absolute;top:15px;right:45px}#algolia-search-modal .searchby-algolia-text{line-height:20px}#algolia-search-modal .no-result{display:none;position:relative;top:50%;transform:translateY(-50%)}pre>code{background:#f7f8f8;color:#333}pre>code.codeblock{overflow-x:auto}code{background-color:#f7f8f8}.codeblock--tabbed figcaption .tab.active{background:#349ef3;color:#fff}.codeblock,figure.highlight{color:#333}.codeblock figcaption,figure.highlight figcaption{background:#f7f8f8;color:#999}.codeblock .gutter,figure.highlight .gutter{border-right-color:#e6e6e6}.codeblock .gutter .line,figure.highlight .gutter .line{color:#aaa}.codeblock .comment,figure.highlight .comment{color:#969896}.codeblock .string,figure.highlight .string{color:#183691}.codeblock .keyword,figure.highlight .keyword{color:#a71d5d}.codeblock.apacheconf .code .attribute,.codeblock.apacheconf .code .cbracket,.codeblock.apacheconf .code .common,.codeblock.apacheconf .code .keyword,.codeblock.apacheconf .code .nomarkup,.codeblock.apacheconf .code .variable,figure.highlight.apacheconf .code .attribute,figure.highlight.apacheconf .code .cbracket,figure.highlight.apacheconf .code .common,figure.highlight.apacheconf .code .keyword,figure.highlight.apacheconf .code .nomarkup,figure.highlight.apacheconf .code .variable{color:#0086b3}.codeblock.apacheconf .code .sqbracket,figure.highlight.apacheconf .code .sqbracket{color:#df5000}.codeblock.apacheconf .code .section,.codeblock.apacheconf .code .tag,figure.highlight.apacheconf .code .section,figure.highlight.apacheconf .code .tag{color:#63a35c}.codeblock.bash .code .shebang,figure.highlight.bash .code .shebang{color:#969896}.codeblock.bash .code .built_in,.codeblock.bash .code .literal,figure.highlight.bash .code .built_in,figure.highlight.bash .code .literal{color:#0086b3}.codeblock.bash .code .variable,figure.highlight.bash .code .variable{color:#333}.codeblock.bash .code .title,.codeblock.coffeescript .code .title,figure.highlight.bash .code .title,figure.highlight.coffeescript .code .title{color:#795da3}.codeblock.coffeescript .code .built_in,.codeblock.coffeescript .code .literal,.codeblock.coffeescript .code .number,figure.highlight.coffeescript .code .built_in,figure.highlight.coffeescript .code .literal,figure.highlight.coffeescript .code .number{color:#0086b3}.codeblock.coffeescript .code .attribute,.codeblock.coffeescript .code .reserved,figure.highlight.coffeescript .code .attribute,figure.highlight.coffeescript .code .reserved{color:#1d3e81}.codeblock.c .code .preprocessor,.codeblock.coffeescript .code .attribute,.codeblock.coffeescript .code .regexp,.codeblock.coffeescript .code .subst,.codeblock.cpp .code .preprocessor,figure.highlight.c .code .preprocessor,figure.highlight.coffeescript .code .attribute,figure.highlight.coffeescript .code .regexp,figure.highlight.coffeescript .code .subst,figure.highlight.cpp .code .preprocessor{color:#df5000}.codeblock.c .code .meta-keyword,.codeblock.cpp .code .meta-keyword,figure.highlight.c .code .meta-keyword,figure.highlight.cpp .code .meta-keyword{color:#a71d5d}.codeblock.c .code .title,.codeblock.cpp .code .title,figure.highlight.c .code .title,figure.highlight.cpp .code .title{color:#795da3}.codeblock.c .code .built_in,.codeblock.c .code .number,.codeblock.cpp .code .built_in,.codeblock.cpp .code .number,figure.highlight.c .code .built_in,figure.highlight.c .code .number,figure.highlight.cpp .code .built_in,figure.highlight.cpp .code .number{color:#0086b3}.codeblock.cs .code .preprocessor,.codeblock.cs .code .preprocessor .keyword,figure.highlight.cs .code .preprocessor,figure.highlight.cs .code .preprocessor .keyword{color:#333}.codeblock.cs .code .title,figure.highlight.cs .code .title{color:#795da3}.codeblock.cs .code .built_in,.codeblock.cs .code .number,figure.highlight.cs .code .built_in,figure.highlight.cs .code .number{color:#0086b3}.codeblock.cs .code .doctag,.codeblock.cs .code .xmlDocTag,figure.highlight.cs .code .doctag,figure.highlight.cs .code .xmlDocTag{color:#63a35c}.codeblock.css .code .at_rule,.codeblock.css .code .important,.codeblock.css .code .meta,figure.highlight.css .code .at_rule,figure.highlight.css .code .important,figure.highlight.css .code .meta{color:#a71d5d}.codeblock.css .code .attribute,.codeblock.css .code .function,.codeblock.css .code .hexcolor,.codeblock.css .code .number,figure.highlight.css .code .attribute,figure.highlight.css .code .function,figure.highlight.css .code .hexcolor,figure.highlight.css .code .number{color:#0086b3}.codeblock.css .code .attr_selector,.codeblock.css .code .value,figure.highlight.css .code .attr_selector,figure.highlight.css .code .value{color:#333}.codeblock.css .code .class,.codeblock.css .code .id,.codeblock.css .code .pseudo,.codeblock.css .code .selector-pseudo,figure.highlight.css .code .class,figure.highlight.css .code .id,figure.highlight.css .code .pseudo,figure.highlight.css .code .selector-pseudo{color:#795da3}.codeblock.css .code .selector-tag,.codeblock.css .code .tag,figure.highlight.css .code .selector-tag,figure.highlight.css .code .tag{color:#63a35c}.codeblock.diff .code .chunk,.codeblock.diff .code .meta,figure.highlight.diff .code .chunk,figure.highlight.diff .code .meta{color:#795da3;font-weight:700}.codeblock.diff .code .addition,figure.highlight.diff .code .addition{color:#55a532;background-color:#eaffea}.codeblock.diff .code .deletion,figure.highlight.diff .code .deletion{color:#bd2c00;background-color:#ffecec}.codeblock.http .code .attr,.codeblock.http .code .attribute,figure.highlight.http .code .attr,figure.highlight.http .code .attribute{color:#183691}.codeblock.http .code .literal,figure.highlight.http .code .literal{color:#0086b3}.codeblock.http .code .request,figure.highlight.http .code .request{color:#a71d5d}.codeblock.ini .code .section,.codeblock.ini .code .title,figure.highlight.ini .code .section,figure.highlight.ini .code .title{color:#795da3}.codeblock.ini .code .attr,.codeblock.ini .code .setting,figure.highlight.ini .code .attr,figure.highlight.ini .code .setting{color:#a71d5d}.codeblock.ini .code .keyword,.codeblock.ini .code .value,figure.highlight.ini .code .keyword,figure.highlight.ini .code .value{color:#333}.codeblock.java .code .title,figure.highlight.java .code .title{color:#795da3}.codeblock.java .code .javadoc,figure.highlight.java .code .javadoc{color:#969896}.codeblock.java .code .annotation,.codeblock.java .code .javadoctag,.codeblock.java .code .meta,figure.highlight.java .code .annotation,figure.highlight.java .code .javadoctag,figure.highlight.java .code .meta{color:#a71d5d}.codeblock.java .code .number,figure.highlight.java .code .number{color:#0086b3}.codeblock.java .code .params,figure.highlight.java .code .params{color:#1d3e81}.codeblock.js .code .built_in,.codeblock.js .code .title,figure.highlight.js .code .built_in,figure.highlight.js .code .title{color:#795da3}.codeblock.js .code .javadoc,figure.highlight.js .code .javadoc{color:#969896}.codeblock.js .code .javadoctag,.codeblock.js .code .tag,figure.highlight.js .code .javadoctag,figure.highlight.js .code .tag{color:#a71d5d}.codeblock.js .code .tag .title,figure.highlight.js .code .tag .title{color:#333}.codeblock.js .code .regexp,figure.highlight.js .code .regexp{color:#df5000}.codeblock.js .code .literal,.codeblock.js .code .number,figure.highlight.js .code .literal,figure.highlight.js .code .number{color:#0086b3}.codeblock.json .code .attribute,figure.highlight.json .code .attribute{color:#183691}.codeblock.json .code .literal,.codeblock.json .code .number,figure.highlight.json .code .literal,figure.highlight.json .code .number{color:#0086b3}.codeblock.mak .code .constant,figure.highlight.mak .code .constant{color:#333}.codeblock.mak .code .title,figure.highlight.mak .code .title{color:#795da3}.codeblock.mak .code .keyword,.codeblock.mak .code .meta-keyword,figure.highlight.mak .code .keyword,figure.highlight.mak .code .meta-keyword{color:#0086b3}.codeblock.md .code .blockquote,.codeblock.md .code .emphasis,.codeblock.md .code .link_label,.codeblock.md .code .quote,.codeblock.md .code .section,.codeblock.md .code .strong,.codeblock.md .code .value,figure.highlight.md .code .blockquote,figure.highlight.md .code .emphasis,figure.highlight.md .code .link_label,figure.highlight.md .code .quote,figure.highlight.md .code .section,figure.highlight.md .code .strong,figure.highlight.md .code .value{color:#183691}.codeblock.md .code .code,.codeblock.md .code .link_reference,.codeblock.md .code .symbol,figure.highlight.md .code .code,figure.highlight.md .code .link_reference,figure.highlight.md .code .symbol{color:#0086b3}.codeblock.md .code .link,.codeblock.md .code .link_url,figure.highlight.md .code .link,figure.highlight.md .code .link_url{text-decoration:underline}.codeblock.nginx .code .attribute,.codeblock.nginx .code .title,figure.highlight.nginx .code .attribute,figure.highlight.nginx .code .title{color:#a71d5d}.codeblock.nginx .code .built_in,.codeblock.nginx .code .literal,figure.highlight.nginx .code .built_in,figure.highlight.nginx .code .literal{color:#0086b3}.codeblock.nginx .code .regexp,figure.highlight.nginx .code .regexp{color:#183691}.codeblock.nginx .code .variable,figure.highlight.nginx .code .variable{color:#333}.codeblock.objectivec .code .meta,.codeblock.objectivec .code .preprocessor,figure.highlight.objectivec .code .meta,figure.highlight.objectivec .code .preprocessor{color:#a71d5d}.codeblock.objectivec .code .meta .title,.codeblock.objectivec .code .preprocessor .title,figure.highlight.objectivec .code .meta .title,figure.highlight.objectivec .code .preprocessor .title{color:#df5000}.codeblock.objectivec .code .meta-string,figure.highlight.objectivec .code .meta-string{color:#183691}.codeblock.objectivec .code .title,figure.highlight.objectivec .code .title{color:#795da3}.codeblock.objectivec .code .built_in,.codeblock.objectivec .code .literal,.codeblock.objectivec .code .number,figure.highlight.objectivec .code .built_in,figure.highlight.objectivec .code .literal,figure.highlight.objectivec .code .number{color:#0086b3}.codeblock.perl .code .sub,.codeblock.perl .code .title,figure.highlight.perl .code .sub,figure.highlight.perl .code .title{color:#795da3}.codeblock.perl .code .regexp,figure.highlight.perl .code .regexp{color:#df5000}.codeblock.php .code .doctag,.codeblock.php .code .phpdoc,figure.highlight.php .code .doctag,figure.highlight.php .code .phpdoc{color:#a71d5d}.codeblock.php .code .regexp,figure.highlight.php .code .regexp{color:#df5000}.codeblock.php .code .literal,.codeblock.php .code .number,figure.highlight.php .code .literal,figure.highlight.php .code .number{color:#0086b3}.codeblock.php .code .title,.codeblock.python .code .decorator,.codeblock.python .code .meta,.codeblock.python .code .title,figure.highlight.php .code .title,figure.highlight.python .code .decorator,figure.highlight.python .code .meta,figure.highlight.python .code .title{color:#795da3}.codeblock.python .code .number,figure.highlight.python .code .number{color:#0086b3}.codeblock.ruby .code .parent,.codeblock.ruby .code .title,figure.highlight.ruby .code .parent,figure.highlight.ruby .code .title{color:#795da3}.codeblock.ruby .code .constant,.codeblock.ruby .code .number,.codeblock.ruby .code .prompt,.codeblock.ruby .code .subst .keyword,.codeblock.ruby .code .symbol,figure.highlight.ruby .code .constant,figure.highlight.ruby .code .number,figure.highlight.ruby .code .prompt,figure.highlight.ruby .code .subst .keyword,figure.highlight.ruby .code .symbol{color:#0086b3}.codeblock.sql .built_in,figure.highlight.sql .built_in{color:#a71d5d}.codeblock.sql .number,figure.highlight.sql .number{color:#0086b3}.codeblock.html .tag,.codeblock.xml .tag,figure.highlight.html .tag,figure.highlight.xml .tag{color:#333}.codeblock.html .value,.codeblock.xml .value,figure.highlight.html .value,figure.highlight.xml .value{color:#183691}.codeblock.html .attr,.codeblock.html .attribute,.codeblock.xml .attr,.codeblock.xml .attribute,figure.highlight.html .attr,figure.highlight.html .attribute,figure.highlight.xml .attr,figure.highlight.xml .attribute{color:#795da3}.codeblock.html .name,.codeblock.html .title,.codeblock.xml .name,.codeblock.xml .title,figure.highlight.html .name,figure.highlight.html .title,figure.highlight.xml .name,figure.highlight.xml .title{color:#63a35c}.codeblock.puppet .title,figure.highlight.puppet .title{color:#795da3}.codeblock.puppet .function,figure.highlight.puppet .function{color:#0086b3}.codeblock.puppet .name,figure.highlight.puppet .name{color:#a71d5d}.codeblock.puppet .attr,figure.highlight.puppet .attr{color:#0086b3}.codeblock.less .at_rule,.codeblock.less .tag,figure.highlight.less .at_rule,figure.highlight.less .tag{color:#a71d5d}.codeblock.less .attribute,.codeblock.less .function,.codeblock.less .hexcolor,.codeblock.less .number,figure.highlight.less .attribute,figure.highlight.less .function,figure.highlight.less .hexcolor,figure.highlight.less .number{color:#0086b3}.codeblock.less .built_in,figure.highlight.less .built_in{color:#df5000}.codeblock.less .class,.codeblock.less .id,.codeblock.less .pseudo,.codeblock.less .selector-class,.codeblock.less .selector-id,.codeblock.less .selector-tag,figure.highlight.less .class,figure.highlight.less .id,figure.highlight.less .pseudo,figure.highlight.less .selector-class,figure.highlight.less .selector-id,figure.highlight.less .selector-tag{color:#795da3}.codeblock.scss .at_rule,.codeblock.scss .important,.codeblock.scss .tag,figure.highlight.scss .at_rule,figure.highlight.scss .important,figure.highlight.scss .tag{color:#a71d5d}.codeblock.scss .attribute,.codeblock.scss .function,.codeblock.scss .hexcolor,.codeblock.scss .number,figure.highlight.scss .attribute,figure.highlight.scss .function,figure.highlight.scss .hexcolor,figure.highlight.scss .number{color:#0086b3}.codeblock.scss .variable,figure.highlight.scss .variable{color:#333}.codeblock.scss .built_in,figure.highlight.scss .built_in{color:#df5000}.codeblock.scss .class,.codeblock.scss .id,.codeblock.scss .preprocessor,.codeblock.scss .pseudo,.codeblock.scss .selector-class,.codeblock.scss .selector-id,figure.highlight.scss .class,figure.highlight.scss .id,figure.highlight.scss .preprocessor,figure.highlight.scss .pseudo,figure.highlight.scss .selector-class,figure.highlight.scss .selector-id{color:#795da3}.codeblock.scss .selector-tag,.codeblock.scss .tag,figure.highlight.scss .selector-tag,figure.highlight.scss .tag{color:#63a35c}.codeblock.stylus .at_rule,figure.highlight.stylus .at_rule{color:#a71d5d}.codeblock.stylus .selector-tag,.codeblock.stylus .tag,figure.highlight.stylus .selector-tag,figure.highlight.stylus .tag{color:#63a35c}.codeblock.stylus .attribute,.codeblock.stylus .hexcolor,.codeblock.stylus .number,.codeblock.stylus .params,figure.highlight.stylus .attribute,figure.highlight.stylus .hexcolor,figure.highlight.stylus .number,figure.highlight.stylus .params{color:#0086b3}.codeblock.stylus .class,.codeblock.stylus .id,.codeblock.stylus .pseudo,.codeblock.stylus .selector-class,.codeblock.stylus .selector-id,.codeblock.stylus .selector-pseudo,.codeblock.stylus .title,figure.highlight.stylus .class,figure.highlight.stylus .id,figure.highlight.stylus .pseudo,figure.highlight.stylus .selector-class,figure.highlight.stylus .selector-id,figure.highlight.stylus .selector-pseudo,figure.highlight.stylus .title{color:#795da3}.codeblock.go .typename,figure.highlight.go .typename{color:#a71d5d}.codeblock.go .built_in,.codeblock.go .constant,figure.highlight.go .built_in,figure.highlight.go .constant{color:#0086b3}.codeblock.swift .preprocessor,figure.highlight.swift .preprocessor{color:#a71d5d}.codeblock.swift .title,figure.highlight.swift .title{color:#795da3}.codeblock.swift .built_in,.codeblock.swift .number,.codeblock.swift .type,figure.highlight.swift .built_in,figure.highlight.swift .number,figure.highlight.swift .type{color:#0086b3}.codeblock.yml .line .attr,figure.highlight.yml .line .attr{color:#63a35c}.codeblock.yml .line,.codeblock.yml .literal,.codeblock.yml .meta,.codeblock.yml .string,.codeblock.yml .type,figure.highlight.yml .line,figure.highlight.yml .literal,figure.highlight.yml .meta,figure.highlight.yml .string,figure.highlight.yml .type{color:#183691}.codeblock.yml .number,figure.highlight.yml .number{color:#0086b3} \ No newline at end of file
diff --git a/static/css/style-roysq7c4y3ysto46xd32ppqstniqcarkmgmwxl7dz47k2u2ououx3e18fuif.min.css b/static/css/style-roysq7c4y3ysto46xd32ppqstniqcarkmgmwxl7dz47k2u2ououx3e18fuif.min.css
deleted file mode 100644
index 6e81042..0000000
--- a/static/css/style-roysq7c4y3ysto46xd32ppqstniqcarkmgmwxl7dz47k2u2ououx3e18fuif.min.css
+++ /dev/null
@@ -1 +0,0 @@
-@charset "UTF-8";@import url(https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,700,700i&subset=cyrillic,cyrillic-ext,latin-ext);body,h1,h2,h3,h4,h5,h6,html{font-family:"Open Sans",sans-serif}table td,table th{padding:5px 10px}.form-control:focus,.form-control:hover,hr{outline:0}dl dt,table th{font-weight:700}#about,#blog,#cover{height:100%;left:0}#about,#blog,#cover,#header{width:100%;top:0}#about,#sidebar{background:rgba(17,26,35,0)}.caption,.pullquote,blockquote{font-style:italic}#header,.post-header-cover{-webkit-backface-visibility:hidden;-webkit-perspective:1000}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local("Open Sans"),local("OpenSans"),url(https://fonts.gstatic.com/s/opensans/v10/cJZKeOuBrn4kERxqtaUH3SZ2oysoEQEeKwjgmXLRnTc.ttf) format("truetype")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;src:local("Open Sans Bold"),local("OpenSans-Bold"),url(https://fonts.gstatic.com/s/opensans/v10/k3k702ZOKiLJc3WVjuplzJS3E-kSBmtLoNJPDtbj2Pk.ttf) format("truetype")}html{font-size:10px;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;text-size-adjust:100%;-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent}body{width:100%;height:100%;margin:0;padding:0;background:#fff;font-size:1.6rem;line-height:1.9em;letter-spacing:.01em;-webkit-font-smoothing:subpixel-antialiased;font-smoothing:subpixel-antialiased}body.pushed{overflow-x:hidden}h1,h2,h3,h4,h5,h6{letter-spacing:-.04em;font-weight:700;line-height:1.45em;color:#4a4a4a}code,pre>code{font-family:Menlo,Consolas,monospace}h1,h2,h3{margin:1em 0}h4,h5,h6{margin:1em 0 .5em}h1{font-size:2.8rem}h2{font-size:2.4rem}h3{font-size:2rem}h4{font-size:1.8rem}h5{font-size:1.7rem}h6{font-size:1.6rem}p{margin:0 0 1.5em}dl,ol,ul{margin:0 0 .5em}a,a:active,a:hover,a:visited{cursor:pointer;color:#349ef3;text-decoration:none}.archive .archive-posts .archive-post .archive-post-title:hover,.archive .archive-title:hover,a:hover{text-decoration:underline}a:hover{color:#349ef3}table{width:100%;background:0 0;border-collapse:collapse;border-spacing:0;text-align:left}table th{border-bottom:2px solid #909ba2}table tr:nth-child(2n){background:#f7f8f8}hr{margin:1.5em 0 0;border:none;border-top:1px solid #eef2f8}dl dd{margin-left:0}pre>code{display:block;width:100%;box-sizing:border-box;padding:15px;border:none;margin:0;cursor:text;overflow-x:auto;line-height:2.7rem;font-size:1.4rem}#about,#bottom-bar{display:none;position:fixed}code{font-size:1.5rem;display:inline-block;font-weight:400;padding:0 10px}abbr,acronym{border-bottom:1px dotted #5d686f}blockquote{border-left:3px solid #5d686f;padding:0 15px;margin:1.5em 0 0}blockquote cite:before{content:' — ';padding:0 .3em}blockquote>p:first-child{margin:0}@media only screen and (max-width:767px){code,h6{font-size:1.4rem}h1{font-size:2.6rem}h2{font-size:2.2rem}h3{font-size:1.8rem}h4{font-size:1.6rem}h5{font-size:1.5rem}}@media only screen and (min-width:768px) and (max-width:1023px){h1{font-size:2.65rem}h2{font-size:2.25rem}h3{font-size:1.85rem}h4{font-size:1.65rem}h5{font-size:1.55rem}h6{font-size:1.45rem}}.task-list{list-style-type:none}.task-list .task-list-item{margin:0 .2em .25em -1.6em;vertical-align:middle}#about{text-align:center;line-height:100%;overflow-y:auto;overflow-x:hidden;z-index:30}#sidebar,#sidebar .sidebar-container{overflow:auto}#about #about-card{position:relative;top:-1000px;display:block;background:#fff;max-width:400px;margin:15px auto;border-radius:3px;padding:30px 0;-webkit-box-shadow:0 0 5px rgba(0,0,0,.5);-moz-box-shadow:0 0 5px rgba(0,0,0,.5);box-shadow:0 0 5px rgba(0,0,0,.5)}#about #about-card #about-btn-close{position:absolute;top:15px;right:15px;color:#9eabb3;cursor:pointer}#about #about-card #about-btn-close:hover{color:#738691}#about #about-card #about-card-picture{margin-bottom:15px}#about #about-card #about-card-name{margin-top:0;margin-bottom:20px}#about #about-card #about-card-bio{padding:0 30px;margin:0 0 30px}#about #about-card #about-card-job,#about #about-card #about-card-location{display:inline-block;vertical-align:top}#about #about-card #about-card-bio,#about #about-card #about-card-job,#about #about-card #about-card-location{font-size:1.6rem;line-height:1.9em;font-weight:400;color:#5d686f}@media only screen and (max-width:767px){#about #about-card{width:90%}#about #about-card #about-card-job,#about #about-card #about-card-location{display:block;width:calc(100% - 60px);padding:0 30px}#about #about-card #about-card-picture{width:90px;height:90px;border-radius:45px}#about #about-card #about-card-job{margin-bottom:15px}#bottom-bar{width:calc(100% - 15px * 2);left:0}#bottom-bar[data-behavior="4"].pushed,#bottom-bar[data-behavior="5"].pushed,#bottom-bar[data-behavior="1"].pushed,#bottom-bar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="3"].pushed,#bottom-bar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:768px){#about #about-card{width:80%}#about #about-card #about-card-picture{width:110px;height:110px;border-radius:55px}#about #about-card #about-card-job,#about #about-card #about-card-location{display:inline-block;width:calc((100% / 2) - 48px)}#about #about-card #about-card-job{padding:0 15px 0 30px}#about #about-card #about-card-location{padding:0 30px 0 15px}}#blog{position:absolute}#bottom-bar{bottom:0;height:60px;background:#fff;margin:0;border-top:1px solid #eef2f8;padding:0 15px;z-index:40;transition:transform .25s ease-in-out;-webkit-transition:-webkit-transform .25s ease-in-out}#header,#main{background:#fff;transition:transform .25s ease-in-out}@media only screen and (min-width:768px) and (max-width:1023px){#bottom-bar[data-behavior="4"],#bottom-bar[data-behavior="5"],#bottom-bar[data-behavior="6"]{width:calc(100% - 15px * 2);left:0}#bottom-bar[data-behavior="3"],#bottom-bar[data-behavior="1"],#bottom-bar[data-behavior="2"]{width:calc(100% - 75px - 15px * 2);left:75px}#bottom-bar[data-behavior="3"].pushed,#bottom-bar[data-behavior="1"].pushed,#bottom-bar[data-behavior="2"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#bottom-bar[data-behavior="4"].pushed,#bottom-bar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1024px) and (max-width:1279px){#bottom-bar[data-behavior="4"],#bottom-bar[data-behavior="5"],#bottom-bar[data-behavior="6"]{width:calc(100% - 15px * 2);left:0}#bottom-bar[data-behavior="1"],#bottom-bar[data-behavior="2"]{width:calc(100% - 250px - 15px * 2);left:250px}#bottom-bar[data-behavior="1"].pushed,#bottom-bar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="3"]{width:calc(100% - 75px - 15px * 2);left:75px}#bottom-bar[data-behavior="3"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#bottom-bar[data-behavior="4"].pushed,#bottom-bar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1280px){#bottom-bar[data-behavior="4"],#bottom-bar[data-behavior="5"],#bottom-bar[data-behavior="6"]{width:calc(100% - 15px * 2);left:0}#bottom-bar[data-behavior="1"]{width:calc(100% - 500px - 15px * 2);left:500px}#bottom-bar[data-behavior="1"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#bottom-bar[data-behavior="2"]{width:calc(100% - 250px - 15px * 2);left:250px}#bottom-bar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="3"]{width:calc(100% - 75px - 15px * 2);left:75px}#bottom-bar[data-behavior="3"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#bottom-bar[data-behavior="4"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#bottom-bar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#bottom-bar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}#cover{position:fixed;background-repeat:no-repeat;background-size:cover;z-index:-1}#footer{color:#9eabb3;font-size:1.5rem;text-align:center;margin-top:70px;height:auto;padding:20px}#header{display:block;height:55px;position:fixed;border:1px solid #eef2f8;color:#88909a;z-index:20;-webkit-transition:-webkit-transform .25s ease-in-out}#header #btn-open-sidebar{position:absolute;top:20px;left:20px;cursor:pointer}#header .header-right-icon,#header .header-right-picture{position:absolute;top:12.5px;right:20px;color:#88909a}#header .header-right-picture{display:block;width:30px;height:30px}#header .header-right-picture .header-picture{display:block;width:30px;height:30px;border-radius:15px}#header .header-title{text-align:center;font-size:1.6rem;line-height:55px;margin:0}#header .header-title .header-title-link{color:#88909a;font-weight:400}#header .header-title .header-title-link:active,#header .header-title .header-title-link:hover{color:#6e7681;text-decoration:none}#header.header-up{-webkit-transform:translate3d(0,-55px,0);-moz-transform:translate3d(0,-55px,0);transform:translate3d(0,-55px,0)}#header[data-behavior="4"].pushed,#header[data-behavior="5"].pushed,#header[data-behavior="1"].pushed,#header[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#header[data-behavior="3"].pushed,#header[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}@media only screen and (min-width:768px){#header[data-behavior="3"],#header[data-behavior="1"],#header[data-behavior="2"]{display:none}}@media only screen and (min-width:1280px){#header[data-behavior="4"].pushed,#header[data-behavior="1"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#header[data-behavior="5"].pushed,#header[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}}#main{display:block;min-height:100%;-webkit-transition:-webkit-transform .25s ease-in-out}#sidebar,.post-header-cover{transition:transform .25s ease-in-out}#main.hasCover.hasCoverCaption,#main.hasCover.hasCoverMetaOut{padding-top:50px!important}#main.hasCover.hasCoverMetaIn,#main.hasCover.hasCoverMetaOut.hasCoverCaption{padding-top:0!important}@media only screen and (max-width:767px){#main{padding-top:70px;display:block;width:100%}#main[data-behavior="4"].pushed,#main[data-behavior="5"].pushed,#main[data-behavior="1"].pushed,#main[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#main[data-behavior="3"].pushed,#main[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:768px) and (max-width:1023px){#main[data-behavior="4"],#main[data-behavior="5"],#main[data-behavior="6"]{padding-top:70px;display:block;width:100%}#main[data-behavior="3"],#main[data-behavior="1"],#main[data-behavior="2"]{padding-top:15px;float:right;width:calc(100% - 75px)}#main[data-behavior="4"].pushed,#main[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#main[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1024px) and (max-width:1279px){#main[data-behavior="4"],#main[data-behavior="5"],#main[data-behavior="6"]{padding-top:70px;display:block;width:100%}#main[data-behavior="1"],#main[data-behavior="2"]{padding-top:15px;float:right;width:calc(100% - 250px)}#main[data-behavior="3"]{padding-top:15px;float:right;width:calc(100% - 75px)}#main[data-behavior="4"].pushed,#main[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#main[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1280px){#main[data-behavior="4"],#main[data-behavior="5"],#main[data-behavior="6"]{padding-top:70px;display:block;width:100%}#main[data-behavior="1"]{padding-top:15px;float:right;width:calc(100% - 500px)}#main[data-behavior="2"]{padding-top:15px;float:right;width:calc(100% - 250px)}#main[data-behavior="3"]{padding-top:15px;float:right;width:calc(100% - 75px)}#main[data-behavior="4"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#main[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#main[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}#sidebar{font-family:"Open Sans",sans-serif;height:100%;position:fixed;top:0;z-index:20;-webkit-transition:-webkit-transform .25s ease-in-out;-webkit-font-smoothing:antialiased;font-smoothing:antialiased}#sidebar .sidebar-profile{color:#ebebeb;text-align:center;padding-top:18px;margin-bottom:15px}#sidebar .sidebar-profile .sidebar-profile-picture{display:block;margin:0 auto}#sidebar .sidebar-profile .sidebar-profile-name{font-size:1.1em;color:#ebebeb}#sidebar ul.sidebar-buttons{padding:0;margin:0 0 20px}#sidebar ul.sidebar-buttons li.sidebar-button{display:block;width:100%;height:45px;line-height:45px}#sidebar ul.sidebar-buttons li.sidebar-button .sidebar-button-link{color:#ebebeb;display:block;height:100%}#sidebar ul.sidebar-buttons li.sidebar-button .sidebar-button-link:active,#sidebar ul.sidebar-buttons li.sidebar-button .sidebar-button-link:hover{text-decoration:none;color:#fff}#sidebar ul.sidebar-buttons:first-child{margin-top:5px}@media only screen and (max-width:767px){#sidebar[data-behavior="4"],#sidebar[data-behavior="5"],#sidebar[data-behavior="1"],#sidebar[data-behavior="2"]{left:-250px;width:250px}#sidebar[data-behavior="4"] .sidebar-profile,#sidebar[data-behavior="5"] .sidebar-profile,#sidebar[data-behavior="1"] .sidebar-profile,#sidebar[data-behavior="2"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="4"].pushed,#sidebar[data-behavior="5"].pushed,#sidebar[data-behavior="1"].pushed,#sidebar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="3"],#sidebar[data-behavior="6"]{left:-75px;width:75px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="3"].pushed,#sidebar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:768px) and (max-width:1023px){#sidebar[data-behavior="3"],#sidebar[data-behavior="1"],#sidebar[data-behavior="2"]{width:75px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="3"].pushed,#sidebar[data-behavior="1"].pushed,#sidebar[data-behavior="2"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#sidebar[data-behavior="4"],#sidebar[data-behavior="5"]{left:-250px;width:250px}#sidebar[data-behavior="4"] .sidebar-profile,#sidebar[data-behavior="5"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="4"].pushed,#sidebar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="6"]{left:-75px;width:75px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1024px) and (max-width:1279px){#sidebar[data-behavior="1"],#sidebar[data-behavior="2"]{width:250px}#sidebar[data-behavior="1"] .sidebar-profile,#sidebar[data-behavior="2"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="1"].pushed,#sidebar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="3"]{width:75px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="3"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#sidebar[data-behavior="4"],#sidebar[data-behavior="5"]{left:-250px;width:250px}#sidebar[data-behavior="4"] .sidebar-profile,#sidebar[data-behavior="5"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-picture,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-name,#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="4"].pushed,#sidebar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="6"]{left:-75px;width:75px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1280px){#sidebar[data-behavior="1"]{width:500px;box-sizing:border-box;padding:0 80px}#sidebar[data-behavior="1"] .sidebar-container{position:relative;top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%)}#sidebar[data-behavior="1"] .sidebar-profile{padding-top:0;padding-bottom:7.5px}#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-bio,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-job,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-location{font-weight:400;font-size:1.6rem;color:#ebebeb}#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-job,#sidebar[data-behavior="1"] .sidebar-profile .sidebar-profile-location{margin-top:0;width:49%;display:inline-block}#sidebar[data-behavior="1"] ul.sidebar-buttons{width:49%;vertical-align:top;display:inline-block}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button{text-align:left;box-sizing:border-box}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-top:0;white-space:nowrap}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;float:left;text-align:center;width:30px;height:35px;line-height:35px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#sidebar[data-behavior="1"] ul.sidebar-buttons li.sidebar-button:nth-child(odd){padding-right:20px}#sidebar[data-behavior="1"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#sidebar[data-behavior="2"]{width:250px}#sidebar[data-behavior="2"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="2"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="2"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="3"]{width:75px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="3"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="3"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:none}#sidebar[data-behavior="3"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}#sidebar[data-behavior="4"]{left:-500px;width:500px;box-sizing:border-box;padding:0 80px}#sidebar[data-behavior="4"] .sidebar-container{position:relative;top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%)}#sidebar[data-behavior="4"] .sidebar-profile{padding-top:0;padding-bottom:7.5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-bio,#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-job,#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-location{font-weight:400;font-size:1.6rem;color:#ebebeb}#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-job,#sidebar[data-behavior="4"] .sidebar-profile .sidebar-profile-location{margin-top:0;width:49%;display:inline-block}#sidebar[data-behavior="4"] ul.sidebar-buttons{width:49%;vertical-align:top;display:inline-block}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button{text-align:left;box-sizing:border-box}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-top:0;white-space:nowrap}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;float:left;text-align:center;width:30px;height:35px;line-height:35px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#sidebar[data-behavior="4"] ul.sidebar-buttons li.sidebar-button:nth-child(odd){padding-right:20px}#sidebar[data-behavior="4"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}#sidebar[data-behavior="5"]{left:-250px;width:250px}#sidebar[data-behavior="5"] .sidebar-profile{height:130px;padding-top:40px;padding-bottom:7.5px}#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-picture{width:90px;height:90px;border-radius:90px;margin-bottom:5px}#sidebar[data-behavior="5"] .sidebar-profile .sidebar-profile-name{font-size:1.6rem}#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button{text-align:left}#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:left;width:auto;padding-left:23px;padding-top:0}#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle;margin-right:15px}#sidebar[data-behavior="5"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc{display:inline-block;width:auto;height:35px;line-height:35px;font-size:1.5rem;letter-spacing:.3px;vertical-align:middle}#sidebar[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}#sidebar[data-behavior="6"]{left:-75px;width:75px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-picture{width:30px;height:30px;line-height:30px;vertical-align:middle;border-radius:30px}#sidebar[data-behavior="6"] .sidebar-profile .sidebar-profile-name{display:none}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button{text-align:center}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link{text-align:center;width:100%}#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-icon{font-size:2rem;display:inline-block;text-align:center;width:30px;height:30px;line-height:30px;padding-top:0;vertical-align:middle}#sidebar[data-behavior="5"] .sidebar-profile-bio,#sidebar[data-behavior="3"] .sidebar-profile-bio,#sidebar[data-behavior="6"] .sidebar-profile-bio,#sidebar[data-behavior="6"] ul.sidebar-buttons li.sidebar-button .sidebar-button-link .sidebar-button-desc,#sidebar[data-behavior="2"] .sidebar-profile-bio{display:none}#sidebar[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}.codeblock,.codeblock .gutter,figure.highlight,figure.highlight .gutter{line-height:2.3rem;background:#f7f8f8}.codeblock .code,.codeblock .gutter,.post,figure.highlight .code,figure.highlight .gutter{vertical-align:top}@media only screen and (max-width:1279px){#sidebar .sidebar-profile-bio{display:none}}.alert{position:relative;text-align:left;padding:10px 15px;min-height:30px;margin:1em 0 0;border:none;border-left:3px solid}.alert p{margin:1.5em 0 0}.alert p:first-child{margin:0}.alert:not(.no-icon){padding-left:55px}.btn,.btn--medium,.btn--small{padding:8px 15px}.alert:not(.no-icon):before{position:absolute;top:10px;left:15px;font-family:FontAwesome;font-size:2.5rem}.alert.info{border-color:#349ef3;background-color:#e6f3fe}.alert.info:not(.no-icon):before{content:"\f05a";color:#349ef3}.alert.success{border-color:#4dc657;background-color:#effaf0;content:"\f058"}.alert.success:not(.no-icon):before{content:"\f058";color:#4dc657}.alert.warning{border-color:#f5aa0a;background-color:#fdf1d8}.alert.warning:not(.no-icon):before{content:"\f071";color:#f5aa0a}.alert.danger{border-color:#f5311d;background-color:#feecea}.alert.danger:not(.no-icon):before{content:"\f05e";color:#f5311d}.archive-result{display:none}.archive .archive-title{color:#5d686f}.archive .archive-posts{list-style:none}.archive .archive-posts .archive-post .archive-post-title{margin-left:10px;color:#5d686f}.archive .archive-posts .archive-post .archive-post-date{color:#9eabb3}.archive .archive-posts .archive-post::before{font-family:FontAwesome;content:'\f0da';font-size:1.3rem}.boxes,.boxes .box:nth-child(n+2){margin-top:20px}.box{border-bottom:1px solid #eef2f8}.btn{width:auto;height:auto;background:#fff;border-radius:3px;margin:0;letter-spacing:.01em;font-size:1.6rem;cursor:pointer}.btn:active,.btn:focus,.btn:hover{text-decoration:none}.btn--disabled,.btn--disabled:hover{color:#bbc4c9!important;border:1px solid #bbc4c9;cursor:not-allowed;text-decoration:none}.btn--default{color:#9eabb3!important;border:1px solid #9eabb3}.btn--default:hover{color:#738691!important;border:1px solid #738691}.btn--success{color:#4dc657!important;border:1px solid #4dc657}.btn--success:hover{color:#309639!important;border:1px solid #309639}.btn--primary{color:#349ef3!important;border:1px solid #349ef3}.btn--primary:hover{color:#0c78ce!important;border:1px solid #0c78ce}.btn--danger{color:#f5311d!important;border:1px solid #f5311d}.btn--danger:hover{color:#bd1908!important;border:1px solid #bd1908}.btn--medium{font-size:1.5rem}.btn--small{font-size:1.3rem}.caption{display:block;font-family:Merriweather,serif;font-size:1.3rem;color:#81929d;text-align:center;padding-right:10px;padding-left:10px}.codeblock,figure.highlight{margin:10px 0;line-height:2.3rem;padding-top:15px;padding-bottom:15px;overflow:hidden}.codeblock table,figure.highlight table{display:block;width:100%}.codeblock .code,.codeblock .gutter,.codeblock .tag,.codeblock pre,figure.highlight .code,figure.highlight .gutter,figure.highlight .tag,figure.highlight pre{background-color:inherit;font-family:Menlo,Consolas,monospace;border:none;padding:0;margin:0;cursor:text}.codeblock.plain .gutter,figure.highlight.plain .gutter{display:none}.codeblock figcaption,figure.highlight figcaption{font-size:1.3rem;padding:0 15px 20px;margin:0}.codeblock figcaption a,figure.highlight figcaption a{float:right}.codeblock .gutter,figure.highlight .gutter{border-right:1px solid;padding:.3em 15px;line-height:2.3rem;font-size:1.4rem}.codeblock .gutter pre,figure.highlight .gutter pre{color:#aaa}.codeblock .code,figure.highlight .code{padding:.3em 15px .3em 1em;width:100%}.codeblock .code pre,figure.highlight .code pre{line-height:2.3rem;font-size:1.4rem;max-width:calc(750px - 50px);overflow-x:auto;overflow-y:hidden}.codeblock .line,figure.highlight .line{height:2.3rem;font-size:1.4rem}.codeblock--tabbed figure.highlight,.codeblock--tabbed pre>code{margin-bottom:0;padding-bottom:0}.codeblock--tabbed figcaption a,.codeblock--tabbed figcaption span{float:left!important}.codeblock--tabbed figcaption .tabs{float:right}.codeblock--tabbed figcaption .tabs .tab{cursor:pointer;display:inline-block;margin:0 5px;padding:0 7px}.codeblock--tabbed figcaption .tabs .tab:last-child{margin-right:0}.gist .line,.gist .line-number{font-family:Menlo,Consolas,monospace;font-size:1em;margin:0 0 5px}.figure.center,.figure.center .fig-img{margin:2px auto}.figure.clear{clear:both}.figure.center{width:calc(100% - 4px)}.figure.fig-20,.figure.fig-25,.figure.fig-33,.figure.fig-50,.figure.fig-75,.figure.left{float:left;margin:2px}.figure.right{float:right;margin:2px}.figure.fig-20{width:calc(20% - 4px)}.figure.fig-25{width:calc(25% - 4px)}.figure.fig-33{width:calc(33.3% - 4px)}.figure.fig-50{width:calc(50% - 4px)}.figure.fig-75{width:calc(75% - 4px)}.figure.fig-100{width:calc(100% - 4px);margin:2px}.figure.figure--fullWidth{width:100%}.figure.figure--fullWidth .figure-img{margin:0 auto}@media only screen and (max-width:767px){.fig-20 .caption,.fig-25 .caption,.fig-33 .caption{display:none}}.form-control{background:0 0;width:100%;border:none;outline:0;color:#5d686f;font-weight:300}.input--large{height:auto;padding:10px 0;font-size:18px;line-height:21px}.input--xlarge{height:auto;padding:10px 0;font-size:25px;line-height:30px}.hide{display:none}@media only screen and (max-width:479px){.hide-xs{display:none}}@media only screen and (min-width:480px) and (max-width:767px){.hide-sm{display:none}}@media only screen and (min-width:768px) and (max-width:1023px){.hide-md{display:none}}@media only screen and (min-width:1024px){.hide-lg{display:none}}.highlight-text{display:inline;padding:3px}.highlight-text.red{background-color:#ffe6e6}.highlight-text.green{background-color:#cdffcd}.highlight-text.blue{background-color:#e6e6ff}.highlight-text.purple{background-color:#ffe6ff}.highlight-text.orange{background-color:#ffedcc}.highlight-text.yellow{background-color:#ffc}.highlight-text.cyan{background-color:#cff}.highlight-text.primary{background-color:#ddeffd}.highlight-text.success{background-color:#d4f1d7}.highlight-text.warning{background-color:#fdeece}.highlight-text.danger{background-color:#fee3e0}.icon-mt{margin-top:10px}.icon-mr{margin-right:10px}.icon-mb{margin-bottom:10px}.icon-ml{margin-left:10px}.image-gallery{display:block;position:relative;height:auto;overflow:hidden;margin-bottom:30px}.modal,.modal-container{height:100%;box-sizing:border-box}.image-gallery .image-gallery-metabar{position:absolute;bottom:0;width:calc(100% - (1.5em) * 2);font-family:"Open Sans";font-style:italic;background:rgba(0,0,0,.75);font-size:1.3rem;color:#fff;padding:.5em 1.5em;z-index:1}.image-gallery .image-gallery-photos .photo-box{float:left;position:relative;overflow:hidden;display:none}.image-gallery .image-gallery-photos .photo-box:first-child{display:block;width:100%;padding-bottom:56.25%}.image-gallery .image-gallery-photos .photo-box .photo-box-inner{position:absolute;overflow:hidden}.image-gallery .image-gallery-photos .photo-box .photo-box-inner .photo{width:100%;cursor:-webkit-zoom-in;cursor:-moz-zoom-in}.image-gallery .image-gallery-photos--thumbnail .photo-box{display:block;width:50%;padding-bottom:30%}.image-gallery .image-gallery-photos--thumbnail .photo-box:first-child{width:100%;padding-bottom:40%;margin-bottom:2px}.image-gallery .image-gallery-photos--thumbnail .photo-box:nth-child(2){margin-right:2px;width:calc(50% - 2px)}.media-body,.modal,.overlay,.pagination-bar{width:100%}.image-gallery .image-gallery-photos--thumbnail .photo-box:nth-child(n+4){display:none}a.link-unstyled,a.link-unstyled:active,a.link-unstyled:hover{cursor:pointer!important;color:inherit!important;text-decoration:none!important}a.link-unstyled a.link,a.link-unstyled a.link:active,a.link-unstyled a.link:hover{text-decoration:underline!important}.post .post-header .post-title:hover,.post-header .post-title:hover,.post-header-cover .post-header .post-title:hover,.postShorten .postShorten-header .postShorten-title:hover,.tag--danger:hover,.tag--primary:hover,.tag--success:hover,a.tag--danger:hover,a.tag--primary:hover,a.tag--success:hover{text-decoration:none}a.fancybox{cursor:zoom-in!important}.main-content-wrap{display:block;max-width:750px;margin:0 auto;padding-right:20px;padding-left:20px}@media only screen and (min-width:1024px){.markdown h1{font-size:3rem}.markdown h2{font-size:2.7rem}.markdown h3{font-size:2.4rem}.markdown h4{font-size:2.1rem}.markdown h5{font-size:1.9rem}.markdown h6{font-size:1.7rem}}@media only screen and (max-width:767px){.markdown h1{font-size:2.65rem}.markdown h2{font-size:2.35rem}.markdown h3{font-size:2.05rem}.markdown h4{font-size:1.75rem}.markdown h5{font-size:1.55rem}.markdown h6{font-size:1.35rem}}@media only screen and (min-width:768px) and (max-width:1023px){.markdown h1{font-size:2.8rem}.markdown h2{font-size:2.5rem}.markdown h3{font-size:2.2rem}.markdown h4{font-size:1.9rem}.markdown h5{font-size:1.7rem}.markdown h6{font-size:1.5rem}}.media-body,.media-left{display:table-cell;vertical-align:top}.media-left{float:left;padding-right:15px}.media-heading{margin:0 0 -5px}.media-meta{color:#9eabb3}.media-content{color:#5d686f}.modal-container{position:fixed;top:0;left:0;width:100%;z-index:1010}.modal,.modal-body,.modal-header{position:relative}.modal{max-width:750px;margin:0 auto;padding:0;overflow:hidden}.modal-header{padding:10px 15px 0;background:#fff;border-bottom:1px solid #eef2f8}.modal-body,.modal-footer{padding:0 15px;background:#fff}.modal-body{overflow-y:auto}.modal-footer{height:50px;border-top:1px solid #eef2f8}.modal .close-button{position:absolute;top:9px;right:15px;color:#5d686f;cursor:pointer}.overlay{display:none;background:rgba(0,0,0,.5);height:100%;position:fixed;top:0;left:0;z-index:1009;overflow:hidden}@media only screen and (min-width:768px){.modal-container{padding:50px 0;left:50%;transform:translateX(-50%)}.modal{border-radius:5px}}.pagination-bar{height:60px}.pagination-bar .pagination{height:60px;line-height:60px;display:block;list-style:none;padding:0 10px;width:auto}.pagination-bar .pagination .pagination-next,.pagination-bar .pagination .pagination-prev{float:left;margin-right:10px}.pagination-bar .pagination .pagination-number{float:right;font-size:1.3rem;color:#9eabb3}.post{position:relative;width:100%;display:inline-block}.post .post-header .post-title{margin:0;word-break:initial;overflow:hidden}.post .post-meta{line-height:1.5em;font-family:"Open Sans",sans-serif;font-size:1.3rem;font-weight:400;color:#9eabb3}.post .post-meta a{color:#9eabb3}.post .post-content{text-rendering:optimizelegibility;letter-spacing:-.3px;font-family:Merriweather,serif;color:#5d686f;margin-top:20px;font-weight:400;overflow:hidden;-webkit-hypens:auto;-moz-hypens:auto;hypens:auto}.post .post-content img{display:block;width:auto;max-width:100%}.post .post-content :not(blockquote):not(.alert)>p{margin:1.5em 0 0}.post .post-footer{margin-top:20px}.post .post-footer-tags{padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #eef2f8}@media only screen and (min-width:768px) and (max-width:1023px){.post .post-header .post-title{font-size:3.3rem}}@media only screen and (min-width:1024px){.post .post-header .post-title{font-size:3.7rem}}@media only screen and (min-width:768px){.post-content{font-size:1.7rem}}.post-actions-wrap{height:60px;padding:0;line-height:60px;clear:both}.post-actions-wrap ul.post-actions{float:left;padding-left:0;margin-top:0;list-style:none}.post-actions-wrap ul.post-actions li.post-action{width:auto;text-align:center}.post-actions-wrap ul.post-action-nav{width:45%;z-index:42}.post-actions-wrap ul.post-action-nav li.post-action{float:left;min-width:42px}.post-actions-wrap ul.post-action-nav li.post-action:last-child .post-action-btn{margin-left:15px}.post-actions-wrap ul.post-action-share{width:55%;z-index:41}.post-actions-wrap ul.post-action-share li.post-action{float:right}.post-actions-wrap ul.post-action-share li.post-action:nth-child(n+3) .post-action-btn{margin-right:15px}@media only screen and (max-width:767px){.post-actions-wrap ul.post-action-nav{width:25%}.post-actions-wrap ul.post-action-share{width:75%}}@media only screen and (max-width:479px){.post-actions-wrap ul.post-action-nav{width:35%}.post-actions-wrap ul.post-action-share{width:65%}}.pullquote{text-align:left;margin:1.5em 0 0}.pullquote.figure.fig-20,.pullquote.figure.fig-25,.pullquote.figure.fig-33,.pullquote.figure.fig-50,.pullquote.figure.fig-75,.pullquote.left{width:45%;float:left;margin:1.5em 35px 1.5em 0}.pullquote.right{width:45%;float:right;margin:1.5em 0 1.5em 35px}.pullquote.blur{background-color:#eef0f1}.post-header .post-title{margin:0;word-break:initial;overflow:hidden}.post-header-cover{display:table;position:relative;top:0;left:0;background-size:cover;background-position:center;background-repeat:no-repeat;width:100%;padding:calc(55px + 30px) 0 30px;height:100%;z-index:15;-webkit-transition:-webkit-transform .25s ease-in-out}.post-header-cover .post-header{display:table-cell;vertical-align:middle}.post-header-cover .post-header .post-title{max-width:750px;margin:0 auto 20px;color:#fff;text-shadow:0 2px 0 rgba(0,0,0,.9)}.post-header-cover .post-header .post-meta{max-width:750px;font-family:"Open Sans",sans-serif;font-size:1.6rem;color:#fff!important;font-weight:400;letter-spacing:.05em;text-shadow:0 1px 0 rgba(0,0,0,.9);margin:0 auto}.post-header-cover .post-header .post-meta a{color:#fff}.post-header-cover.post-header-cover--partial{height:60%}.post-header-cover-caption{margin:5px 0 50px}@media only screen and (max-width:479px){.post-header-cover .post-header .post-title{font-size:2.8rem}}@media only screen and (min-width:480px) and (max-width:767px){.post-header-cover .post-header .post-title{font-size:3.3rem}}@media only screen and (max-width:767px){.post-header-cover{width:100%;left:0}.post-header-cover[data-behavior="4"].pushed,.post-header-cover[data-behavior="5"].pushed,.post-header-cover[data-behavior="1"].pushed,.post-header-cover[data-behavior="2"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}.post-header-cover[data-behavior="3"].pushed,.post-header-cover[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:768px) and (max-width:1023px){.post-header-cover .post-header .post-title{font-size:5.8rem;line-height:1.3em}.post-header-cover[data-behavior="3"],.post-header-cover[data-behavior="1"],.post-header-cover[data-behavior="2"]{width:calc(100% - 75px);left:75px}.post-header-cover[data-behavior="4"],.post-header-cover[data-behavior="5"],.post-header-cover[data-behavior="6"]{width:100%;left:0}.post-header-cover[data-behavior="4"].pushed,.post-header-cover[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}.post-header-cover[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1024px) and (max-width:1279px){.post-header-cover .post-header .post-title{font-size:6.5rem;line-height:1.3em}.post-header-cover[data-behavior="1"],.post-header-cover[data-behavior="2"]{width:calc(100% - 250px);left:250px}.post-header-cover[data-behavior="3"]{width:calc(100% - 75px);left:75px}.post-header-cover[data-behavior="4"],.post-header-cover[data-behavior="5"],.post-header-cover[data-behavior="6"]{width:100%;left:0}.post-header-cover[data-behavior="4"].pushed,.post-header-cover[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}.post-header-cover[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}@media only screen and (min-width:1280px){.post-header-cover .post-header .post-title{font-size:6.5rem;line-height:1.3em}.post-header-cover[data-behavior="1"]{width:calc(100% - 500px);left:500px}.post-header-cover[data-behavior="2"]{width:calc(100% - 250px);left:250px}.post-header-cover[data-behavior="3"]{width:calc(100% - 75px);left:75px}.post-header-cover[data-behavior="4"],.post-header-cover[data-behavior="5"],.post-header-cover[data-behavior="6"]{width:100%;left:0}.post-header-cover[data-behavior="4"].pushed{-webkit-transform:translate3d(500px,0,0);-moz-transform:translate3d(500px,0,0);transform:translate3d(500px,0,0)}.post-header-cover[data-behavior="5"].pushed{-webkit-transform:translate3d(250px,0,0);-moz-transform:translate3d(250px,0,0);transform:translate3d(250px,0,0)}.post-header-cover[data-behavior="6"].pushed{-webkit-transform:translate3d(75px,0,0);-moz-transform:translate3d(75px,0,0);transform:translate3d(75px,0,0)}}.postShorten-group .postShorten{margin-top:15px;border-bottom:1px solid #eef2f8}.postShorten{position:relative;width:100%;display:inline-block;vertical-align:top}.postShorten .postShorten-thumbnailimg{overflow:hidden}.postShorten .postShorten-header .postShorten-title{margin:0;word-break:initial;overflow:hidden}.postShorten .postShorten-meta{line-height:1.5em}.postShorten .postShorten-meta,.postShorten .postShorten-meta a,.postShorten .postShorten-readingtime{color:#9eabb3}.postShorten .postShorten-excerpt_link{margin-top:-15px}.postShorten .postShorten-excerpt_link,.postShorten .postShorten-meta,.postShorten .postShorten-readingtime{font-family:"Open Sans",sans-serif;font-size:1.3rem;font-weight:400}.postShorten .postShorten-content,.postShorten .postShorten-excerpt{text-rendering:optimizelegibility;letter-spacing:-.3px;font-family:Merriweather,serif;color:#5d686f;font-weight:400;overflow:hidden;-webkit-hypens:auto;-moz-hypens:auto;hypens:auto}.postShorten .postShorten-content img,.postShorten .postShorten-excerpt img{display:block;width:auto;max-width:100%}.postShorten .postShorten-excerpt{margin-top:15px}.postShorten .postShorten-excerpt p:nth-child(1){margin:0}.postShorten .postShorten-content{margin-top:25px}@media only screen and (max-width:479px){.postShorten .postShorten-thumbnailimg,.postShorten .postShorten-thumbnailimg img{display:none}}@media only screen and (min-width:480px){.postShorten.postShorten--thumbnailimg-right .postShorten-thumbnailimg{float:right;margin:5px 0 30px 15px}.postShorten.postShorten--thumbnailimg-right .postShorten-thumbnailimg img{display:block;width:140px;height:140px;object-fit:cover;overflow:hidden}.postShorten.postShorten--thumbnailimg-right .postShorten-wrap{float:left;width:calc(100% - 140px - 20px)}.postShorten.postShorten--thumbnailimg-left .postShorten-thumbnailimg{float:left;margin:5px 15px 30px 0}.postShorten.postShorten--thumbnailimg-left .postShorten-thumbnailimg img{display:block;width:140px;height:140px;object-fit:cover;overflow:hidden}.postShorten.postShorten--thumbnailimg-left .postShorten-wrap{float:right;width:calc(100% - 140px - 20px)}.postShorten.postShorten--thumbnailimg-top .postShorten-thumbnailimg{margin-top:5px}.postShorten.postShorten--thumbnailimg-bottom .postShorten-wrap{display:block;width:100%}.postShorten.postShorten--thumbnailimg-bottom .postShorten-excerpt>p{margin-bottom:0}.postShorten.postShorten--thumbnailimg-bottom .postShorten-thumbnailimg{display:block;width:100%;overflow:hidden;margin:15px 0}.postShorten.postShorten--thumbnailimg-bottom .postShorten-thumbnailimg img{width:auto;height:auto}}.share-options-bar{position:fixed;bottom:-156px;background:#fff;height:155px;clear:both;border-top:1px solid #eef2f8;transition:transform .25s ease-in-out;z-index:50;-webkit-transition:-webkit-transform .25s ease-in-out}.share-options-bar.opened{-webkit-transform:translate3d(0,-155px,0);-moz-transform:translate3d(0,-155px,0);transform:translate3d(0,-155px,0)}.share-options-bar .share-options{padding:0;margin:0;text-align:center;list-style:none}.share-options-bar .share-options .share-option:first-child .share-option-btn{padding:20px 0 10px}.share-options-bar .share-options .share-option:last-child .share-option-btn{padding:10px 0 20px}.share-options-bar .share-options .share-option .share-option-btn{color:#6e7681;display:block;width:100%;padding:10px 0}.share-options-bar .share-options .share-option .share-option-btn .fa{margin-right:15px}.share-options-mask{position:fixed;top:0;left:0;width:100%;height:100%;display:none;z-index:30}@media only screen and (max-width:767px){.share-options-bar{width:100%}}@media only screen and (min-width:768px) and (max-width:1023px){.share-options-bar[data-behavior="3"],.share-options-bar[data-behavior="1"],.share-options-bar[data-behavior="2"]{width:calc(100% - 75px);left:75px}.share-options-bar[data-behavior="4"],.share-options-bar[data-behavior="5"],.share-options-bar[data-behavior="6"]{width:100%}}@media only screen and (min-width:1024px){.share-options-bar[data-behavior="1"],.share-options-bar[data-behavior="2"]{width:calc(100% - 250px);left:250px}.share-options-bar[data-behavior="3"]{width:calc(100% - 75px);left:75px}.share-options-bar[data-behavior="4"],.share-options-bar[data-behavior="5"],.share-options-bar[data-behavior="6"]{width:100%}}.tag,a.tag{display:inline-block;background:#fff;width:auto;height:auto;border-radius:3px;letter-spacing:.01em;cursor:pointer;margin:0 4px 7px 0}.tag--default,a.tag--default{color:#9eabb3!important;border:1px solid #9eabb3;font-size:1.3rem;padding:4.5px 15px}.tag--default:hover,a.tag--default:hover{color:#738691!important;border:1px solid #738691;text-decoration:none}.tag--success,a.tag--success{color:#4dc657!important;border:1px solid #4dc657}.tag--success:hover,a.tag--success:hover{color:#309639!important;border:1px solid #309639}.tag--primary,a.tag--primary{color:#349ef3!important;border:1px solid #349ef3}.tag--primary:hover,a.tag--primary:hover{color:#0c78ce!important;border:1px solid #0c78ce}.tag--danger,a.tag--danger{color:#f5311d!important;border:1px solid #f5311d}.tag--danger:hover,a.tag--danger:hover{color:#bd1908!important;border:1px solid #bd1908}.tag--small,a.tag--small{font-size:1.3rem;padding:2px 10px}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-xsmall{font-size:1rem!important}.text-small{font-size:1.3rem!important}.text-medium{font-size:1.5rem!important}.text-base{font-size:1.6rem!important}.text-large{font-size:1.7rem!important}.text-xlarge{font-size:1.8rem!important}.text-strong{font-weight:700!important}.text-regular{font-weight:400!important}.text-light{font-weight:300!important}.text-italic{font-style:italic!important}.text-underline,.text-underline-hover:hover{text-decoration:underline!important}.text-color-base{color:#5d686f!important}.text-color-light{color:#9eabb3!important}.text-color-link{color:#349ef3!important}.font-merryweather{font-family:Merriweather,serif}.tooltip,[data-tooltip]{position:relative;cursor:pointer}.tooltip:before,[data-tooltip]:before{z-index:1000;border:6px solid transparent;background:0 0;content:""}.tooltip:after,[data-tooltip]:after{z-index:1000;padding:8px;min-width:180px;background-color:rgba(0,0,20,.93);color:#fff;content:attr(data-tooltip);font-size:.93em;line-height:1.9em;border-radius:5px}.tooltip:after,.tooltip:before,[data-tooltip]:after,[data-tooltip]:before{position:absolute;visibility:hidden;opacity:0;filter:alpha(opacity=0);-webkit-transition:opacity .2s ease-in-out,visibility .2s ease-in-out,-webkit-transform .2s cubic-bezier(.71,1.7,.77,1.24);-moz-transition:opacity .2s ease-in-out,visibility .2s ease-in-out,-moz-transform .2s cubic-bezier(.71,1.7,.77,1.24);transition:opacity .2s ease-in-out,visibility .2s ease-in-out,transform .2s cubic-bezier(.71,1.7,.77,1.24);-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);pointer-events:none}.tooltip:focus:after,.tooltip:focus:before,.tooltip:hover:after,.tooltip:hover:before,[data-tooltip]:focus:after,[data-tooltip]:focus:before,[data-tooltip]:hover:after,[data-tooltip]:hover:before{visibility:visible;opacity:1;filter:alpha(opacity=100)}.tooltip--top:before,.tooltip:before,[data-tooltip]:before{margin-bottom:-12px;border-top-color:rgba(0,0,20,.93)}.tooltip--top:after,.tooltip:after,[data-tooltip]:after{margin-left:-91px}.tooltip--top:after,.tooltip--top:before,.tooltip:after,.tooltip:before,[data-tooltip]:after,[data-tooltip]:before{bottom:100%;left:calc(50% - (15px / 2))}.tooltip--top:focus:after,.tooltip--top:focus:before,.tooltip--top:hover:after,.tooltip--top:hover:before,.tooltip:focus:after,.tooltip:focus:before,.tooltip:hover:after,.tooltip:hover:before,[data-tooltip]:focus:after,[data-tooltip]:focus:before,[data-tooltip]:hover:after,[data-tooltip]:hover:before{-webkit-transform:translateY(-12px);-moz-transform:translateY(-12px);-ms-transform:translateY(-12px);-o-transform:translateY(-12px);transform:translateY(-12px)}.tooltip--left:before{margin-left:0;margin-right:-12px;margin-bottom:0;border-top-color:transparent;border-left-color:rgba(0,0,20,.93)}.tooltip--left:after{margin-left:0;margin-bottom:-15px}.tooltip--left:after,.tooltip--left:before{right:100%;bottom:calc(50% - (15px / 2));left:auto}.tooltip--left:focus:after,.tooltip--left:focus:before,.tooltip--left:hover:after,.tooltip--left:hover:before{-webkit-transform:translateX(-12px);-moz-transform:translateX(-12px);-ms-transform:translateX(-12px);-o-transform:translateX(-12px);transform:translateX(-12px)}.tooltip--bottom:before{margin-top:-12px;margin-bottom:0;border-top-color:transparent;border-bottom-color:rgba(0,0,20,.93)}.tooltip--bottom:after,.tooltip--bottom:before{top:100%;bottom:auto;left:calc(50% - (15px / 2))}.tooltip--bottom:focus:after,.tooltip--bottom:focus:before,.tooltip--bottom:hover:after,.tooltip--bottom:hover:before{-webkit-transform:translateY(12px);-moz-transform:translateY(12px);-ms-transform:translateY(12px);-o-transform:translateY(12px);transform:translateY(12px)}.tooltip--right:before{margin-bottom:0;margin-left:-12px;border-top-color:transparent;border-right-color:rgba(0,0,20,.93)}.tooltip--right:after{margin-left:0;margin-bottom:-15px}.tooltip--right:after,.tooltip--right:before{bottom:calc(50% - (15px / 2));left:100%;right:auto}.tooltip--right:focus:after,.tooltip--right:focus:before,.tooltip--right:hover:after,.tooltip--right:hover:before{-webkit-transform:translateX(12px);-moz-transform:translateX(12px);-ms-transform:translateX(12px);-o-transform:translateX(12px);transform:translateX(12px)}.video-container{position:relative;height:0;overflow:hidden;padding-bottom:56.25%;margin:0 0 1.75em}.video-container embed,.video-container iframe,.video-container object{position:absolute;top:0;left:0;width:100%;height:100%;margin-top:0}#algolia-search-modal{display:none}#algolia-search-modal .search-icon{position:absolute;top:15px;left:15px;color:#5d686f}#algolia-search-modal .media-content{font-size:.95em}#algolia-search-modal .search-input{box-sizing:border-box;padding:0 130px 0 25px;margin:0}#algolia-search-modal .modal-header{padding-bottom:8px}#algolia-search-modal .modal-body{padding-top:15px;height:calc(100% - 100px - 15px)}#algolia-search-modal .searchby-algolia-logo,#algolia-search-modal .searchby-algolia-text{display:inline-block;vertical-align:top;height:20px}#algolia-search-modal .media:nth-child(n+2){padding-top:15px}#algolia-search-modal hr{margin-top:0}#algolia-search-modal .results-count{line-height:50px;color:#5d686f}#algolia-search-modal .searchby-algolia{position:absolute;top:15px;right:45px}#algolia-search-modal .searchby-algolia-text{line-height:20px}#algolia-search-modal .no-result{display:none;position:relative;top:50%;transform:translateY(-50%)}pre>code{background:#f7f8f8;color:#333}pre>code.codeblock{overflow-x:auto}code{background-color:#f7f8f8}.codeblock--tabbed figcaption .tab.active{background:#349ef3;color:#fff}.codeblock,figure.highlight{color:#333}.codeblock figcaption,figure.highlight figcaption{background:#f7f8f8;color:#999}.codeblock .gutter,figure.highlight .gutter{border-right-color:#e6e6e6}.codeblock .gutter .line,figure.highlight .gutter .line{color:#aaa}.codeblock .comment,figure.highlight .comment{color:#969896}.codeblock .string,figure.highlight .string{color:#183691}.codeblock .keyword,figure.highlight .keyword{color:#a71d5d}.codeblock.apacheconf .code .attribute,.codeblock.apacheconf .code .cbracket,.codeblock.apacheconf .code .common,.codeblock.apacheconf .code .keyword,.codeblock.apacheconf .code .nomarkup,.codeblock.apacheconf .code .variable,figure.highlight.apacheconf .code .attribute,figure.highlight.apacheconf .code .cbracket,figure.highlight.apacheconf .code .common,figure.highlight.apacheconf .code .keyword,figure.highlight.apacheconf .code .nomarkup,figure.highlight.apacheconf .code .variable{color:#0086b3}.codeblock.apacheconf .code .sqbracket,figure.highlight.apacheconf .code .sqbracket{color:#df5000}.codeblock.apacheconf .code .section,.codeblock.apacheconf .code .tag,figure.highlight.apacheconf .code .section,figure.highlight.apacheconf .code .tag{color:#63a35c}.codeblock.bash .code .shebang,figure.highlight.bash .code .shebang{color:#969896}.codeblock.bash .code .built_in,.codeblock.bash .code .literal,figure.highlight.bash .code .built_in,figure.highlight.bash .code .literal{color:#0086b3}.codeblock.bash .code .variable,figure.highlight.bash .code .variable{color:#333}.codeblock.bash .code .title,.codeblock.coffeescript .code .title,figure.highlight.bash .code .title,figure.highlight.coffeescript .code .title{color:#795da3}.codeblock.coffeescript .code .built_in,.codeblock.coffeescript .code .literal,.codeblock.coffeescript .code .number,figure.highlight.coffeescript .code .built_in,figure.highlight.coffeescript .code .literal,figure.highlight.coffeescript .code .number{color:#0086b3}.codeblock.coffeescript .code .attribute,.codeblock.coffeescript .code .reserved,figure.highlight.coffeescript .code .attribute,figure.highlight.coffeescript .code .reserved{color:#1d3e81}.codeblock.c .code .preprocessor,.codeblock.coffeescript .code .attribute,.codeblock.coffeescript .code .regexp,.codeblock.coffeescript .code .subst,.codeblock.cpp .code .preprocessor,figure.highlight.c .code .preprocessor,figure.highlight.coffeescript .code .attribute,figure.highlight.coffeescript .code .regexp,figure.highlight.coffeescript .code .subst,figure.highlight.cpp .code .preprocessor{color:#df5000}.codeblock.c .code .meta-keyword,.codeblock.cpp .code .meta-keyword,figure.highlight.c .code .meta-keyword,figure.highlight.cpp .code .meta-keyword{color:#a71d5d}.codeblock.c .code .title,.codeblock.cpp .code .title,figure.highlight.c .code .title,figure.highlight.cpp .code .title{color:#795da3}.codeblock.c .code .built_in,.codeblock.c .code .number,.codeblock.cpp .code .built_in,.codeblock.cpp .code .number,figure.highlight.c .code .built_in,figure.highlight.c .code .number,figure.highlight.cpp .code .built_in,figure.highlight.cpp .code .number{color:#0086b3}.codeblock.cs .code .preprocessor,.codeblock.cs .code .preprocessor .keyword,figure.highlight.cs .code .preprocessor,figure.highlight.cs .code .preprocessor .keyword{color:#333}.codeblock.cs .code .title,figure.highlight.cs .code .title{color:#795da3}.codeblock.cs .code .built_in,.codeblock.cs .code .number,figure.highlight.cs .code .built_in,figure.highlight.cs .code .number{color:#0086b3}.codeblock.cs .code .doctag,.codeblock.cs .code .xmlDocTag,figure.highlight.cs .code .doctag,figure.highlight.cs .code .xmlDocTag{color:#63a35c}.codeblock.css .code .at_rule,.codeblock.css .code .important,.codeblock.css .code .meta,figure.highlight.css .code .at_rule,figure.highlight.css .code .important,figure.highlight.css .code .meta{color:#a71d5d}.codeblock.css .code .attribute,.codeblock.css .code .function,.codeblock.css .code .hexcolor,.codeblock.css .code .number,figure.highlight.css .code .attribute,figure.highlight.css .code .function,figure.highlight.css .code .hexcolor,figure.highlight.css .code .number{color:#0086b3}.codeblock.css .code .attr_selector,.codeblock.css .code .value,figure.highlight.css .code .attr_selector,figure.highlight.css .code .value{color:#333}.codeblock.css .code .class,.codeblock.css .code .id,.codeblock.css .code .pseudo,.codeblock.css .code .selector-pseudo,figure.highlight.css .code .class,figure.highlight.css .code .id,figure.highlight.css .code .pseudo,figure.highlight.css .code .selector-pseudo{color:#795da3}.codeblock.css .code .selector-tag,.codeblock.css .code .tag,figure.highlight.css .code .selector-tag,figure.highlight.css .code .tag{color:#63a35c}.codeblock.diff .code .chunk,.codeblock.diff .code .meta,figure.highlight.diff .code .chunk,figure.highlight.diff .code .meta{color:#795da3;font-weight:700}.codeblock.diff .code .addition,figure.highlight.diff .code .addition{color:#55a532;background-color:#eaffea}.codeblock.diff .code .deletion,figure.highlight.diff .code .deletion{color:#bd2c00;background-color:#ffecec}.codeblock.http .code .attr,.codeblock.http .code .attribute,figure.highlight.http .code .attr,figure.highlight.http .code .attribute{color:#183691}.codeblock.http .code .literal,figure.highlight.http .code .literal{color:#0086b3}.codeblock.http .code .request,figure.highlight.http .code .request{color:#a71d5d}.codeblock.ini .code .section,.codeblock.ini .code .title,figure.highlight.ini .code .section,figure.highlight.ini .code .title{color:#795da3}.codeblock.ini .code .attr,.codeblock.ini .code .setting,figure.highlight.ini .code .attr,figure.highlight.ini .code .setting{color:#a71d5d}.codeblock.ini .code .keyword,.codeblock.ini .code .value,figure.highlight.ini .code .keyword,figure.highlight.ini .code .value{color:#333}.codeblock.java .code .title,figure.highlight.java .code .title{color:#795da3}.codeblock.java .code .javadoc,figure.highlight.java .code .javadoc{color:#969896}.codeblock.java .code .annotation,.codeblock.java .code .javadoctag,.codeblock.java .code .meta,figure.highlight.java .code .annotation,figure.highlight.java .code .javadoctag,figure.highlight.java .code .meta{color:#a71d5d}.codeblock.java .code .number,figure.highlight.java .code .number{color:#0086b3}.codeblock.java .code .params,figure.highlight.java .code .params{color:#1d3e81}.codeblock.js .code .built_in,.codeblock.js .code .title,figure.highlight.js .code .built_in,figure.highlight.js .code .title{color:#795da3}.codeblock.js .code .javadoc,figure.highlight.js .code .javadoc{color:#969896}.codeblock.js .code .javadoctag,.codeblock.js .code .tag,figure.highlight.js .code .javadoctag,figure.highlight.js .code .tag{color:#a71d5d}.codeblock.js .code .tag .title,figure.highlight.js .code .tag .title{color:#333}.codeblock.js .code .regexp,figure.highlight.js .code .regexp{color:#df5000}.codeblock.js .code .literal,.codeblock.js .code .number,figure.highlight.js .code .literal,figure.highlight.js .code .number{color:#0086b3}.codeblock.json .code .attribute,figure.highlight.json .code .attribute{color:#183691}.codeblock.json .code .literal,.codeblock.json .code .number,figure.highlight.json .code .literal,figure.highlight.json .code .number{color:#0086b3}.codeblock.mak .code .constant,figure.highlight.mak .code .constant{color:#333}.codeblock.mak .code .title,figure.highlight.mak .code .title{color:#795da3}.codeblock.mak .code .keyword,.codeblock.mak .code .meta-keyword,figure.highlight.mak .code .keyword,figure.highlight.mak .code .meta-keyword{color:#0086b3}.codeblock.md .code .blockquote,.codeblock.md .code .emphasis,.codeblock.md .code .link_label,.codeblock.md .code .quote,.codeblock.md .code .section,.codeblock.md .code .strong,.codeblock.md .code .value,figure.highlight.md .code .blockquote,figure.highlight.md .code .emphasis,figure.highlight.md .code .link_label,figure.highlight.md .code .quote,figure.highlight.md .code .section,figure.highlight.md .code .strong,figure.highlight.md .code .value{color:#183691}.codeblock.md .code .code,.codeblock.md .code .link_reference,.codeblock.md .code .symbol,figure.highlight.md .code .code,figure.highlight.md .code .link_reference,figure.highlight.md .code .symbol{color:#0086b3}.codeblock.md .code .link,.codeblock.md .code .link_url,figure.highlight.md .code .link,figure.highlight.md .code .link_url{text-decoration:underline}.codeblock.nginx .code .attribute,.codeblock.nginx .code .title,figure.highlight.nginx .code .attribute,figure.highlight.nginx .code .title{color:#a71d5d}.codeblock.nginx .code .built_in,.codeblock.nginx .code .literal,figure.highlight.nginx .code .built_in,figure.highlight.nginx .code .literal{color:#0086b3}.codeblock.nginx .code .regexp,figure.highlight.nginx .code .regexp{color:#183691}.codeblock.nginx .code .variable,figure.highlight.nginx .code .variable{color:#333}.codeblock.objectivec .code .meta,.codeblock.objectivec .code .preprocessor,figure.highlight.objectivec .code .meta,figure.highlight.objectivec .code .preprocessor{color:#a71d5d}.codeblock.objectivec .code .meta .title,.codeblock.objectivec .code .preprocessor .title,figure.highlight.objectivec .code .meta .title,figure.highlight.objectivec .code .preprocessor .title{color:#df5000}.codeblock.objectivec .code .meta-string,figure.highlight.objectivec .code .meta-string{color:#183691}.codeblock.objectivec .code .title,figure.highlight.objectivec .code .title{color:#795da3}.codeblock.objectivec .code .built_in,.codeblock.objectivec .code .literal,.codeblock.objectivec .code .number,figure.highlight.objectivec .code .built_in,figure.highlight.objectivec .code .literal,figure.highlight.objectivec .code .number{color:#0086b3}.codeblock.perl .code .sub,.codeblock.perl .code .title,figure.highlight.perl .code .sub,figure.highlight.perl .code .title{color:#795da3}.codeblock.perl .code .regexp,figure.highlight.perl .code .regexp{color:#df5000}.codeblock.php .code .doctag,.codeblock.php .code .phpdoc,figure.highlight.php .code .doctag,figure.highlight.php .code .phpdoc{color:#a71d5d}.codeblock.php .code .regexp,figure.highlight.php .code .regexp{color:#df5000}.codeblock.php .code .literal,.codeblock.php .code .number,figure.highlight.php .code .literal,figure.highlight.php .code .number{color:#0086b3}.codeblock.php .code .title,.codeblock.python .code .decorator,.codeblock.python .code .meta,.codeblock.python .code .title,figure.highlight.php .code .title,figure.highlight.python .code .decorator,figure.highlight.python .code .meta,figure.highlight.python .code .title{color:#795da3}.codeblock.python .code .number,figure.highlight.python .code .number{color:#0086b3}.codeblock.ruby .code .parent,.codeblock.ruby .code .title,figure.highlight.ruby .code .parent,figure.highlight.ruby .code .title{color:#795da3}.codeblock.ruby .code .constant,.codeblock.ruby .code .number,.codeblock.ruby .code .prompt,.codeblock.ruby .code .subst .keyword,.codeblock.ruby .code .symbol,figure.highlight.ruby .code .constant,figure.highlight.ruby .code .number,figure.highlight.ruby .code .prompt,figure.highlight.ruby .code .subst .keyword,figure.highlight.ruby .code .symbol{color:#0086b3}.codeblock.sql .built_in,figure.highlight.sql .built_in{color:#a71d5d}.codeblock.sql .number,figure.highlight.sql .number{color:#0086b3}.codeblock.html .tag,.codeblock.xml .tag,figure.highlight.html .tag,figure.highlight.xml .tag{color:#333}.codeblock.html .value,.codeblock.xml .value,figure.highlight.html .value,figure.highlight.xml .value{color:#183691}.codeblock.html .attr,.codeblock.html .attribute,.codeblock.xml .attr,.codeblock.xml .attribute,figure.highlight.html .attr,figure.highlight.html .attribute,figure.highlight.xml .attr,figure.highlight.xml .attribute{color:#795da3}.codeblock.html .name,.codeblock.html .title,.codeblock.xml .name,.codeblock.xml .title,figure.highlight.html .name,figure.highlight.html .title,figure.highlight.xml .name,figure.highlight.xml .title{color:#63a35c}.codeblock.puppet .title,figure.highlight.puppet .title{color:#795da3}.codeblock.puppet .function,figure.highlight.puppet .function{color:#0086b3}.codeblock.puppet .name,figure.highlight.puppet .name{color:#a71d5d}.codeblock.puppet .attr,figure.highlight.puppet .attr{color:#0086b3}.codeblock.less .at_rule,.codeblock.less .tag,figure.highlight.less .at_rule,figure.highlight.less .tag{color:#a71d5d}.codeblock.less .attribute,.codeblock.less .function,.codeblock.less .hexcolor,.codeblock.less .number,figure.highlight.less .attribute,figure.highlight.less .function,figure.highlight.less .hexcolor,figure.highlight.less .number{color:#0086b3}.codeblock.less .built_in,figure.highlight.less .built_in{color:#df5000}.codeblock.less .class,.codeblock.less .id,.codeblock.less .pseudo,.codeblock.less .selector-class,.codeblock.less .selector-id,.codeblock.less .selector-tag,figure.highlight.less .class,figure.highlight.less .id,figure.highlight.less .pseudo,figure.highlight.less .selector-class,figure.highlight.less .selector-id,figure.highlight.less .selector-tag{color:#795da3}.codeblock.scss .at_rule,.codeblock.scss .important,.codeblock.scss .tag,figure.highlight.scss .at_rule,figure.highlight.scss .important,figure.highlight.scss .tag{color:#a71d5d}.codeblock.scss .attribute,.codeblock.scss .function,.codeblock.scss .hexcolor,.codeblock.scss .number,figure.highlight.scss .attribute,figure.highlight.scss .function,figure.highlight.scss .hexcolor,figure.highlight.scss .number{color:#0086b3}.codeblock.scss .variable,figure.highlight.scss .variable{color:#333}.codeblock.scss .built_in,figure.highlight.scss .built_in{color:#df5000}.codeblock.scss .class,.codeblock.scss .id,.codeblock.scss .preprocessor,.codeblock.scss .pseudo,.codeblock.scss .selector-class,.codeblock.scss .selector-id,figure.highlight.scss .class,figure.highlight.scss .id,figure.highlight.scss .preprocessor,figure.highlight.scss .pseudo,figure.highlight.scss .selector-class,figure.highlight.scss .selector-id{color:#795da3}.codeblock.scss .selector-tag,.codeblock.scss .tag,figure.highlight.scss .selector-tag,figure.highlight.scss .tag{color:#63a35c}.codeblock.stylus .at_rule,figure.highlight.stylus .at_rule{color:#a71d5d}.codeblock.stylus .selector-tag,.codeblock.stylus .tag,figure.highlight.stylus .selector-tag,figure.highlight.stylus .tag{color:#63a35c}.codeblock.stylus .attribute,.codeblock.stylus .hexcolor,.codeblock.stylus .number,.codeblock.stylus .params,figure.highlight.stylus .attribute,figure.highlight.stylus .hexcolor,figure.highlight.stylus .number,figure.highlight.stylus .params{color:#0086b3}.codeblock.stylus .class,.codeblock.stylus .id,.codeblock.stylus .pseudo,.codeblock.stylus .selector-class,.codeblock.stylus .selector-id,.codeblock.stylus .selector-pseudo,.codeblock.stylus .title,figure.highlight.stylus .class,figure.highlight.stylus .id,figure.highlight.stylus .pseudo,figure.highlight.stylus .selector-class,figure.highlight.stylus .selector-id,figure.highlight.stylus .selector-pseudo,figure.highlight.stylus .title{color:#795da3}.codeblock.go .typename,figure.highlight.go .typename{color:#a71d5d}.codeblock.go .built_in,.codeblock.go .constant,figure.highlight.go .built_in,figure.highlight.go .constant{color:#0086b3}.codeblock.swift .preprocessor,figure.highlight.swift .preprocessor{color:#a71d5d}.codeblock.swift .title,figure.highlight.swift .title{color:#795da3}.codeblock.swift .built_in,.codeblock.swift .number,.codeblock.swift .type,figure.highlight.swift .built_in,figure.highlight.swift .number,figure.highlight.swift .type{color:#0086b3}.codeblock.yml .line .attr,figure.highlight.yml .line .attr{color:#63a35c}.codeblock.yml .line,.codeblock.yml .literal,.codeblock.yml .meta,.codeblock.yml .string,.codeblock.yml .type,figure.highlight.yml .line,figure.highlight.yml .literal,figure.highlight.yml .meta,figure.highlight.yml .string,figure.highlight.yml .type{color:#183691}.codeblock.yml .number,figure.highlight.yml .number{color:#0086b3} \ No newline at end of file
diff --git a/static/js/script-qi9wbxp2ya2j6p7wx1i6tgavftewndznf4v0hy2gvivk1rxgc3lm7njqb6bz.min.js b/static/js/script-qi9wbxp2ya2j6p7wx1i6tgavftewndznf4v0hy2gvivk1rxgc3lm7njqb6bz.min.js
new file mode 100644
index 0000000..5c597db
--- /dev/null
+++ b/static/js/script-qi9wbxp2ya2j6p7wx1i6tgavftewndznf4v0hy2gvivk1rxgc3lm7njqb6bz.min.js
@@ -0,0 +1 @@
+!function(a){"use strict";var b=function(){this.$openBtn=a("#sidebar, #header").find("a[href*='#about']"),this.$closeBtn=a("#about-btn-close"),this.$blog=a("#blog"),this.$about=a("#about"),this.$aboutCard=a("#about-card")};b.prototype={run:function(){var a=this;a.$openBtn.click(function(b){b.preventDefault(),a.play()}),a.$closeBtn.click(function(b){b.preventDefault(),a.playBack()})},play:function(){var a=this;a.$blog.fadeOut(),a.$about.fadeIn(),setTimeout(function(){a.dropAboutCard()},300)},playBack:function(){var a=this;a.liftAboutCard(),setTimeout(function(){a.$blog.fadeIn()},500),setTimeout(function(){a.$about.fadeOut()},500)},dropAboutCard:function(){var b=this,c=b.$aboutCard.innerHeight(),d=a(window).height()/2-c/2+c;c+30>a(window).height()&&(d=c),b.$aboutCard.css("top","0px").css("top","-"+c+"px").show(500,function(){b.$aboutCard.animate({top:"+="+d+"px"})})},liftAboutCard:function(){var b=this,c=b.$aboutCard.innerHeight(),d=a(window).height()/2-c/2+c;c+30>a(window).height()&&(d=c),b.$aboutCard.animate({top:"-="+d+"px"},500,function(){b.$aboutCard.hide(),b.$aboutCard.removeAttr("style")})}},a(document).ready(function(){(new b).run()})}(jQuery),function(a){"use strict";var b=function(b){this.$form=a(b).find("#filter-form"),this.$searchInput=a(b).find("input[name=date]"),this.$archiveResult=a(b).find(".archive-result"),this.$postsYear=a(b).find(".archive-year"),this.$postsMonth=a(b).find(".archive-month"),this.$postsDay=a(b).find(".archive-day"),this.postsYear=b+" .archive-year",this.postsMonth=b+" .archive-month",this.postsDay=b+" .archive-day",this.messages={zero:this.$archiveResult.data("message-zero"),one:this.$archiveResult.data("message-one"),other:this.$archiveResult.data("message-other")}};b.prototype={run:function(){var a=this;a.$searchInput.keyup(function(){a.filter(a.sliceDate(a.getSearch()))}),a.$form.submit(function(a){a.preventDefault()})},getSearch:function(){return this.$searchInput.val().replace(/([\/|.|-])/g,"").toLowerCase()},sliceDate:function(a){return[a.slice(0,4),a.slice(4,6),a.slice(6)]},filter:function(a){var b;""===a[0]?(this.showAll(),this.showResult(-1)):(b=this.countPosts(a),this.hideAll(),this.showResult(b),b>0&&this.showPosts(a))},showResult:function(a){-1===a?this.$archiveResult.html("").hide():0===a?this.$archiveResult.html(this.messages.zero).show():1===a?this.$archiveResult.html(this.messages.one).show():this.$archiveResult.html(this.messages.other.replace(/\{n\}/,a)).show()},countPosts:function(b){return a(this.postsDay+"[data-date^="+b[0]+b[1]+b[2]+"]").length},showPosts:function(b){a(this.postsYear+"[data-date^="+b[0]+"]").show(),a(this.postsMonth+"[data-date^="+b[0]+b[1]+"]").show(),a(this.postsDay+"[data-date^="+b[0]+b[1]+b[2]+"]").show()},showAll:function(){this.$postsYear.show(),this.$postsMonth.show(),this.$postsDay.show()},hideAll:function(){this.$postsYear.hide(),this.$postsMonth.hide(),this.$postsDay.hide()}},a(document).ready(function(){if(a("#archives").length){new b("#archives").run()}})}(jQuery),function(a){"use strict";var b=function(b){this.$form=a(b).find("#filter-form"),this.$inputSearch=a(b).find("input[name=category]"),this.$archiveResult=a(b).find(".archive-result"),this.$posts=a(b).find(".archive"),this.$categories=a(b).find(".category-anchor"),this.posts=b+" .archive",this.categories=b+" .category-anchor",this.dataCategory="category",this.dataParentCategories="parent-categories",this.messages={zero:this.$archiveResult.data("message-zero"),one:this.$archiveResult.data("message-one"),other:this.$archiveResult.data("message-other")}};b.prototype={run:function(){var a=this;a.$inputSearch.keyup(function(){a.filter(a.getSearch())}),a.$form.submit(function(a){a.preventDefault()})},getSearch:function(){return this.$inputSearch.val().toLowerCase()},filter:function(a){""===a?(this.showAll(),this.showResult(-1)):(this.hideAll(),this.showPosts(a),this.showResult(this.countCategories(a)))},showResult:function(a){-1===a?this.$archiveResult.html("").hide():0===a?this.$archiveResult.html(this.messages.zero).show():1===a?this.$archiveResult.html(this.messages.one).show():this.$archiveResult.html(this.messages.other.replace(/\{n\}/,a)).show()},countCategories:function(b){return a(this.posts+"[data-"+this.dataCategory+"*='"+b+"']").length},showPosts:function(b){var c,d=this,e=d.categories+"[data-"+d.dataCategory+"*='"+b+"']",f=d.posts+"[data-"+d.dataCategory+"*='"+b+"']";d.countCategories(b)>0&&a(e+"[data-"+d.dataParentCategories+"]").length&&a(e).each(function(){c=a(this).attr("data-"+d.dataParentCategories).split(","),c.forEach(function(b){var c="[data-"+d.dataCategory+"='"+b+"']";a(d.categories+c).show(),a(d.posts+c).show(),a(d.posts+c+" > .archive-posts > .archive-post").hide()})}),a(e).show(),a(f).show(),a(f+" > .archive-posts > .archive-post").show()},showAll:function(){this.$categories.show(),this.$posts.show(),a(this.posts+" > .archive-posts > .archive-post").show()},hideAll:function(){this.$categories.hide(),this.$posts.hide()}},a(document).ready(function(){if(a("#categories-archives").length){new b("#categories-archives").run()}})}(jQuery),function(a){"use strict";var b=function(b){this.$codeBlocks=a(b)};b.prototype={run:function(){var b=this;b.resize(),a(window).smartresize(function(){b.resize()})},resize:function(){this.$codeBlocks.each(function(){var b=a(this).find(".gutter"),c=a(this).find(".code"),d=c.width()-c.innerWidth(),e=a(this).outerWidth()-b.outerWidth()+d;c.css("width",e),c.children("pre").css("width",e)})}},a(document).ready(function(){a.fn.hasHorizontalScrollBar=function(){return this.get(0).scrollWidth>this.innerWidth()},new b("figure.highlight").run()})}(jQuery),function(a){"use strict";a(document).ready(function(){function b(){var b=!0,c=null;a(window).height()>480&&(b=!1,c={width:70,height:70}),a(".fancybox").fancybox({maxWidth:900,maxHeight:800,fitToView:!0,width:"50%",height:"50%",autoSize:!0,arrows:b,closeClick:!1,openEffect:"elastic",closeEffect:"elastic",prevEffect:"none",nextEffect:"none",padding:"0",helpers:{thumbs:c,overlay:{css:{overflow:"hidden",background:"rgba(0, 0, 0, 0.85)"}}},afterLoad:function(){setTimeout(function(){a(".fancybox-next > span, .fancybox-prev > span").css("visibility","visible")},400)}})}b(),a(window).smartresize(function(){b()})})}(jQuery),function(a){"use strict";var b=function(){this.$header=a("#header"),this.headerHeight=this.$header.height(),this.headerUpCSSClass="header-up",this.delta=5,this.lastScrollTop=0};b.prototype={run:function(){var b,c=this;a(window).scroll(function(){b=!0}),setInterval(function(){b&&(c.animate(),b=!1)},250)},animate:function(){var b=a(window).scrollTop();Math.abs(this.lastScrollTop-b)<=this.delta||(b>this.lastScrollTop&&b>this.headerHeight?this.$header.addClass(this.headerUpCSSClass):b+a(window).height()<a(document).height()&&this.$header.removeClass(this.headerUpCSSClass),this.lastScrollTop=b)}},a(document).ready(function(){(new b).run()})}(jQuery),function(a){"use strict";var b=function(){this.photosBox=".photo-box",this.$images=a(this.photosBox+" img")};b.prototype={run:function(){var b=this;b.resizeImages(),a(window).smartresize(function(){b.resizeImages()})},resizeImages:function(){var b,c,d,e,f,g;this.$images.each(function(){g=a(this),b=g.parent().parent().width(),c=g.parent().parent().innerHeight(),d=g.width(),e=g.height(),e<c&&(f=d/e,g.css({height:c,width:c*f}),g.parent().css({left:"-"+(c*f/2-b/2)+"px"})),d=g.width(),e=g.height(),d<b&&(f=e/d,g.css({width:b,height:b*f}),g.parent().css({top:"-"+(e/2-c/2)+"px"})),e>c&&g.parent().css({top:"-"+(e/2-c/2)+"px"})})}},a(document).ready(function(){if(a(".image-gallery").length){var c=new b;setTimeout(function(){c.run()},500)}})}(jQuery),function(a){"use strict";var b=function(){this.$postBottomBar=a(".post-bottom-bar"),this.$postFooter=a(".post-actions-wrap"),this.$header=a("#header"),this.delta=1,this.lastScrollTop=0};b.prototype={run:function(){var b,c=this;c.swipePostBottomBar(),a(window).scroll(function(){b=!0}),setInterval(function(){b&&(c.swipePostBottomBar(),b=!1)},250)},swipePostBottomBar:function(){var b=a(window).scrollTop(),c=this.$postFooter.offset().top;this.lastScrollTop>b&&(c+this.$postFooter.height()>b+a(window).height()||c<b+this.$header.height())?this.$postBottomBar.slideDown():this.$postBottomBar.slideUp(),this.lastScrollTop=b}},a(document).ready(function(){if(a(".post-bottom-bar").length){(new b).run()}})}(jQuery),function(a){"use strict";var b=function(){this.$openButton=a(".open-algolia-search"),this.$searchModal=a("#algolia-search-modal"),this.$closeButton=this.$searchModal.find(".close-button"),this.$searchForm=a("#algolia-search-form"),this.$searchInput=a("#algolia-search-input"),this.$results=this.$searchModal.find(".results"),this.$noResults=this.$searchModal.find(".no-result"),this.$resultsCount=this.$searchModal.find(".results-count"),this.algolia=algoliaIndex};b.prototype={run:function(){var b=this;b.$openButton.click(function(){b.open()}),a(document).keyup(function(a){var c=a.target||a.srcElement,d=c.tagName.toUpperCase();"INPUT"!==d&&"TEXTAREA"!==d&&(83!==a.keyCode||b.$searchModal.is(":visible")||b.open())}),b.$searchModal.click(function(a){a.target===this&&b.close()}),b.$closeButton.click(function(){b.close()}),a(document).keyup(function(a){27===a.keyCode&&b.$searchModal.is(":visible")&&b.close()}),b.$searchForm.submit(function(a){a.preventDefault(),b.search(b.$searchInput.val())})},open:function(){this.showSearchModal(),this.showOverlay(),this.$searchInput.focus()},close:function(){this.hideSearchModal(),this.hideOverlay(),this.$searchInput.blur()},search:function(a){var b=this;this.algolia.search(a,function(a,c){a||(b.showResults(c.hits),b.showResultsCount(c.nbHits))})},showResults:function(a){var b="";a.forEach(function(a){var c=window.navigator.userLanguage||window.navigator.language||a.lang;b+='<div class="media">',a.thumbnailImageUrl&&(b+='<div class="media-left">',b+='<a class="link-unstyled" href="'+(a.link||a.permalink)+'">',b+='<img class="media-image" src="'+a.thumbnailImageUrl+'" width="90" height="90"/>',b+="</a>",b+="</div>"),b+='<div class="media-body">',b+='<a class="link-unstyled" href="'+(a.link||a.permalink)+'">',b+='<h3 class="media-heading">'+a.title+"</h3>",b+="</a>",b+='<span class="media-meta">',b+='<span class="media-date text-small">',b+=moment(a.date).locale(c).format("ll"),b+="</span>",b+="</span>",b+='<div class="media-content hide-xs font-merryweather">'+a.excerpt+"</div>",b+="</div>",b+='<div style="clear:both;"></div>',b+="<hr>",b+="</div>"}),this.$results.html(b)},showSearchModal:function(){this.$searchModal.fadeIn()},hideSearchModal:function(){this.$searchModal.fadeOut()},showResultsCount:function(a){var b="";a<1?(b=this.$resultsCount.data("message-zero"),this.$noResults.show()):1===a?(b=this.$resultsCount.data("message-one"),this.$noResults.hide()):a>1&&(b=this.$resultsCount.data("message-other").replace(/\{n\}/,a),this.$noResults.hide()),this.$resultsCount.html(b)},showOverlay:function(){a("body").append('<div class="overlay"></div>'),a(".overlay").fadeIn(),a("body").css("overflow","hidden")},hideOverlay:function(){a(".overlay").fadeOut(function(){a(this).remove(),a("body").css("overflow","auto")})}},a(document).ready(function(){if("undefined"!=typeof algoliaIndex){(new b).run()}})}(jQuery),function(a){"use strict";var b=function(){this.$shareOptionsBar=a("#share-options-bar"),this.$openBtn=a(".btn-open-shareoptions"),this.$closeBtn=a("#btn-close-shareoptions"),this.$body=a("body")};b.prototype={run:function(){var a=this;a.$openBtn.click(function(){a.$shareOptionsBar.hasClass("opened")||(a.openShareOptions(),a.$closeBtn.show())}),a.$closeBtn.click(function(){a.$shareOptionsBar.hasClass("opened")&&(a.closeShareOptions(),a.$closeBtn.hide())})},openShareOptions:function(){var a=this;a.$shareOptionsBar.hasClass("opened")||this.$shareOptionsBar.hasClass("processing")||(a.$shareOptionsBar.addClass("processing opened"),a.$body.css("overflow","hidden"),setTimeout(function(){a.$shareOptionsBar.removeClass("processing")},250))},closeShareOptions:function(){var a=this;a.$shareOptionsBar.hasClass("opened")&&!this.$shareOptionsBar.hasClass("processing")&&(a.$shareOptionsBar.addClass("processing").removeClass("opened"),setTimeout(function(){a.$shareOptionsBar.removeClass("processing"),a.$body.css("overflow","")},250))}},a(document).ready(function(){(new b).run()})}(jQuery),function(a){"use strict";var b=function(){this.$sidebar=a("#sidebar"),this.$openBtn=a("#btn-open-sidebar"),this.$closeBtn=a("#header, #main, .post-header-cover"),this.$blog=a(".post-bottom-bar, #header, #main, .post-header-cover"),this.$body=a("body"),this.mediumScreenWidth=768};b.prototype={run:function(){var b=this;this.$openBtn.click(function(){b.$sidebar.hasClass("pushed")||b.openSidebar()}),this.$closeBtn.click(function(){b.$sidebar.hasClass("pushed")&&b.closeSidebar()}),a(window).resize(function(){a(window).width()>b.mediumScreenWidth?(b.resetSidebarPosition(),b.resetBlogPosition()):b.closeSidebar()})},openSidebar:function(){this.swipeBlogToRight(),this.swipeSidebarToRight()},closeSidebar:function(){this.swipeSidebarToLeft(),this.swipeBlogToLeft()},resetSidebarPosition:function(){this.$sidebar.removeClass("pushed")},resetBlogPosition:function(){this.$blog.removeClass("pushed")},swipeSidebarToRight:function(){var a=this;this.$sidebar.hasClass("pushed")||this.$sidebar.hasClass("processing")||(this.$sidebar.addClass("processing pushed"),this.$body.css("overflow-x","hidden"),setTimeout(function(){a.$sidebar.removeClass("processing")},250))},swipeSidebarToLeft:function(){this.$sidebar.hasClass("pushed")&&!this.$sidebar.hasClass("processing")&&(this.$sidebar.addClass("processing").removeClass("pushed processing"),this.$body.css("overflow-x","auto"))},swipeBlogToRight:function(){var a=this;this.$blog.hasClass("pushed")||this.$blog.hasClass("processing")||(this.$blog.addClass("processing pushed"),setTimeout(function(){a.$blog.removeClass("processing")},250))},swipeBlogToLeft:function(){var a=this;a.$blog.hasClass("pushed")&&!this.$blog.hasClass("processing")&&(a.$blog.addClass("processing").removeClass("pushed"),setTimeout(function(){a.$blog.removeClass("processing")},250))}},a(document).ready(function(){(new b).run()})}(jQuery),function(a,b){var c=function(a,b,c){var d;return function(){function e(){c||a.apply(f,g),d=null}var f=this,g=arguments;d?clearTimeout(d):c&&a.apply(f,g),d=setTimeout(e,b||100)}};jQuery.fn[b]=function(a){return a?this.bind("resize",c(a)):this.trigger(b)}}(jQuery,"smartresize"),function(a){"use strict";var b=function(b){this.$tabbedCodeBlocs=a(b)};b.prototype={run:function(){this.$tabbedCodeBlocs.find(".tab").click(function(){var b=a(this).parent().parent().parent(),c=b.find(".tabs-content").children("pre, .highlight");a(this).siblings().removeClass("active"),a(this).addClass("active"),c.hide(),c.eq(a(this).index()).show()})}},a(document).ready(function(){new b(".codeblock--tabbed").run()})}(jQuery),function(a){"use strict";var b=function(b){this.$form=a(b).find("#filter-form"),this.$inputSearch=a(b+" #filter-form input[name=tag]"),this.$archiveResult=a(b).find(".archive-result"),this.$tags=a(b).find(".tag"),this.$posts=a(b).find(".archive"),this.tags=b+" .tag",this.posts=b+" .archive",this.dataTag="tag",this.messages={zero:this.$archiveResult.data("message-zero"),one:this.$archiveResult.data("message-one"),other:this.$archiveResult.data("message-other")}};b.prototype={run:function(){var a=this;a.$inputSearch.keyup(function(){a.filter(a.getSearch())}),a.$form.submit(function(a){a.preventDefault()})},getSearch:function(){return this.$inputSearch.val().toLowerCase()},filter:function(a){""===a?(this.showAll(),this.showResult(-1)):(this.hideAll(),this.showPosts(a),this.showResult(this.countTags(a)))},showResult:function(a){-1===a?this.$archiveResult.html("").hide():0===a?this.$archiveResult.html(this.messages.zero).show():1===a?this.$archiveResult.html(this.messages.one).show():this.$archiveResult.html(this.messages.other.replace(/\{n\}/,a)).show()},countTags:function(b){return a(this.posts+"[data-"+this.dataTag+"*='"+b+"']").length},showPosts:function(b){a(this.tags+"[data-"+this.dataTag+"*='"+b+"']").show(),a(this.posts+"[data-"+this.dataTag+"*='"+b+"']").show()},showAll:function(){this.$tags.show(),this.$posts.show()},hideAll:function(){this.$tags.hide(),this.$posts.hide()}},a(document).ready(function(){if(a("#tags-archives").length){new b("#tags-archives").run()}})}(jQuery); \ No newline at end of file
diff --git a/static/js/script-wl33z0n6ocaypepiqrazthtivfrliqijej4rq8ek8gvrv1awftmgjuv8k4zc.min.js b/static/js/script-wl33z0n6ocaypepiqrazthtivfrliqijej4rq8ek8gvrv1awftmgjuv8k4zc.min.js
deleted file mode 100644
index b82781d..0000000
--- a/static/js/script-wl33z0n6ocaypepiqrazthtivfrliqijej4rq8ek8gvrv1awftmgjuv8k4zc.min.js
+++ /dev/null
@@ -1 +0,0 @@
-!function(a){"use strict";var b=function(){this.$openBtn=a("#sidebar, #header").find("a[href*='#about']"),this.$closeBtn=a("#about-btn-close"),this.$blog=a("#blog"),this.$about=a("#about"),this.$aboutCard=a("#about-card")};b.prototype={run:function(){var a=this;a.$openBtn.click(function(b){b.preventDefault(),a.play()}),a.$closeBtn.click(function(b){b.preventDefault(),a.playBack()})},play:function(){var a=this;a.$blog.fadeOut(),a.$about.fadeIn(),setTimeout(function(){a.dropAboutCard()},300)},playBack:function(){var a=this;a.liftAboutCard(),setTimeout(function(){a.$blog.fadeIn()},500),setTimeout(function(){a.$about.fadeOut()},500)},dropAboutCard:function(){var b=this,c=b.$aboutCard.innerHeight(),d=a(window).height()/2-c/2+c;c+30>a(window).height()&&(d=c),b.$aboutCard.css("top","0px").css("top","-"+c+"px").show(500,function(){b.$aboutCard.animate({top:"+="+d+"px"})})},liftAboutCard:function(){var b=this,c=b.$aboutCard.innerHeight(),d=a(window).height()/2-c/2+c;c+30>a(window).height()&&(d=c),b.$aboutCard.animate({top:"-="+d+"px"},500,function(){b.$aboutCard.hide(),b.$aboutCard.removeAttr("style")})}},a(document).ready(function(){var a=new b;a.run()})}(jQuery),function(a){"use strict";var b=function(b){this.$form=a(b).find("#filter-form"),this.$searchInput=a(b).find("input[name=date]"),this.$archiveResult=a(b).find(".archive-result"),this.$postsYear=a(b).find(".archive-year"),this.$postsMonth=a(b).find(".archive-month"),this.$postsDay=a(b).find(".archive-day"),this.postsYear=b+" .archive-year",this.postsMonth=b+" .archive-month",this.postsDay=b+" .archive-day",this.messages={zero:this.$archiveResult.data("message-zero"),one:this.$archiveResult.data("message-one"),other:this.$archiveResult.data("message-other")}};b.prototype={run:function(){var a=this;a.$searchInput.keyup(function(){a.filter(a.sliceDate(a.getSearch()))}),a.$form.submit(function(a){a.preventDefault()})},getSearch:function(){return this.$searchInput.val().replace(/([\/|.|-])/g,"").toLowerCase()},sliceDate:function(a){return[a.slice(0,4),a.slice(4,6),a.slice(6)]},filter:function(a){var b;""===a[0]?(this.showAll(),this.showResult(-1)):(b=this.countPosts(a),this.hideAll(),this.showResult(b),b>0&&this.showPosts(a))},showResult:function(a){a===-1?this.$archiveResult.html("").hide():0===a?this.$archiveResult.html(this.messages.zero).show():1===a?this.$archiveResult.html(this.messages.one).show():this.$archiveResult.html(this.messages.other.replace(/\{n\}/,a)).show()},countPosts:function(b){return a(this.postsDay+"[data-date^="+b[0]+b[1]+b[2]+"]").length},showPosts:function(b){a(this.postsYear+"[data-date^="+b[0]+"]").show(),a(this.postsMonth+"[data-date^="+b[0]+b[1]+"]").show(),a(this.postsDay+"[data-date^="+b[0]+b[1]+b[2]+"]").show()},showAll:function(){this.$postsYear.show(),this.$postsMonth.show(),this.$postsDay.show()},hideAll:function(){this.$postsYear.hide(),this.$postsMonth.hide(),this.$postsDay.hide()}},a(document).ready(function(){if(a("#archives").length){var c=new b("#archives");c.run()}})}(jQuery),function(a){"use strict";var b=function(b){this.$form=a(b).find("#filter-form"),this.$inputSearch=a(b).find("input[name=category]"),this.$archiveResult=a(b).find(".archive-result"),this.$posts=a(b).find(".archive"),this.$categories=a(b).find(".category-anchor"),this.posts=b+" .archive",this.categories=b+" .category-anchor",this.dataCategory="category",this.dataParentCategories="parent-categories",this.messages={zero:this.$archiveResult.data("message-zero"),one:this.$archiveResult.data("message-one"),other:this.$archiveResult.data("message-other")}};b.prototype={run:function(){var a=this;a.$inputSearch.keyup(function(){a.filter(a.getSearch())}),a.$form.submit(function(a){a.preventDefault()})},getSearch:function(){return this.$inputSearch.val().toLowerCase()},filter:function(a){""===a?(this.showAll(),this.showResult(-1)):(this.hideAll(),this.showPosts(a),this.showResult(this.countCategories(a)))},showResult:function(a){a===-1?this.$archiveResult.html("").hide():0===a?this.$archiveResult.html(this.messages.zero).show():1===a?this.$archiveResult.html(this.messages.one).show():this.$archiveResult.html(this.messages.other.replace(/\{n\}/,a)).show()},countCategories:function(b){return a(this.posts+"[data-"+this.dataCategory+"*='"+b+"']").length},showPosts:function(b){var c,d=this,e=d.categories+"[data-"+d.dataCategory+"*='"+b+"']",f=d.posts+"[data-"+d.dataCategory+"*='"+b+"']";d.countCategories(b)>0&&a(e+"[data-"+d.dataParentCategories+"]").length&&a(e).each(function(){c=a(this).attr("data-"+d.dataParentCategories).split(","),c.forEach(function(b){var c="[data-"+d.dataCategory+"='"+b+"']";a(d.categories+c).show(),a(d.posts+c).show(),a(d.posts+c+" > .archive-posts > .archive-post").hide()})}),a(e).show(),a(f).show(),a(f+" > .archive-posts > .archive-post").show()},showAll:function(){this.$categories.show(),this.$posts.show(),a(this.posts+" > .archive-posts > .archive-post").show()},hideAll:function(){this.$categories.hide(),this.$posts.hide()}},a(document).ready(function(){if(a("#categories-archives").length){var c=new b("#categories-archives");c.run()}})}(jQuery),function(a){"use strict";var b=function(b){this.$codeBlocks=a(b)};b.prototype={run:function(){var b=this;b.resize(),a(window).smartresize(function(){b.resize()})},resize:function(){var b=this;b.$codeBlocks.each(function(){var b=a(this).find(".gutter"),c=a(this).find(".code"),d=c.width()-c.innerWidth(),e=a(this).outerWidth()-b.outerWidth()+d;c.css("width",e),c.children("pre").css("width",e)})}},a(document).ready(function(){a.fn.hasHorizontalScrollBar=function(){return this.get(0).scrollWidth>this.innerWidth()};var c=new b("figure.highlight");c.run()})}(jQuery),function(a){"use strict";a(document).ready(function(){function b(){var b=!0,c=null;a(window).height()>480&&(b=!1,c={width:70,height:70}),a(".fancybox").fancybox({maxWidth:900,maxHeight:800,fitToView:!0,width:"50%",height:"50%",autoSize:!0,arrows:b,closeClick:!1,openEffect:"elastic",closeEffect:"elastic",prevEffect:"none",nextEffect:"none",padding:"0",helpers:{thumbs:c,overlay:{css:{overflow:"hidden",background:"rgba(0, 0, 0, 0.85)"}}},afterLoad:function(){setTimeout(function(){a(".fancybox-next > span, .fancybox-prev > span").css("visibility","visible")},400)}})}b(),a(window).smartresize(function(){b()})})}(jQuery),function(a){"use strict";var b=function(){this.$header=a("#header"),this.headerHeight=this.$header.height(),this.headerUpCSSClass="header-up",this.delta=5,this.lastScrollTop=0};b.prototype={run:function(){var b,c=this;a(window).scroll(function(){b=!0}),setInterval(function(){b&&(c.animate(),b=!1)},250)},animate:function(){var b=a(window).scrollTop();Math.abs(this.lastScrollTop-b)<=this.delta||(b>this.lastScrollTop&&b>this.headerHeight?this.$header.addClass(this.headerUpCSSClass):b+a(window).height()<a(document).height()&&this.$header.removeClass(this.headerUpCSSClass),this.lastScrollTop=b)}},a(document).ready(function(){var a=new b;a.run()})}(jQuery),function(a){"use strict";var b=function(){this.photosBox=".photo-box",this.$images=a(this.photosBox+" img")};b.prototype={run:function(){var b=this;b.resizeImages(),a(window).smartresize(function(){b.resizeImages()})},resizeImages:function(){var b,c,d,e,f,g;this.$images.each(function(){g=a(this),b=g.parent().parent().width(),c=g.parent().parent().innerHeight(),d=g.width(),e=g.height(),e<c&&(f=d/e,g.css({height:c,width:c*f}),g.parent().css({left:"-"+(c*f/2-b/2)+"px"})),d=g.width(),e=g.height(),d<b&&(f=e/d,g.css({width:b,height:b*f}),g.parent().css({top:"-"+(e/2-c/2)+"px"})),e>c&&g.parent().css({top:"-"+(e/2-c/2)+"px"})})}},a(document).ready(function(){if(a(".image-gallery").length){var c=new b;setTimeout(function(){c.run()},500)}})}(jQuery),function(a){"use strict";var b=function(){this.$postBottomBar=a(".post-bottom-bar"),this.$postFooter=a(".post-actions-wrap"),this.$header=a("#header"),this.delta=1,this.lastScrollTop=0};b.prototype={run:function(){var b,c=this;c.swipePostBottomBar(),a(window).scroll(function(){b=!0}),setInterval(function(){b&&(c.swipePostBottomBar(),b=!1)},250)},swipePostBottomBar:function(){var b=a(window).scrollTop(),c=this.$postFooter.offset().top;this.lastScrollTop>b&&(c+this.$postFooter.height()>b+a(window).height()||c<b+this.$header.height())?this.$postBottomBar.slideDown():this.$postBottomBar.slideUp(),this.lastScrollTop=b}},a(document).ready(function(){if(a(".post-bottom-bar").length){var c=new b;c.run()}})}(jQuery),function(a){"use strict";var b=function(){this.$openButton=a(".open-algolia-search"),this.$searchModal=a("#algolia-search-modal"),this.$closeButton=this.$searchModal.find(".close-button"),this.$searchForm=a("#algolia-search-form"),this.$searchInput=a("#algolia-search-input"),this.$results=this.$searchModal.find(".results"),this.$noResults=this.$searchModal.find(".no-result"),this.$resultsCount=this.$searchModal.find(".results-count"),this.algolia=algoliaIndex};b.prototype={run:function(){var b=this;b.$openButton.click(function(){b.open()}),a(document).keyup(function(a){var c=a.target||a.srcElement;"INPUT"!==c.tagName.toUpperCase()&&(83!==a.keyCode||b.$searchModal.is(":visible")||b.open())}),b.$searchModal.click(function(a){a.target===this&&b.close()}),b.$closeButton.click(function(){b.close()}),a(document).keyup(function(a){27===a.keyCode&&b.$searchModal.is(":visible")&&b.close()}),b.$searchForm.submit(function(a){a.preventDefault(),b.search(b.$searchInput.val())})},open:function(){this.showSearchModal(),this.showOverlay(),this.$searchInput.focus()},close:function(){this.hideSearchModal(),this.hideOverlay(),this.$searchInput.blur()},search:function(a){var b=this;this.algolia.search(a,function(a,c){a||(b.showResults(c.hits),b.showResultsCount(c.nbHits))})},showResults:function(a){var b="";a.forEach(function(a){var c=window.navigator.userLanguage||window.navigator.language||a.lang;b+='<div class="media">',a.thumbnailImageUrl&&(b+='<div class="media-left">',b+='<a class="link-unstyled" href="'+(a.link||a.permalink)+'">',b+='<img class="media-image" src="'+a.thumbnailImageUrl+'" width="90" height="90"/>',b+="</a>",b+="</div>"),b+='<div class="media-body">',b+='<a class="link-unstyled" href="'+(a.link||a.permalink)+'">',b+='<h3 class="media-heading">'+a.title+"</h3>",b+="</a>",b+='<span class="media-meta">',b+='<span class="media-date text-small">',b+=moment(a.date).locale(c).format("ll"),b+="</span>",b+="</span>",b+='<div class="media-content hide-xs font-merryweather">'+a.excerpt+"</div>",b+="</div>",b+='<div style="clear:both;"></div>',b+="<hr>",b+="</div>"}),this.$results.html(b)},showSearchModal:function(){this.$searchModal.fadeIn()},hideSearchModal:function(){this.$searchModal.fadeOut()},showResultsCount:function(a){var b="";a<1?(b=this.$resultsCount.data("message-zero"),this.$noResults.show()):1===a?(b=this.$resultsCount.data("message-one"),this.$noResults.hide()):a>1&&(b=this.$resultsCount.data("message-other").replace(/\{n\}/,a),this.$noResults.hide()),this.$resultsCount.html(b)},showOverlay:function(){a("body").append('<div class="overlay"></div>'),a(".overlay").fadeIn(),a("body").css("overflow","hidden")},hideOverlay:function(){a(".overlay").fadeOut(function(){a(this).remove(),a("body").css("overflow","auto")})}},a(document).ready(function(){if("undefined"!=typeof algoliaIndex){var a=new b;a.run()}})}(jQuery),function(a){"use strict";var b=function(){this.$shareOptionsBar=a("#share-options-bar"),this.$openBtn=a(".btn-open-shareoptions"),this.$closeBtn=a("#share-options-mask")};b.prototype={run:function(){var a=this;a.$openBtn.click(function(){a.$shareOptionsBar.hasClass("opened")||(a.openShareOptions(),a.$closeBtn.show())}),a.$closeBtn.click(function(){a.$shareOptionsBar.hasClass("opened")&&(a.closeShareOptions(),a.$closeBtn.hide())})},openShareOptions:function(){var a=this;a.$shareOptionsBar.hasClass("opened")||this.$shareOptionsBar.hasClass("processing")||(a.$shareOptionsBar.addClass("processing opened"),setTimeout(function(){a.$shareOptionsBar.removeClass("processing")},250))},closeShareOptions:function(){var a=this;a.$shareOptionsBar.hasClass("opened")&&!this.$shareOptionsBar.hasClass("processing")&&(a.$shareOptionsBar.addClass("processing").removeClass("opened"),setTimeout(function(){a.$shareOptionsBar.removeClass("processing")},250))}},a(document).ready(function(){var a=new b;a.run()})}(jQuery),function(a){"use strict";var b=function(){this.$sidebar=a("#sidebar"),this.$openBtn=a("#btn-open-sidebar"),this.$closeBtn=a("#header, #main, .post-header-cover"),this.$blog=a(".post-bottom-bar, #header, #main, .post-header-cover"),this.$body=a("body"),this.mediumScreenWidth=768};b.prototype={run:function(){var b=this;this.$openBtn.click(function(){b.$sidebar.hasClass("pushed")||b.openSidebar()}),this.$closeBtn.click(function(){b.$sidebar.hasClass("pushed")&&b.closeSidebar()}),a(window).resize(function(){a(window).width()>b.mediumScreenWidth?(b.resetSidebarPosition(),b.resetBlogPosition()):b.closeSidebar()})},openSidebar:function(){this.swipeBlogToRight(),this.swipeSidebarToRight()},closeSidebar:function(){this.swipeSidebarToLeft(),this.swipeBlogToLeft()},resetSidebarPosition:function(){this.$sidebar.removeClass("pushed")},resetBlogPosition:function(){this.$blog.removeClass("pushed")},swipeSidebarToRight:function(){var a=this;this.$sidebar.hasClass("pushed")||this.$sidebar.hasClass("processing")||(this.$sidebar.addClass("processing pushed"),this.$body.css("overflow-x","hidden"),setTimeout(function(){a.$sidebar.removeClass("processing")},250))},swipeSidebarToLeft:function(){this.$sidebar.hasClass("pushed")&&!this.$sidebar.hasClass("processing")&&(this.$sidebar.addClass("processing").removeClass("pushed processing"),this.$body.css("overflow-x","auto"))},swipeBlogToRight:function(){var a=this;this.$blog.hasClass("pushed")||this.$blog.hasClass("processing")||(this.$blog.addClass("processing pushed"),setTimeout(function(){a.$blog.removeClass("processing")},250))},swipeBlogToLeft:function(){var a=this;a.$blog.hasClass("pushed")&&!this.$blog.hasClass("processing")&&(a.$blog.addClass("processing").removeClass("pushed"),setTimeout(function(){a.$blog.removeClass("processing")},250))}},a(document).ready(function(){var a=new b;a.run()})}(jQuery),function(a,b){var c=function(a,b,c){var d;return function(){function e(){c||a.apply(f,g),d=null}var f=this,g=arguments;d?clearTimeout(d):c&&a.apply(f,g),d=setTimeout(e,b||100)}};jQuery.fn[b]=function(a){return a?this.bind("resize",c(a)):this.trigger(b)}}(jQuery,"smartresize"),function(a){"use strict";var b=function(b){this.$tabbedCodeBlocs=a(b)};b.prototype={run:function(){var b=this;b.$tabbedCodeBlocs.find(".tab").click(function(){var b=a(this).parent().parent().parent(),c=b.find(".tabs-content").children("pre, .highlight");a(this).siblings().removeClass("active"),a(this).addClass("active"),c.hide(),c.eq(a(this).index()).show()})}},a(document).ready(function(){var a=new b(".codeblock--tabbed");a.run()})}(jQuery),function(a){"use strict";var b=function(b){this.$form=a(b).find("#filter-form"),this.$inputSearch=a(b+" #filter-form input[name=tag]"),this.$archiveResult=a(b).find(".archive-result"),this.$tags=a(b).find(".tag"),this.$posts=a(b).find(".archive"),this.tags=b+" .tag",this.posts=b+" .archive",this.dataTag="tag",this.messages={zero:this.$archiveResult.data("message-zero"),one:this.$archiveResult.data("message-one"),other:this.$archiveResult.data("message-other")}};b.prototype={run:function(){var a=this;a.$inputSearch.keyup(function(){a.filter(a.getSearch())}),a.$form.submit(function(a){a.preventDefault()})},getSearch:function(){return this.$inputSearch.val().toLowerCase()},filter:function(a){""===a?(this.showAll(),this.showResult(-1)):(this.hideAll(),this.showPosts(a),this.showResult(this.countTags(a)))},showResult:function(a){a===-1?this.$archiveResult.html("").hide():0===a?this.$archiveResult.html(this.messages.zero).show():1===a?this.$archiveResult.html(this.messages.one).show():this.$archiveResult.html(this.messages.other.replace(/\{n\}/,a)).show()},countTags:function(b){return a(this.posts+"[data-"+this.dataTag+"*='"+b+"']").length},showPosts:function(b){a(this.tags+"[data-"+this.dataTag+"*='"+b+"']").show(),a(this.posts+"[data-"+this.dataTag+"*='"+b+"']").show()},showAll:function(){this.$tags.show(),this.$posts.show()},hideAll:function(){this.$tags.hide(),this.$posts.hide()}},a(document).ready(function(){if(a("#tags-archives").length){var c=new b("#tags-archives");c.run()}})}(jQuery); \ No newline at end of file