diff --git a/.gitignore b/.gitignore
index 5fbdd23..876de69 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,5 @@ node_modules
npm-debug.log
source/libs/noto-sans-kr
source/libs/spoqa-han-sans
+.idea
+*.iml
\ No newline at end of file
diff --git a/README.md b/README.md
index 5585b86..db6c413 100644
--- a/README.md
+++ b/README.md
@@ -10,14 +10,14 @@
The Overdose is minimalistic, simple and beatiful hexo theme, specialized in Korean blogs.
-This theme works with hexo v3.2 or later.
+This theme works with hexo v3.2 or later and Node v7 or lower.
## Features
- Responsive design
- Lightweight, not using jQuery or underscore.js, etc.
- Various code highlighting theme (Thanks to @SungYeolWoo), Set [Dracula](https://draculatheme.com/) theme by default
-- Font setting
+- [Font setting](#font-setting)
- noto-sans-kr
- spoqa-han-sans-kr
- spoqa-han-sans-jp
@@ -42,14 +42,9 @@ $ cd your/hexo/directory
$ git clone https://github.com/HyunSeob/hexo-theme-overdose.git themes/overdose
```
-The overdose theme is using jade/sass(with bourbon). So install renderers.
+This theme is using pug. So install renderer.
```
-$ npm install --save hexo-renderer-jade hexo-renderer-bourbon
-```
-
-And clone vendor repositories.
-```
-$ cd themes/overdose;npm run clone
+$ npm install --save hexo-renderer-pug # or you can still use hexo-renderer-jade, too.
```
Then, copy the configuration example file.
@@ -72,13 +67,29 @@ $ hexo server
See the [_config.yml.example](https://github.com/HyunSeob/hexo-theme-overdose/blob/master/_config.yml.example) file.
-## Disqus
+### Disqus
``` yml
# _config.yml of base, not theme config
# Please put your shortname of disqus here.
disqus_shortname:
```
+### LiveRe
+
+LiveRe is social media comment platcform suitable for Korean SNS, like disqus.
+see [LiveRe](https://livere.com/).
+You can get your uid from livere setting code as below.
+
+``` html
+
+```
+how to set
+
+``` yml
+# Please put your uid of live here.
+liveRe:
+ uid:
+```
### Post Front matter
@@ -104,7 +115,7 @@ tags:
- [x] Chrome
- [x] Edge
-- [x] IE 9+ (CSS3 Animation is not worked in IE9)
+- [x] IE 10+
- [x] Firefox
- [x] Safari
- [x] Android Browser
@@ -113,6 +124,5 @@ tags:
## To Do
- i18n
-- LiveRe
- Facebook Comments
- Featured posts
diff --git a/_config.yml.example b/_config.yml.example
index e5f7aea..5c77372 100644
--- a/_config.yml.example
+++ b/_config.yml.example
@@ -74,3 +74,7 @@ facebook:
fb_admin:
twitter:
google_plus:
+
+#liveRe
+liveRe:
+ uid:
diff --git a/layout/archive.jade b/layout/archive.pug
similarity index 100%
rename from layout/archive.jade
rename to layout/archive.pug
diff --git a/layout/category.jade b/layout/category.pug
similarity index 100%
rename from layout/category.jade
rename to layout/category.pug
diff --git a/layout/includes/article.jade b/layout/includes/article.pug
similarity index 68%
rename from layout/includes/article.jade
rename to layout/includes/article.pug
index 589a9b3..412913d 100644
--- a/layout/includes/article.jade
+++ b/layout/includes/article.pug
@@ -15,10 +15,10 @@ article#article.article(itemscope itemtype="https://schema.org/BlogPosting")
span.article__meta__categories__separator >
unless (page.banner && page.banner.url) || (page.photos && page.photos.length)
hr
-
+
.article__contents
!= page.content
-
+
if page.tags && page.tags.length
.article__tags
- page.tags.each(function(tag) {
@@ -35,7 +35,7 @@ article#article.article(itemscope itemtype="https://schema.org/BlogPosting")
alt=config.author)
a.article__author__link(
href=theme.profile.link
- title="About #{config.author}"
+ title=`About ${config.author}`
rel="author"
)= config.author
p.article__author__desc= theme.profile.description || config.description
@@ -44,13 +44,26 @@ article#article.article(itemscope itemtype="https://schema.org/BlogPosting")
if url
a.article__author__socials__item(
href=url
- title="#{label}"
+ title=label
target="_blank")
- i(class="fa fa-#{label}")
- meta(itemprop="name" content="#{config.author}")
-
+ i(class=`fa fa-${label}`)
+ meta(itemprop="name" content=config.author)
+
include sharer
-
+
+ if theme.liveRe && theme.liveRe.uid
+ #lv-container(data-id="city", data-uid=theme.liveRe.uid)
+ script.
+ (function(d, s) {
+ var j, e = d.getElementsByTagName(s)[0];
+ if (typeof LivereTower === 'function') { return; }
+ j = d.createElement(s);
+ j.src = 'https://cdn-city.livere.com/js/embed.dist.js';
+ j.async = true;
+ e.parentNode.insertBefore(j, e);
+ })(document, 'script');
+
+
// Disqus Code
if config.disqus_shortname
#disqus_thread
@@ -62,21 +75,21 @@ article#article.article(itemscope itemtype="https://schema.org/BlogPosting")
(d.head || d.body).appendChild(s);
})();
noscript Enable JavaScript to see comments.
-
+
// Meta Tags for Structured Data
- var truncOptions = { length: 200, separator: ' ' };
- var banner = page.banner || theme.default;
- meta(itemprop="dateModified" content="#{date_xml(page.updated)}")
- meta(itemprop="articleBody" content="#{truncate(strip_html(page.content), truncOptions)}")
- meta(itemprop="url" content="#{config.url + '/' + page.path}")
- meta(itemprop="mainEntityOfPage" content="#{config.url + '/' + page.path}")
+ meta(itemprop="dateModified" content=date_xml(page.updated))
+ meta(itemprop="articleBody" content=truncate(strip_html(page.content), truncOptions))
+ meta(itemprop="url" content=config.url + '/' + page.path)
+ meta(itemprop="mainEntityOfPage" content=config.url + '/' + page.path)
div(itemscope itemtype="https://schema.org/Organization" itemprop="publisher")
- meta(itemprop="name" content="#{config.title}")
+ meta(itemprop="name" content=config.title)
div(itemscope itemprop="logo" itemtype="https://schema.org/ImageObject")
- meta(itemprop="url" content="#{config.url + theme.favicon}")
+ meta(itemprop="url" content=config.url + theme.favicon)
div(itemscope itemtype="https://schema.org/ImageObject" itemprop="image")
- meta(itemprop="contentUrl" content="#{config.url + banner.url}")
- meta(itemprop="url" content="#{config.url + banner.url}")
+ meta(itemprop="contentUrl" content=config.url + banner.url)
+ meta(itemprop="url" content=config.url + banner.url)
meta(itemprop="width" content=banner.width)
meta(itemprop="height" content=banner.height)
-
+
diff --git a/layout/includes/footer.jade b/layout/includes/footer.pug
similarity index 100%
rename from layout/includes/footer.jade
rename to layout/includes/footer.pug
diff --git a/layout/includes/head.jade b/layout/includes/head.pug
similarity index 64%
rename from layout/includes/head.jade
rename to layout/includes/head.pug
index 0e66961..95782dd 100644
--- a/layout/includes/head.jade
+++ b/layout/includes/head.pug
@@ -6,35 +6,41 @@
- if (is_year()) pageTitle += ': ' + page.year;
- pageTitle = pageTitle ? pageTitle += ' | ' + config.title : config.title;
- var banner = bannerOf(page) || theme.default.url;
+-
+ var description = truncate(
+ strip_html(page.content) || config.description || theme.profile.description,
+ {
+ length: 140,
+ separator: ' ',
+ omission: '…',
+ }
+ )
-
var openGraph = open_graph({
- description: page.content || config.description || theme.profile.description,
+ description,
image: banner,
fb_app_id: theme.facebook,
fb_admins: theme.fb_admin,
twitter_id: theme.twitter,
- google_plus: theme.google_plus
+ google_plus: theme.google_plus,
+ url: config.url.replace(/($|\/$)/, "/") + page.canonical_path.replace('index.html', '')
});
- var highlight = (theme.highlight && (typeof theme.highlight === 'string')) ? theme.highlight : 'dracula';
meta(charset='UTF-8')
meta(http-equiv="X-UA-Compatible" content="IE=edge")
-meta(name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1")
+meta(name="viewport" content="width=device-width, initial-scale=1")
title= pageTitle
if theme.font === 'spoqa-han-sans-kr'
- link(rel="stylesheet" href="/libs/spoqa-han-sans/css/SpoqaHanSans-kr.css")
+ link(rel="stylesheet" href="/libs/spoqa-han-sans-kr/css/SpoqaHanSans-kr.css")
else if theme.font === 'spoqa-han-sans-jp'
- link(rel="stylesheet" href="/libs/spoqa-han-sans/css/SpoqaHanSans-jp.css")
+ link(rel="stylesheet" href="/libs/spoqa-han-sans-jp/css/SpoqaHanSans-jp.css")
else if theme.font === 'noto-sans-kr'
link(rel="stylesheet" href="/libs/noto-sans-kr/styles.css")
-
-if theme.font
- link(rel="stylesheet" href="/css/font.css")
-
-link(rel="stylesheet" href="/libs/normalize.min.css")
-link(rel="stylesheet" href="/libs/font-awesome-4.6.3/css/font-awesome.min.css")
+
+link(rel="stylesheet" href="/libs/font-awesome/css/font-awesome.min.css")
link(rel="stylesheet" href="/css/index.css")
link(rel="stylesheet" href="/css/highlights/" + highlight + ".css")
@@ -42,16 +48,20 @@ link(rel="stylesheet" href="/css/highlights/" + highlight + ".css")
| !{ openGraph }
if is_post()
meta(property="article:author" content=theme.profile.social.facebook || config.author)
+ meta(property="twitter:label1" content="Published at")
+ meta(property="twitter:data1" content=full_date(page.date))
+ meta(property="twitter:label2" content="Written by")
+ meta(property="twitter:data2" content=config.author)
if theme.favicon
link(rel="icon" href=theme.favicon)
if theme.profile.social.rss
- link(rel="alternative" href=theme.profile.social.rss type="application/atom+xml" title=config.title)
+ link(rel="alternate" href=theme.profile.social.rss type="application/atom+xml" title=config.title)
if theme.google_site_verification
- meta(name="google-site-verification" content="#{theme.google_site_verification}")
+ meta(name="google-site-verification" content=theme.google_site_verification)
if theme.naver_site_verification
- meta(name="naver-site-verification" content="#{theme.naver_site_verification}")
+ meta(name="naver-site-verification" content=theme.naver_site_verification)
if theme.google_analytics
script.
(function(i,s,o,g,r,a,m) {i['GoogleAnalyticsObject']=r;i[r]=i[r]||function() {
diff --git a/layout/includes/layout.jade b/layout/includes/layout.pug
similarity index 66%
rename from layout/includes/layout.jade
rename to layout/includes/layout.pug
index c6df337..9a25b91 100644
--- a/layout/includes/layout.jade
+++ b/layout/includes/layout.pug
@@ -5,12 +5,13 @@ html(lang=config.language)
body(itemscope itemtype="https://schema.org/WebPage")
include menu
.page-background
- .content-outer
- .content-inner(itemscope itemtype="https://schema.org/Blog")
- if body
- div!= body
- else
- block content
+ .content-container
+ .content-outer
+ .content-inner(itemscope itemtype="https://schema.org/Blog")
+ if body
+ div!= body
+ else
+ block content
include footer
if theme.dynamic_menu
diff --git a/layout/includes/menu.jade b/layout/includes/menu.pug
similarity index 100%
rename from layout/includes/menu.jade
rename to layout/includes/menu.pug
diff --git a/layout/includes/pagination.jade b/layout/includes/pagination.pug
similarity index 100%
rename from layout/includes/pagination.jade
rename to layout/includes/pagination.pug
diff --git a/layout/includes/post-list.jade b/layout/includes/post-list.pug
similarity index 94%
rename from layout/includes/post-list.jade
rename to layout/includes/post-list.pug
index 8faaf88..ca722ae 100644
--- a/layout/includes/post-list.jade
+++ b/layout/includes/post-list.pug
@@ -43,7 +43,9 @@ section.post-list
.post-list__item__col-1
a.post-list__item__link(href=url_for(post.path))
- var banner = bannerOf(post) || theme.default.url;
- .post-list__item__link__background(style="background-image: url('#{ banner }')")
+ .post-list__item__link__background(style={
+ 'background-image': `url('${banner}')`
+ })
.post-list__item__col-2
.post-list__item__meta
if post.categories && post.categories.length
diff --git a/layout/includes/sharer.jade b/layout/includes/sharer.pug
similarity index 100%
rename from layout/includes/sharer.jade
rename to layout/includes/sharer.pug
diff --git a/layout/includes/widgets.jade b/layout/includes/widgets.pug
similarity index 100%
rename from layout/includes/widgets.jade
rename to layout/includes/widgets.pug
diff --git a/layout/includes/widgets/archives.jade b/layout/includes/widgets/archives.pug
similarity index 100%
rename from layout/includes/widgets/archives.jade
rename to layout/includes/widgets/archives.pug
diff --git a/layout/includes/widgets/categories.jade b/layout/includes/widgets/categories.pug
similarity index 100%
rename from layout/includes/widgets/categories.jade
rename to layout/includes/widgets/categories.pug
diff --git a/layout/includes/widgets/recent-posts.jade b/layout/includes/widgets/recent-posts.pug
similarity index 100%
rename from layout/includes/widgets/recent-posts.jade
rename to layout/includes/widgets/recent-posts.pug
diff --git a/layout/includes/widgets/tag-cloud.jade b/layout/includes/widgets/tag-cloud.pug
similarity index 100%
rename from layout/includes/widgets/tag-cloud.jade
rename to layout/includes/widgets/tag-cloud.pug
diff --git a/layout/includes/widgets/tags.jade b/layout/includes/widgets/tags.pug
similarity index 100%
rename from layout/includes/widgets/tags.jade
rename to layout/includes/widgets/tags.pug
diff --git a/layout/index.jade b/layout/index.pug
similarity index 100%
rename from layout/index.jade
rename to layout/index.pug
diff --git a/layout/page.jade b/layout/page.pug
similarity index 100%
rename from layout/page.jade
rename to layout/page.pug
diff --git a/layout/post.jade b/layout/post.pug
similarity index 81%
rename from layout/post.jade
rename to layout/post.pug
index aad659b..29a7daa 100644
--- a/layout/post.jade
+++ b/layout/post.pug
@@ -12,6 +12,8 @@ block content
.related-posts__item__wrapper
a.related-posts__item(href=url_for(post.path))
- var banner = bannerOf(post) || theme.default.url;
- .related-posts__item__background(style="background-image: url('#{ banner }')")
+ .related-posts__item__background(style={
+ 'background-image': `url('${banner}')`
+ })
.related-posts__item__overlay
span.related-posts__item__title= post.title || 'Untitled'
diff --git a/layout/tag.jade b/layout/tag.pug
similarity index 100%
rename from layout/tag.jade
rename to layout/tag.pug
diff --git a/package.json b/package.json
index 3d1ed9e..7ff8ae6 100644
--- a/package.json
+++ b/package.json
@@ -4,11 +4,20 @@
"description": "The theme which you must be overdosed.",
"private": true,
"scripts": {
- "clone": "git clone https://github.com/spoqa/spoqa-han-sans ./source/libs/spoqa-han-sans;git clone https://github.com/hyunseob/noto-sans-kr ./source/libs/noto-sans-kr",
- "build": "node_modules/.bin/uglifyjs ./source/js/dynamicMenu.js -m -o ./source/js/dynamicMenu.min.js;node_modules/.bin/uglifyjs ./source/js/sharer.js -m -o ./source/js/sharer.min.js;cat ./source/js/dynamicMenu.min.js ./source/js/sharer.min.js > ./source/js/index.min.js"
+ "precommit": "npm build",
+ "build-dynamicMenu": "node_modules/.bin/uglifyjs ./source/js/dynamicMenu.js -m -o ./source/js/dynamicMenu.min.js",
+ "build-share": "node_modules/.bin/uglifyjs ./source/js/sharer.js -m -o ./source/js/sharer.min.js",
+ "build-index": "cat ./source/js/dynamicMenu.min.js ./source/js/sharer.min.js > ./source/js/index.min.js",
+ "build": "npm run build-dynamicMenu && npm run build-share && npm run build-index && npm run cssbuild",
+ "cssbuild": "postcss \"src/css/index.css\" --output \"source/css/index.css\""
},
- "dependencies": {},
"devDependencies": {
+ "cssnano": "^3.10.0",
+ "husky": "^0.14.3",
+ "normalize.css": "^7.0.0",
+ "postcss-cli": "^4.1.1",
+ "postcss-cssnext": "^3.0.2",
+ "postcss-import": "^10.0.0",
"uglify-js": "^2.7.3"
}
}
diff --git a/postcss.config.js b/postcss.config.js
new file mode 100644
index 0000000..b0a0cc1
--- /dev/null
+++ b/postcss.config.js
@@ -0,0 +1,11 @@
+ module.exports = {
+ plugins: [
+ require('postcss-import')({
+ parh: 'src/css',
+ }),
+ require('postcss-cssnext')({
+ browsers: ['> 1%', 'last 2 versions'],
+ }),
+ require('cssnano')(),
+ ]
+};
diff --git a/source/css/_custom-mixin.scss b/source/css/_custom-mixin.scss
deleted file mode 100644
index ef8e62b..0000000
--- a/source/css/_custom-mixin.scss
+++ /dev/null
@@ -1,8 +0,0 @@
-@import "bourbon";
-
-@mixin border-radius($value) {
- @include border-top-radius($value);
- @include border-right-radius($value);
- @include border-bottom-radius($value);
- @include border-left-radius($value);
-}
diff --git a/source/css/_variables.scss b/source/css/_variables.scss
deleted file mode 100644
index 10dcc1d..0000000
--- a/source/css/_variables.scss
+++ /dev/null
@@ -1,26 +0,0 @@
-@import "bourbon";
-
-// Colors
-$white: #FFF;
-$semi-white: #F6F6F6;
-$black: #454545;
-$bold-black: #222;
-$gray: #999;
-$darked-gray: #666;
-$lighted-gray: #EDEDED;
-$primary-sky: #59ABE3;
-$darked-sky: darken($primary-sky, 20);
-$lighted-sky: lighten($primary-sky, 20);
-$secondary-yellow: #E28F0B;
-
-// Pixels
-$em-base: 16px;
-$mobile: "only screen and (max-width : #{$em-base * 39})";
-$desktop: "only screen and (min-width : #{$em-base * 39})";
-
-$base-margin: 1.5rem;
-$menu-height: 4rem;
-$content-width: 45rem;
-$container-width: 72rem;
-
-$bold-font: 500;
diff --git a/source/css/footer.scss b/source/css/footer.scss
deleted file mode 100644
index e07ea83..0000000
--- a/source/css/footer.scss
+++ /dev/null
@@ -1,8 +0,0 @@
-@import "variables";
-
-.copyright {
- background-color: $lighted-gray;
- text-align: center;
- padding: 2rem 0;
- margin: 0;
-}
diff --git a/source/css/highlights/agate.css b/source/css/highlights/agate.css
new file mode 100644
index 0000000..b762f71
--- /dev/null
+++ b/source/css/highlights/agate.css
@@ -0,0 +1,53 @@
+/*
+ * Agate by Taufik Nurrohman
+ * ----------------------------------------------------
+ *
+ * #ade5fc
+ * #a2fca2
+ * #c6b4f0
+ * #d36363
+ * #fcc28c
+ * #fc9b9b
+ * #ffa
+ * #fff
+ * #333
+ * #62c8f3
+ * #888
+ *
+ */
+.highlight {
+ color: #fff;
+ background: #333; }
+ .highlight .code .name, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .code, .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .tag {
+ color: #62c8f3; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #ade5fc; }
+ .highlight .code .string, .highlight .code .bullet {
+ color: #a2fca2; }
+ .highlight .code .type, .highlight .code .title, .highlight .code .section, .highlight .code .attribute, .highlight .code .quote, .highlight .code .built_in, .highlight .code .builtin-name {
+ color: #ffa; }
+ .highlight .code .number, .highlight .code .symbol, .highlight .code .bullet {
+ color: #d36363; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal {
+ color: #fcc28c; }
+ .highlight .code .comment, .highlight .code .deletion, .highlight .code .code {
+ color: #888; }
+ .highlight .code .regexp, .highlight .code .link {
+ color: #c6b4f0; }
+ .highlight .code .meta {
+ color: #fc9b9b; }
+ .highlight .code .deletion {
+ background-color: #fc9b9b;
+ color: #333; }
+ .highlight .code .addition {
+ background-color: #a2fca2;
+ color: #333; }
+ .highlight .code .highlight a {
+ color: inherit; }
+ .highlight .code .highlight a:focus, .highlight .code .highlight a:hover {
+ color: inherit;
+ text-decoration: underline; }
diff --git a/source/css/highlights/agate.scss b/source/css/highlights/agate.scss
deleted file mode 100644
index ab5e665..0000000
--- a/source/css/highlights/agate.scss
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * Agate by Taufik Nurrohman
- * ----------------------------------------------------
- *
- * #ade5fc
- * #a2fca2
- * #c6b4f0
- * #d36363
- * #fcc28c
- * #fc9b9b
- * #ffa
- * #fff
- * #333
- * #62c8f3
- * #888
- *
- */
-
-.highlight {
- color: #fff;
- background: #333;
-
- .code {
- .name, .strong {
- font-weight: bold;
- }
-
- .code, .emphasis {
- font-style: italic;
- }
-
- .tag {
- color: #62c8f3;
- }
-
- .variable, .template-variable, .selector-id, .selector-class {
- color: #ade5fc;
- }
-
- .string, .bullet {
- color: #a2fca2;
- }
-
- .type, .title, .section, .attribute, .quote, .built_in, .builtin-name {
- color: #ffa;
- }
-
- .number, .symbol, .bullet {
- color: #d36363;
- }
-
- .keyword, .selector-tag, .literal {
- color: #fcc28c;
- }
-
- .comment, .deletion, .code {
- color: #888;
- }
-
- .regexp, .link {
- color: #c6b4f0;
- }
-
- .meta {
- color: #fc9b9b;
- }
-
- .deletion {
- background-color: #fc9b9b;
- color: #333;
- }
-
- .addition {
- background-color: #a2fca2;
- color: #333;
- }
-
- .highlight a {
- color: inherit;
-
- &:focus, &:hover {
- color: inherit;
- text-decoration: underline;
- }
- }
- }
-}
diff --git a/source/css/highlights/androidstudio.css b/source/css/highlights/androidstudio.css
new file mode 100644
index 0000000..7785238
--- /dev/null
+++ b/source/css/highlights/androidstudio.css
@@ -0,0 +1,27 @@
+/*
+Date: 24 Fev 2015
+Author: Pedro Oliveira
+*/
+.highlight {
+ color: #a9b7c6;
+ background: #282b2e; }
+ .highlight .code .number, .highlight .code .literal, .highlight .code .symbol, .highlight .code .bullet {
+ color: #6897bb; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .deletion {
+ color: #cc7832; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .link {
+ color: #629755; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #808080; }
+ .highlight .code .meta {
+ color: #bbb529; }
+ .highlight .code .string, .highlight .code .attribute, .highlight .code .addition {
+ color: #6a8759; }
+ .highlight .code .section, .highlight .code .title, .highlight .code .type {
+ color: #ffc66d; }
+ .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #e8bf6a; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/androidstudio.scss b/source/css/highlights/androidstudio.scss
deleted file mode 100644
index 17f6a77..0000000
--- a/source/css/highlights/androidstudio.scss
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
-Date: 24 Fev 2015
-Author: Pedro Oliveira
-*/
-
-.highlight {
- color: #a9b7c6;
- background: #282b2e;
-
- .code {
- .number, .literal, .symbol, .bullet {
- color: #6897bb;
- }
-
- .keyword, .selector-tag, .deletion {
- color: #cc7832;
- }
-
- .variable, .template-variable, .link {
- color: #629755;
- }
-
- .comment, .quote {
- color: #808080;
- }
-
- .meta {
- color: #bbb529;
- }
-
- .string, .attribute, .addition {
- color: #6a8759;
- }
-
- .section, .title, .type {
- color: #ffc66d;
- }
-
- .name, .selector-id, .selector-class {
- color: #e8bf6a;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/arduino-light.css b/source/css/highlights/arduino-light.css
new file mode 100644
index 0000000..30c7fe0
--- /dev/null
+++ b/source/css/highlights/arduino-light.css
@@ -0,0 +1,37 @@
+@charset "UTF-8";
+/*
+
+Arduino® Light Theme - Stefania Mellai
+
+*/
+.highlight {
+ color: #434f54;
+ background: #fff; }
+ .highlight .code .subst {
+ color: #434f54; }
+ .highlight .code .keyword, .highlight .code .attribute, .highlight .code .selector-tag, .highlight .code .doctag, .highlight .code .name {
+ color: #00979d; }
+ .highlight .code .built_in, .highlight .code .literal, .highlight .code .bullet, .highlight .code .code, .highlight .code .addition {
+ color: #d35400; }
+ .highlight .code .regexp, .highlight .code .symbol, .highlight .code .variable, .highlight .code .template-variable, .highlight .code .link, .highlight .code .selector-attr, .highlight .code .selector-pseudo {
+ color: #00979d; }
+ .highlight .code .type, .highlight .code .string, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .quote, .highlight .code .template-tag, .highlight .code .deletion {
+ color: #005c5f; }
+ .highlight .code .title, .highlight .code .section {
+ color: #800;
+ font-weight: bold; }
+ .highlight .code .comment {
+ color: rgba(149, 165, 166, 0.8); }
+ .highlight .code .meta-keyword {
+ color: #728e00; }
+ .highlight .code .meta {
+ color: #728e00;
+ color: #434f54; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .function {
+ color: #728e00; }
+ .highlight .code .number {
+ color: #8a7b52; }
diff --git a/source/css/highlights/arduino-light.scss b/source/css/highlights/arduino-light.scss
deleted file mode 100644
index 36da14f..0000000
--- a/source/css/highlights/arduino-light.scss
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
-
-Arduino® Light Theme - Stefania Mellai
-
-*/
-
-.highlight {
- color: #434f54;
- background: #fff;
-
- .code {
- .subst {
- color: #434f54;
- }
-
- .keyword, .attribute, .selector-tag, .doctag, .name {
- color: #00979d;
- }
-
- .built_in, .literal, .bullet, .code, .addition {
- color: #d35400;
- }
-
- .regexp, .symbol, .variable, .template-variable, .link, .selector-attr, .selector-pseudo {
- color: #00979d;
- }
-
- .type, .string, .selector-id, .selector-class, .quote, .template-tag, .deletion {
- color: #005c5f;
- }
-
- .title, .section {
- color: #800;
- font-weight: bold;
- }
-
- .comment {
- color: rgba(149, 165, 166, 0.8);
- }
-
- .meta-keyword {
- color: #728e00;
- }
-
- .meta {
- color: #728e00;
- color: #434f54;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
-
- .function {
- color: #728e00;
- }
-
- .number {
- color: #8a7b52;
- }
- }
-}
diff --git a/source/css/highlights/arta.css b/source/css/highlights/arta.css
new file mode 100644
index 0000000..5c7d1e1
--- /dev/null
+++ b/source/css/highlights/arta.css
@@ -0,0 +1,27 @@
+/*
+Date: 17.V.2011
+Author: pumbur
+*/
+.highlight {
+ color: #aaa;
+ background: #222; }
+ .highlight .code .subst {
+ color: #aaa; }
+ .highlight .code .section {
+ color: #fff; }
+ .highlight .code .comment, .highlight .code .quote, .highlight .code .meta {
+ color: #444; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .regexp {
+ color: #fc3; }
+ .highlight .code .number, .highlight .code .addition {
+ color: #0c6; }
+ .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .link {
+ color: #32aaee; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #64a; }
+ .highlight .code .title, .highlight .code .variable, .highlight .code .deletion, .highlight .code .template-tag {
+ color: #b16; }
+ .highlight .code .section, .highlight .code .doctag, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .emphasis {
+ font-style: italic; }
diff --git a/source/css/highlights/arta.scss b/source/css/highlights/arta.scss
deleted file mode 100644
index 070bad0..0000000
--- a/source/css/highlights/arta.scss
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
-Date: 17.V.2011
-Author: pumbur
-*/
-
-.highlight {
- color: #aaa;
- background: #222;
-
- .code {
- .subst {
- color: #aaa;
- }
-
- .section {
- color: #fff;
- }
-
- .comment, .quote, .meta {
- color: #444;
- }
-
- .string, .symbol, .bullet, .regexp {
- color: #fc3;
- }
-
- .number, .addition {
- color: #0c6;
- }
-
- .built_in, .builtin-name, .literal, .type, .template-variable, .attribute, .link {
- color: #32aaee;
- }
-
- .keyword, .selector-tag, .name, .selector-id, .selector-class {
- color: #64a;
- }
-
- .title, .variable, .deletion, .template-tag {
- color: #b16;
- }
-
- .section, .doctag, .strong {
- font-weight: bold;
- }
-
- .emphasis {
- font-style: italic;
- }
- }
-}
diff --git a/source/css/highlights/ascetic.css b/source/css/highlights/ascetic.css
new file mode 100644
index 0000000..90ed2f6
--- /dev/null
+++ b/source/css/highlights/ascetic.css
@@ -0,0 +1,16 @@
+/*
+
+Original style from softwaremaniacs.org (c) Ivan Sagalaev
+
+*/
+.highlight {
+ color: #000;
+ background: #fff; }
+ .highlight .code .string, .highlight .code .variable, .highlight .code .template-variable, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .section, .highlight .code .addition, .highlight .code .attribute, .highlight .code .link {
+ color: #888; }
+ .highlight .code .comment, .highlight .code .quote, .highlight .code .meta, .highlight .code .deletion {
+ color: #ccc; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .section, .highlight .code .name, .highlight .code .type, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .emphasis {
+ font-style: italic; }
diff --git a/source/css/highlights/ascetic.scss b/source/css/highlights/ascetic.scss
deleted file mode 100644
index 2edea44..0000000
--- a/source/css/highlights/ascetic.scss
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
-
-Original style from softwaremaniacs.org (c) Ivan Sagalaev
-
-*/
-
-.highlight {
- color: #000;
- background: #fff;
-
- .code {
- .string, .variable, .template-variable, .symbol, .bullet, .section, .addition, .attribute, .link {
- color: #888;
- }
-
- .comment, .quote, .meta, .deletion {
- color: #ccc;
- }
-
- .keyword, .selector-tag, .section, .name, .type, .strong {
- font-weight: bold;
- }
-
- .emphasis {
- font-style: italic;
- }
- }
-}
diff --git a/source/css/highlights/atelier-cave-dark.css b/source/css/highlights/atelier-cave-dark.css
new file mode 100644
index 0000000..fc8bf3d
--- /dev/null
+++ b/source/css/highlights/atelier-cave-dark.css
@@ -0,0 +1,30 @@
+/* Base16 Atelier Cave Dark - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #8b8792;
+ background: #19171c; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #7e7887; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .regexp, .highlight .code .link, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #be4678; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #aa573c; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #2a9292; }
+ .highlight .code .title, .highlight .code .section {
+ color: #576ddb; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #955ae7; }
+ .highlight .code .deletion, .highlight .code .addition {
+ color: #19171c;
+ display: inline-block;
+ width: 100%; }
+ .highlight .code .deletion {
+ background-color: #be4678; }
+ .highlight .code .addition {
+ background-color: #2a9292; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-cave-dark.scss b/source/css/highlights/atelier-cave-dark.scss
deleted file mode 100644
index 84c5412..0000000
--- a/source/css/highlights/atelier-cave-dark.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-/* Base16 Atelier Cave Dark - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #8b8792;
- background: #19171c;
-
- .code {
- .comment, .quote {
- color: #7e7887;
- }
-
- .variable, .template-variable, .attribute, .regexp, .link, .tag, .name, .selector-id, .selector-class {
- color: #be4678;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #aa573c;
- }
-
- .string, .symbol, .bullet {
- color: #2a9292;
- }
-
- .title, .section {
- color: #576ddb;
- }
-
- .keyword, .selector-tag {
- color: #955ae7;
- }
-
- .deletion, .addition {
- color: #19171c;
- display: inline-block;
- width: 100%;
- }
-
- .deletion {
- background-color: #be4678;
- }
-
- .addition {
- background-color: #2a9292;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-cave-light.css b/source/css/highlights/atelier-cave-light.css
new file mode 100644
index 0000000..52f6560
--- /dev/null
+++ b/source/css/highlights/atelier-cave-light.css
@@ -0,0 +1,30 @@
+/* Base16 Atelier Cave Light - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #585260;
+ background: #efecf4; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #655f6d; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #be4678; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #aa573c; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #2a9292; }
+ .highlight .code .title, .highlight .code .section {
+ color: #576ddb; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #955ae7; }
+ .highlight .code .deletion, .highlight .code .addition {
+ color: #19171c;
+ display: inline-block;
+ width: 100%; }
+ .highlight .code .deletion {
+ background-color: #be4678; }
+ .highlight .code .addition {
+ background-color: #2a9292; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-cave-light.scss b/source/css/highlights/atelier-cave-light.scss
deleted file mode 100644
index 38ccef1..0000000
--- a/source/css/highlights/atelier-cave-light.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-/* Base16 Atelier Cave Light - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #585260;
- background: #efecf4;
-
- .code {
- .comment, .quote {
- color: #655f6d;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #be4678;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #aa573c;
- }
-
- .string, .symbol, .bullet {
- color: #2a9292;
- }
-
- .title, .section {
- color: #576ddb;
- }
-
- .keyword, .selector-tag {
- color: #955ae7;
- }
-
- .deletion, .addition {
- color: #19171c;
- display: inline-block;
- width: 100%;
- }
-
- .deletion {
- background-color: #be4678;
- }
-
- .addition {
- background-color: #2a9292;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-dune-dark.css b/source/css/highlights/atelier-dune-dark.css
new file mode 100644
index 0000000..c0a462a
--- /dev/null
+++ b/source/css/highlights/atelier-dune-dark.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Dune Dark - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #a6a28c;
+ background: #20201d; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #999580; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #d73737; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #b65611; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #60ac39; }
+ .highlight .code .title, .highlight .code .section {
+ color: #6684e1; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #b854d4; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-dune-dark.scss b/source/css/highlights/atelier-dune-dark.scss
deleted file mode 100644
index 830fd38..0000000
--- a/source/css/highlights/atelier-dune-dark.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Dune Dark - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #a6a28c;
- background: #20201d;
-
- .code {
- .comment, .quote {
- color: #999580;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #d73737;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #b65611;
- }
-
- .string, .symbol, .bullet {
- color: #60ac39;
- }
-
- .title, .section {
- color: #6684e1;
- }
-
- .keyword, .selector-tag {
- color: #b854d4;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-dune-light.css b/source/css/highlights/atelier-dune-light.css
new file mode 100644
index 0000000..c3687e2
--- /dev/null
+++ b/source/css/highlights/atelier-dune-light.css
@@ -0,0 +1,28 @@
+/* Base16 Atelier Dune Light - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #6e6b5e;
+ background: #fefbec; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #7d7a68; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #d73737; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #b65611; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #60ac39; }
+ .highlight .code .title, .highlight .code .section {
+ color: #6684e1; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #b854d4; }
+ .highlight .code .highlight {
+ display: block;
+ overflow-x: auto;
+ background: #fefbec;
+ color: #6e6b5e;
+ padding: 0.5em; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-dune-light.scss b/source/css/highlights/atelier-dune-light.scss
deleted file mode 100644
index c56c3e5..0000000
--- a/source/css/highlights/atelier-dune-light.scss
+++ /dev/null
@@ -1,50 +0,0 @@
-/* Base16 Atelier Dune Light - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #6e6b5e;
- background: #fefbec;
-
- .code {
- .comment, .quote {
- color: #7d7a68;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #d73737;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #b65611;
- }
-
- .string, .symbol, .bullet {
- color: #60ac39;
- }
-
- .title, .section {
- color: #6684e1;
- }
-
- .keyword, .selector-tag {
- color: #b854d4;
- }
-
- .highlight {
- display: block;
- overflow-x: auto;
- background: #fefbec;
- color: #6e6b5e;
- padding: 0.5em;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-estuary-dark.css b/source/css/highlights/atelier-estuary-dark.css
new file mode 100644
index 0000000..a011942
--- /dev/null
+++ b/source/css/highlights/atelier-estuary-dark.css
@@ -0,0 +1,30 @@
+/* Base16 Atelier Estuary Dark - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #929181;
+ background: #22221b; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #878573; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #ba6236; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #ae7313; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #7d9726; }
+ .highlight .code .title, .highlight .code .section {
+ color: #36a166; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #5f9182; }
+ .highlight .code .deletion, .highlight .code .addition {
+ color: #22221b;
+ display: inline-block;
+ width: 100%; }
+ .highlight .code .deletion {
+ background-color: #ba6236; }
+ .highlight .code .addition {
+ background-color: #7d9726; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-estuary-dark.scss b/source/css/highlights/atelier-estuary-dark.scss
deleted file mode 100644
index a88840c..0000000
--- a/source/css/highlights/atelier-estuary-dark.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-/* Base16 Atelier Estuary Dark - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #929181;
- background: #22221b;
-
- .code {
- .comment, .quote {
- color: #878573;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #ba6236;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #ae7313;
- }
-
- .string, .symbol, .bullet {
- color: #7d9726;
- }
-
- .title, .section {
- color: #36a166;
- }
-
- .keyword, .selector-tag {
- color: #5f9182;
- }
-
- .deletion, .addition {
- color: #22221b;
- display: inline-block;
- width: 100%;
- }
-
- .deletion {
- background-color: #ba6236;
- }
-
- .addition {
- background-color: #7d9726;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-estuary-light.css b/source/css/highlights/atelier-estuary-light.css
new file mode 100644
index 0000000..60e5d37
--- /dev/null
+++ b/source/css/highlights/atelier-estuary-light.css
@@ -0,0 +1,30 @@
+/* Base16 Atelier Estuary Light - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #5f5e4e;
+ background: #f4f3ec; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #6c6b5a; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #ba6236; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #ae7313; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #7d9726; }
+ .highlight .code .title, .highlight .code .section {
+ color: #36a166; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #5f9182; }
+ .highlight .code .deletion, .highlight .code .addition {
+ color: #22221b;
+ display: inline-block;
+ width: 100%; }
+ .highlight .code .deletion {
+ background-color: #ba6236; }
+ .highlight .code .addition {
+ background-color: #7d9726; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-estuary-light.scss b/source/css/highlights/atelier-estuary-light.scss
deleted file mode 100644
index d4c9dae..0000000
--- a/source/css/highlights/atelier-estuary-light.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-/* Base16 Atelier Estuary Light - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #5f5e4e;
- background: #f4f3ec;
-
- .code {
- .comment, .quote {
- color: #6c6b5a;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #ba6236;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #ae7313;
- }
-
- .string, .symbol, .bullet {
- color: #7d9726;
- }
-
- .title, .section {
- color: #36a166;
- }
-
- .keyword, .selector-tag {
- color: #5f9182;
- }
-
- .deletion, .addition {
- color: #22221b;
- display: inline-block;
- width: 100%;
- }
-
- .deletion {
- background-color: #ba6236;
- }
-
- .addition {
- background-color: #7d9726;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-forest-dark.css b/source/css/highlights/atelier-forest-dark.css
new file mode 100644
index 0000000..0a38ad7
--- /dev/null
+++ b/source/css/highlights/atelier-forest-dark.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Forest Dark - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #a8a19f;
+ background: #1b1918; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #9c9491; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #f22c40; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #df5320; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #7b9726; }
+ .highlight .code .title, .highlight .code .section {
+ color: #407ee7; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #6666ea; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-forest-dark.scss b/source/css/highlights/atelier-forest-dark.scss
deleted file mode 100644
index 8378b9f..0000000
--- a/source/css/highlights/atelier-forest-dark.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Forest Dark - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #a8a19f;
- background: #1b1918;
-
- .code {
- .comment, .quote {
- color: #9c9491;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #f22c40;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #df5320;
- }
-
- .string, .symbol, .bullet {
- color: #7b9726;
- }
-
- .title, .section {
- color: #407ee7;
- }
-
- .keyword, .selector-tag {
- color: #6666ea;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-forest-light.css b/source/css/highlights/atelier-forest-light.css
new file mode 100644
index 0000000..00a429a
--- /dev/null
+++ b/source/css/highlights/atelier-forest-light.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Forest Light - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #68615e;
+ background: #f1efee; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #766e6b; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #f22c40; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #df5320; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #7b9726; }
+ .highlight .code .title, .highlight .code .section {
+ color: #407ee7; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #6666ea; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-forest-light.scss b/source/css/highlights/atelier-forest-light.scss
deleted file mode 100644
index 49f910f..0000000
--- a/source/css/highlights/atelier-forest-light.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Forest Light - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #68615e;
- background: #f1efee;
-
- .code {
- .comment, .quote {
- color: #766e6b;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #f22c40;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #df5320;
- }
-
- .string, .symbol, .bullet {
- color: #7b9726;
- }
-
- .title, .section {
- color: #407ee7;
- }
-
- .keyword, .selector-tag {
- color: #6666ea;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-heath-dark.css b/source/css/highlights/atelier-heath-dark.css
new file mode 100644
index 0000000..2f3fcc2
--- /dev/null
+++ b/source/css/highlights/atelier-heath-dark.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Heath Dark - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #ab9bab;
+ background: #1b181b; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #9e8f9e; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #ca402b; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #a65926; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #918b3b; }
+ .highlight .code .title, .highlight .code .section {
+ color: #516aec; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #7b59c0; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-heath-dark.scss b/source/css/highlights/atelier-heath-dark.scss
deleted file mode 100644
index 0dd4cfa..0000000
--- a/source/css/highlights/atelier-heath-dark.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Heath Dark - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #ab9bab;
- background: #1b181b;
-
- .code {
- .comment, .quote {
- color: #9e8f9e;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #ca402b;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #a65926;
- }
-
- .string, .symbol, .bullet {
- color: #918b3b;
- }
-
- .title, .section {
- color: #516aec;
- }
-
- .keyword, .selector-tag {
- color: #7b59c0;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-heath-light.css b/source/css/highlights/atelier-heath-light.css
new file mode 100644
index 0000000..4cdcfc3
--- /dev/null
+++ b/source/css/highlights/atelier-heath-light.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Heath Light - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #695d69;
+ background: #f7f3f7; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #776977; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #ca402b; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #a65926; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #918b3b; }
+ .highlight .code .title, .highlight .code .section {
+ color: #516aec; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #7b59c0; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-heath-light.scss b/source/css/highlights/atelier-heath-light.scss
deleted file mode 100644
index 8f607b3..0000000
--- a/source/css/highlights/atelier-heath-light.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Heath Light - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #695d69;
- background: #f7f3f7;
-
- .code {
- .comment, .quote {
- color: #776977;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #ca402b;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #a65926;
- }
-
- .string, .symbol, .bullet {
- color: #918b3b;
- }
-
- .title, .section {
- color: #516aec;
- }
-
- .keyword, .selector-tag {
- color: #7b59c0;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-lakeside-dark.css b/source/css/highlights/atelier-lakeside-dark.css
new file mode 100644
index 0000000..026c829
--- /dev/null
+++ b/source/css/highlights/atelier-lakeside-dark.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Lakeside Dark - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #7ea2b4;
+ background: #161b1d; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #7195a8; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #d22d72; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #935c25; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #568c3b; }
+ .highlight .code .title, .highlight .code .section {
+ color: #257fad; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #6b6bb8; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-lakeside-dark.scss b/source/css/highlights/atelier-lakeside-dark.scss
deleted file mode 100644
index ce79ab1..0000000
--- a/source/css/highlights/atelier-lakeside-dark.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Lakeside Dark - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #7ea2b4;
- background: #161b1d;
-
- .code {
- .comment, .quote {
- color: #7195a8;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #d22d72;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #935c25;
- }
-
- .string, .symbol, .bullet {
- color: #568c3b;
- }
-
- .title, .section {
- color: #257fad;
- }
-
- .keyword, .selector-tag {
- color: #6b6bb8;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-lakeside-light.css b/source/css/highlights/atelier-lakeside-light.css
new file mode 100644
index 0000000..a006282
--- /dev/null
+++ b/source/css/highlights/atelier-lakeside-light.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Lakeside Light - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #516d7b;
+ background: #ebf8ff; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #5a7b8c; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #d22d72; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #935c25; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #568c3b; }
+ .highlight .code .title, .highlight .code .section {
+ color: #257fad; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #6b6bb8; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-lakeside-light.scss b/source/css/highlights/atelier-lakeside-light.scss
deleted file mode 100644
index 4ceefd2..0000000
--- a/source/css/highlights/atelier-lakeside-light.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Lakeside Light - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #516d7b;
- background: #ebf8ff;
-
- .code {
- .comment, .quote {
- color: #5a7b8c;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #d22d72;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #935c25;
- }
-
- .string, .symbol, .bullet {
- color: #568c3b;
- }
-
- .title, .section {
- color: #257fad;
- }
-
- .keyword, .selector-tag {
- color: #6b6bb8;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-plateau-dark.css b/source/css/highlights/atelier-plateau-dark.css
new file mode 100644
index 0000000..1e5108d
--- /dev/null
+++ b/source/css/highlights/atelier-plateau-dark.css
@@ -0,0 +1,30 @@
+/* Base16 Atelier Plateau Dark - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #8a8585;
+ background: #1b1818; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #7e7777; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #ca4949; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #b45a3c; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #4b8b8b; }
+ .highlight .code .title, .highlight .code .section {
+ color: #7272ca; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #8464c4; }
+ .highlight .code .deletion, .highlight .code .addition {
+ color: #1b1818;
+ display: inline-block;
+ width: 100%; }
+ .highlight .code .deletion {
+ background-color: #ca4949; }
+ .highlight .code .addition {
+ background-color: #4b8b8b; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-plateau-dark.scss b/source/css/highlights/atelier-plateau-dark.scss
deleted file mode 100644
index fcf58a7..0000000
--- a/source/css/highlights/atelier-plateau-dark.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-/* Base16 Atelier Plateau Dark - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #8a8585;
- background: #1b1818;
-
- .code {
- .comment, .quote {
- color: #7e7777;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #ca4949;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #b45a3c;
- }
-
- .string, .symbol, .bullet {
- color: #4b8b8b;
- }
-
- .title, .section {
- color: #7272ca;
- }
-
- .keyword, .selector-tag {
- color: #8464c4;
- }
-
- .deletion, .addition {
- color: #1b1818;
- display: inline-block;
- width: 100%;
- }
-
- .deletion {
- background-color: #ca4949;
- }
-
- .addition {
- background-color: #4b8b8b;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-plateau-light.css b/source/css/highlights/atelier-plateau-light.css
new file mode 100644
index 0000000..89e2ff3
--- /dev/null
+++ b/source/css/highlights/atelier-plateau-light.css
@@ -0,0 +1,30 @@
+/* Base16 Atelier Plateau Light - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #585050;
+ background: #f4ecec; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #655d5d; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #ca4949; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #b45a3c; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #4b8b8b; }
+ .highlight .code .title, .highlight .code .section {
+ color: #7272ca; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #8464c4; }
+ .highlight .code .deletion, .highlight .code .addition {
+ color: #1b1818;
+ display: inline-block;
+ width: 100%; }
+ .highlight .code .deletion {
+ background-color: #ca4949; }
+ .highlight .code .addition {
+ background-color: #4b8b8b; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-plateau-light.scss b/source/css/highlights/atelier-plateau-light.scss
deleted file mode 100644
index 7803011..0000000
--- a/source/css/highlights/atelier-plateau-light.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-/* Base16 Atelier Plateau Light - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #585050;
- background: #f4ecec;
-
- .code {
- .comment, .quote {
- color: #655d5d;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #ca4949;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #b45a3c;
- }
-
- .string, .symbol, .bullet {
- color: #4b8b8b;
- }
-
- .title, .section {
- color: #7272ca;
- }
-
- .keyword, .selector-tag {
- color: #8464c4;
- }
-
- .deletion, .addition {
- color: #1b1818;
- display: inline-block;
- width: 100%;
- }
-
- .deletion {
- background-color: #ca4949;
- }
-
- .addition {
- background-color: #4b8b8b;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-savanna-dark.css b/source/css/highlights/atelier-savanna-dark.css
new file mode 100644
index 0000000..a1b511f
--- /dev/null
+++ b/source/css/highlights/atelier-savanna-dark.css
@@ -0,0 +1,30 @@
+/* Base16 Atelier Savanna Dark - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #87928a;
+ background: #171c19; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #78877d; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #b16139; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #9f713c; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #489963; }
+ .highlight .code .title, .highlight .code .section {
+ color: #478c90; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #55859b; }
+ .highlight .code .deletion, .highlight .code .addition {
+ color: #171c19;
+ display: inline-block;
+ width: 100%; }
+ .highlight .code .deletion {
+ background-color: #b16139; }
+ .highlight .code .addition {
+ background-color: #489963; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-savanna-dark.scss b/source/css/highlights/atelier-savanna-dark.scss
deleted file mode 100644
index 978b9c3..0000000
--- a/source/css/highlights/atelier-savanna-dark.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-/* Base16 Atelier Savanna Dark - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #87928a;
- background: #171c19;
-
- .code {
- .comment, .quote {
- color: #78877d;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #b16139;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #9f713c;
- }
-
- .string, .symbol, .bullet {
- color: #489963;
- }
-
- .title, .section {
- color: #478c90;
- }
-
- .keyword, .selector-tag {
- color: #55859b;
- }
-
- .deletion, .addition {
- color: #171c19;
- display: inline-block;
- width: 100%;
- }
-
- .deletion {
- background-color: #b16139;
- }
-
- .addition {
- background-color: #489963;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-savanna-light.css b/source/css/highlights/atelier-savanna-light.css
new file mode 100644
index 0000000..190e386
--- /dev/null
+++ b/source/css/highlights/atelier-savanna-light.css
@@ -0,0 +1,30 @@
+/* Base16 Atelier Savanna Light - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #526057;
+ background: #ecf4ee; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #5f6d64; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #b16139; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #9f713c; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #489963; }
+ .highlight .code .title, .highlight .code .section {
+ color: #478c90; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #55859b; }
+ .highlight .code .deletion, .highlight .code .addition {
+ color: #171c19;
+ display: inline-block;
+ width: 100%; }
+ .highlight .code .deletion {
+ background-color: #b16139; }
+ .highlight .code .addition {
+ background-color: #489963; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-savanna-light.scss b/source/css/highlights/atelier-savanna-light.scss
deleted file mode 100644
index 63c762e..0000000
--- a/source/css/highlights/atelier-savanna-light.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-/* Base16 Atelier Savanna Light - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #526057;
- background: #ecf4ee;
-
- .code {
- .comment, .quote {
- color: #5f6d64;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #b16139;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #9f713c;
- }
-
- .string, .symbol, .bullet {
- color: #489963;
- }
-
- .title, .section {
- color: #478c90;
- }
-
- .keyword, .selector-tag {
- color: #55859b;
- }
-
- .deletion, .addition {
- color: #171c19;
- display: inline-block;
- width: 100%;
- }
-
- .deletion {
- background-color: #b16139;
- }
-
- .addition {
- background-color: #489963;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-seaside-dark.css b/source/css/highlights/atelier-seaside-dark.css
new file mode 100644
index 0000000..415a54d
--- /dev/null
+++ b/source/css/highlights/atelier-seaside-dark.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Seaside Dark - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #8ca68c;
+ background: #131513; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #809980; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #e6193c; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #87711d; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #29a329; }
+ .highlight .code .title, .highlight .code .section {
+ color: #3d62f5; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #ad2bee; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-seaside-dark.scss b/source/css/highlights/atelier-seaside-dark.scss
deleted file mode 100644
index 980e623..0000000
--- a/source/css/highlights/atelier-seaside-dark.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Seaside Dark - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #8ca68c;
- background: #131513;
-
- .code {
- .comment, .quote {
- color: #809980;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #e6193c;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #87711d;
- }
-
- .string, .symbol, .bullet {
- color: #29a329;
- }
-
- .title, .section {
- color: #3d62f5;
- }
-
- .keyword, .selector-tag {
- color: #ad2bee;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-seaside-light.css b/source/css/highlights/atelier-seaside-light.css
new file mode 100644
index 0000000..08837c2
--- /dev/null
+++ b/source/css/highlights/atelier-seaside-light.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Seaside Light - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #5e6e5e;
+ background: #f4fbf4; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #687d68; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #e6193c; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #87711d; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #29a329; }
+ .highlight .code .title, .highlight .code .section {
+ color: #3d62f5; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #ad2bee; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-seaside-light.scss b/source/css/highlights/atelier-seaside-light.scss
deleted file mode 100644
index b26899a..0000000
--- a/source/css/highlights/atelier-seaside-light.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Seaside Light - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #5e6e5e;
- background: #f4fbf4;
-
- .code {
- .comment, .quote {
- color: #687d68;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #e6193c;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #87711d;
- }
-
- .string, .symbol, .bullet {
- color: #29a329;
- }
-
- .title, .section {
- color: #3d62f5;
- }
-
- .keyword, .selector-tag {
- color: #ad2bee;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-sulphurpool-dark.css b/source/css/highlights/atelier-sulphurpool-dark.css
new file mode 100644
index 0000000..c41cf92
--- /dev/null
+++ b/source/css/highlights/atelier-sulphurpool-dark.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Sulphurpool Dark - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #979db4;
+ background: #202746; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #898ea4; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #c94922; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #c76b29; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #ac9739; }
+ .highlight .code .title, .highlight .code .section {
+ color: #3d8fd1; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #6679cc; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-sulphurpool-dark.scss b/source/css/highlights/atelier-sulphurpool-dark.scss
deleted file mode 100644
index 6265c7d..0000000
--- a/source/css/highlights/atelier-sulphurpool-dark.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Sulphurpool Dark - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #979db4;
- background: #202746;
-
- .code {
- .comment, .quote {
- color: #898ea4;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #c94922;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #c76b29;
- }
-
- .string, .symbol, .bullet {
- color: #ac9739;
- }
-
- .title, .section {
- color: #3d8fd1;
- }
-
- .keyword, .selector-tag {
- color: #6679cc;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atelier-sulphurpool-light.css b/source/css/highlights/atelier-sulphurpool-light.css
new file mode 100644
index 0000000..52f1cc4
--- /dev/null
+++ b/source/css/highlights/atelier-sulphurpool-light.css
@@ -0,0 +1,22 @@
+/* Base16 Atelier Sulphurpool Light - Theme */
+/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */
+/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
+.highlight {
+ color: #5e6687;
+ background: #f5f7ff; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #6b7394; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .regexp, .highlight .code .link, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #c94922; }
+ .highlight .code .number, .highlight .code .meta, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #c76b29; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet {
+ color: #ac9739; }
+ .highlight .code .title, .highlight .code .section {
+ color: #3d8fd1; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #6679cc; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/atelier-sulphurpool-light.scss b/source/css/highlights/atelier-sulphurpool-light.scss
deleted file mode 100644
index cd692c0..0000000
--- a/source/css/highlights/atelier-sulphurpool-light.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Base16 Atelier Sulphurpool Light - Theme */
-/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */
-/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
-
-.highlight {
- color: #5e6687;
- background: #f5f7ff;
-
- .code {
- .comment, .quote {
- color: #6b7394;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .regexp, .link, .selector-id, .selector-class {
- color: #c94922;
- }
-
- .number, .meta, .built_in, .builtin-name, .literal, .type, .params {
- color: #c76b29;
- }
-
- .string, .symbol, .bullet {
- color: #ac9739;
- }
-
- .title, .section {
- color: #3d8fd1;
- }
-
- .keyword, .selector-tag {
- color: #6679cc;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/atom-one-dark.scss b/source/css/highlights/atom-one-dark.css
similarity index 68%
rename from source/css/highlights/atom-one-dark.scss
rename to source/css/highlights/atom-one-dark.css
index c5cdc68..8f73fb7 100644
--- a/source/css/highlights/atom-one-dark.scss
+++ b/source/css/highlights/atom-one-dark.css
@@ -1,56 +1,43 @@
/*
* converted by ProNomad(github.com/SungYeolWoo) from highlightjs
*/
-
.highlight {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #abb2bf;
- background: #282c34;
-}
+ background: #282c34; }
.comment, .quote {
color: #5c6370;
- font-style: italic;
-}
+ font-style: italic; }
.doctag, .keyword, .formula {
- color: #c678dd;
-}
+ color: #c678dd; }
.section, .name, .selector-tag, .deletion, .subst {
- color: #e06c75;
-}
+ color: #e06c75; }
.literal {
- color: #56b6c2;
-}
+ color: #56b6c2; }
.string, .regexp, .addition, .attribute, .meta-string {
- color: #98c379;
-}
+ color: #98c379; }
.built_in, .class .title {
- color: #e6c07b;
-}
+ color: #e6c07b; }
.attr, .variable, .template-variable, .type, .selector-class, .selector-attr, .selector-pseudo, .number {
- color: #d19a66;
-}
+ color: #d19a66; }
.symbol, .bullet, .link, .meta, .selector-id, .title {
- color: #61aeee;
-}
+ color: #61aeee; }
.emphasis {
- font-style: italic;
-}
+ font-style: italic; }
.strong {
- font-weight: bold;
-}
+ font-weight: bold; }
.link {
- text-decoration: underline;
-}
+ text-decoration: underline; }
diff --git a/source/css/highlights/atom-one-light.scss b/source/css/highlights/atom-one-light.css
similarity index 68%
rename from source/css/highlights/atom-one-light.scss
rename to source/css/highlights/atom-one-light.css
index f3592b3..72ec956 100644
--- a/source/css/highlights/atom-one-light.scss
+++ b/source/css/highlights/atom-one-light.css
@@ -1,56 +1,43 @@
/*
* converted by ProNomad(github.com/SungYeolWoo) from highlightjs
*/
-
.highlight {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #383a42;
- background: #fafafa;
-}
+ background: #fafafa; }
.comment, .quote {
color: #a0a1a7;
- font-style: italic;
-}
+ font-style: italic; }
.doctag, .keyword, .formula {
- color: #a626a4;
-}
+ color: #a626a4; }
.section, .name, .selector-tag, .deletion, .subst {
- color: #e45649;
-}
+ color: #e45649; }
.literal {
- color: #0184bb;
-}
+ color: #0184bb; }
.string, .regexp, .addition, .attribute, .meta-string {
- color: #50a14f;
-}
+ color: #50a14f; }
.built_in, .class .title {
- color: #c18401;
-}
+ color: #c18401; }
.attr, .variable, .template-variable, .type, .selector-class, .selector-attr, .selector-pseudo, .number {
- color: #986801;
-}
+ color: #986801; }
.symbol, .bullet, .link, .meta, .selector-id, .title {
- color: #4078f2;
-}
+ color: #4078f2; }
.emphasis {
- font-style: italic;
-}
+ font-style: italic; }
.strong {
- font-weight: bold;
-}
+ font-weight: bold; }
.link {
- text-decoration: underline;
-}
+ text-decoration: underline; }
diff --git a/source/css/highlights/brown-paper.css b/source/css/highlights/brown-paper.css
new file mode 100644
index 0000000..929df84
--- /dev/null
+++ b/source/css/highlights/brown-paper.css
@@ -0,0 +1,21 @@
+/*
+
+Brown Paper style from goldblog.com.ua (c) Zaripov Yura
+
+*/
+.highlight {
+ color: #363c69;
+ background: #b7a68e url("brown-papersq.png"); }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal {
+ color: #059;
+ font-weight: bold; }
+ .highlight .code .highlight, .highlight .code .subst {
+ color: #363c69; }
+ .highlight .code .string, .highlight .code .title, .highlight .code .section, .highlight .code .type, .highlight .code .attribute, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .built_in, .highlight .code .addition, .highlight .code .variable, .highlight .code .template-tag, .highlight .code .template-variable, .highlight .code .link, .highlight .code .name {
+ color: #2c009f; }
+ .highlight .code .comment, .highlight .code .quote, .highlight .code .meta, .highlight .code .deletion {
+ color: #802022; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .doctag, .highlight .code .title, .highlight .code .section, .highlight .code .type, .highlight .code .name, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .emphasis {
+ font-style: italic; }
diff --git a/source/css/highlights/brown-paper.scss b/source/css/highlights/brown-paper.scss
deleted file mode 100644
index 854a137..0000000
--- a/source/css/highlights/brown-paper.scss
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
-
-Brown Paper style from goldblog.com.ua (c) Zaripov Yura
-
-*/
-
-.highlight {
- color: #363c69;
- background: #b7a68e url("brown-papersq.png");
-
- .code {
- .keyword, .selector-tag, .literal {
- color: #059;
- font-weight: bold;
- }
-
- .highlight, .subst {
- color: #363c69;
- }
-
- .string, .title, .section, .type, .attribute, .symbol, .bullet, .built_in, .addition, .variable, .template-tag, .template-variable, .link, .name {
- color: #2c009f;
- }
-
- .comment, .quote, .meta, .deletion {
- color: #802022;
- }
-
- .keyword, .selector-tag, .literal, .doctag, .title, .section, .type, .name, .strong {
- font-weight: bold;
- }
-
- .emphasis {
- font-style: italic;
- }
- }
-}
diff --git a/source/css/highlights/codepen-embed.css b/source/css/highlights/codepen-embed.css
new file mode 100644
index 0000000..b772117
--- /dev/null
+++ b/source/css/highlights/codepen-embed.css
@@ -0,0 +1,20 @@
+/*
+ codepen.io Embed Theme
+ Author: Justin Perry
+ Original theme - https://github.com/chriskempson/tomorrow-theme
+*/
+.highlight {
+ color: #fff;
+ background: #222; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #777; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag, .highlight .code .regexp, .highlight .code .meta, .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .params, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .link, .highlight .code .deletion {
+ color: #ab875d; }
+ .highlight .code .section, .highlight .code .title, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .type, .highlight .code .attribute {
+ color: #9b869b; }
+ .highlight .code .string, .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .addition {
+ color: #8f9c6c; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/codepen-embed.scss b/source/css/highlights/codepen-embed.scss
deleted file mode 100644
index 7cee7e7..0000000
--- a/source/css/highlights/codepen-embed.scss
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- codepen.io Embed Theme
- Author: Justin Perry
- Original theme - https://github.com/chriskempson/tomorrow-theme
-*/
-
-.highlight {
- color: #fff;
- background: #222;
-
- .code {
- .comment, .quote {
- color: #777;
- }
-
- .variable, .template-variable, .tag, .regexp, .meta, .number, .built_in, .builtin-name, .literal, .params, .symbol, .bullet, .link, .deletion {
- color: #ab875d;
- }
-
- .section, .title, .name, .selector-id, .selector-class, .type, .attribute {
- color: #9b869b;
- }
-
- .string, .keyword, .selector-tag, .addition {
- color: #8f9c6c;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/color-brewer.css b/source/css/highlights/color-brewer.css
new file mode 100644
index 0000000..5b9216c
--- /dev/null
+++ b/source/css/highlights/color-brewer.css
@@ -0,0 +1,27 @@
+@charset "UTF-8";
+/*
+
+Colorbrewer theme
+Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock
+Ported by Fabrício Tavares de Oliveira
+
+*/
+.highlight {
+ color: #000;
+ background: #fff; }
+ .highlight .code .subst {
+ color: #000; }
+ .highlight .code .string, .highlight .code .meta, .highlight .code .symbol, .highlight .code .template-tag, .highlight .code .template-variable, .highlight .code .addition {
+ color: #756bb1; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #636363; }
+ .highlight .code .number, .highlight .code .regexp, .highlight .code .literal, .highlight .code .bullet, .highlight .code .link {
+ color: #31a354; }
+ .highlight .code .deletion, .highlight .code .variable {
+ color: #88f; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .title, .highlight .code .section, .highlight .code .built_in, .highlight .code .doctag, .highlight .code .type, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .strong {
+ color: #3182bd; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .attribute {
+ color: #e6550d; }
diff --git a/source/css/highlights/color-brewer.scss b/source/css/highlights/color-brewer.scss
deleted file mode 100644
index 34f449f..0000000
--- a/source/css/highlights/color-brewer.scss
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
-
-Colorbrewer theme
-Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock
-Ported by Fabrício Tavares de Oliveira
-
-*/
-
-.highlight {
- color: #000;
- background: #fff;
-
- .code {
- .subst {
- color: #000;
- }
-
- .string, .meta, .symbol, .template-tag, .template-variable, .addition {
- color: #756bb1;
- }
-
- .comment, .quote {
- color: #636363;
- }
-
- .number, .regexp, .literal, .bullet, .link {
- color: #31a354;
- }
-
- .deletion, .variable {
- color: #88f;
- }
-
- .keyword, .selector-tag, .title, .section, .built_in, .doctag, .type, .tag, .name, .selector-id, .selector-class, .strong {
- color: #3182bd;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .attribute {
- color: #e6550d;
- }
- }
-}
diff --git a/source/css/highlights/dark.css b/source/css/highlights/dark.css
new file mode 100644
index 0000000..7148944
--- /dev/null
+++ b/source/css/highlights/dark.css
@@ -0,0 +1,20 @@
+/*
+
+Dark style from softwaremaniacs.org (c) Ivan Sagalaev
+
+*/
+.highlight {
+ color: #ddd;
+ background: #444; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .section, .highlight .code .link {
+ color: #fff; }
+ .highlight .code .subst {
+ color: #ddd; }
+ .highlight .code .string, .highlight .code .title, .highlight .code .name, .highlight .code .type, .highlight .code .attribute, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .built_in, .highlight .code .addition, .highlight .code .variable, .highlight .code .template-tag, .highlight .code .template-variable {
+ color: #d88; }
+ .highlight .code .comment, .highlight .code .quote, .highlight .code .deletion, .highlight .code .meta {
+ color: #777; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .title, .highlight .code .section, .highlight .code .doctag, .highlight .code .type, .highlight .code .name, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .emphasis {
+ font-style: italic; }
diff --git a/source/css/highlights/dark.scss b/source/css/highlights/dark.scss
deleted file mode 100644
index 284000e..0000000
--- a/source/css/highlights/dark.scss
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
-
-Dark style from softwaremaniacs.org (c) Ivan Sagalaev
-
-*/
-
-.highlight {
- color: #ddd;
- background: #444;
-
- .code {
- .keyword, .selector-tag, .literal, .section, .link {
- color: #fff;
- }
-
- .subst {
- color: #ddd;
- }
-
- .string, .title, .name, .type, .attribute, .symbol, .bullet, .built_in, .addition, .variable, .template-tag, .template-variable {
- color: #d88;
- }
-
- .comment, .quote, .deletion, .meta {
- color: #777;
- }
-
- .keyword, .selector-tag, .literal, .title, .section, .doctag, .type, .name, .strong {
- font-weight: bold;
- }
-
- .emphasis {
- font-style: italic;
- }
- }
-}
diff --git a/source/css/highlights/darkula.css b/source/css/highlights/darkula.css
new file mode 100644
index 0000000..e5cc20b
--- /dev/null
+++ b/source/css/highlights/darkula.css
@@ -0,0 +1,24 @@
+/*
+
+Darkula color scheme from the JetBrains family of IDEs
+
+*/
+.highlight {
+ color: #bababa;
+ background: #2b2b2b; }
+ .highlight .code .strong, .highlight .code .emphasis {
+ color: #a8a8a2; }
+ .highlight .code .bullet, .highlight .code .quote, .highlight .code .link, .highlight .code .number, .highlight .code .regexp, .highlight .code .literal {
+ color: #6896ba; }
+ .highlight .code .code, .highlight .code .selector-class {
+ color: #a6e22e; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .section, .highlight .code .attribute, .highlight .code .name, .highlight .code .variable {
+ color: #cb7832; }
+ .highlight .code .params {
+ color: #b9b9b9; }
+ .highlight .code .string, .highlight .code .subst, .highlight .code .type, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .symbol, .highlight .code .selector-id, .highlight .code .selector-attr, .highlight .code .selector-pseudo, .highlight .code .template-tag, .highlight .code .template-variable, .highlight .code .addition {
+ color: #e0c46c; }
+ .highlight .code .comment, .highlight .code .deletion, .highlight .code .meta {
+ color: #7f7f7f; }
diff --git a/source/css/highlights/darkula.scss b/source/css/highlights/darkula.scss
deleted file mode 100644
index 30d8a91..0000000
--- a/source/css/highlights/darkula.scss
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
-
-Darkula color scheme from the JetBrains family of IDEs
-
-*/
-
-.highlight {
- color: #bababa;
- background: #2b2b2b;
-
- .code {
- .strong, .emphasis {
- color: #a8a8a2;
- }
-
- .bullet, .quote, .link, .number, .regexp, .literal {
- color: #6896ba;
- }
-
- .code, .selector-class {
- color: #a6e22e;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .keyword, .selector-tag, .section, .attribute, .name, .variable {
- color: #cb7832;
- }
-
- .params {
- color: #b9b9b9;
- }
-
- .string, .subst, .type, .built_in, .builtin-name, .symbol, .selector-id, .selector-attr, .selector-pseudo, .template-tag, .template-variable, .addition {
- color: #e0c46c;
- }
-
- .comment, .deletion, .meta {
- color: #7f7f7f;
- }
- }
-}
diff --git a/source/css/highlights/docco.css b/source/css/highlights/docco.css
new file mode 100644
index 0000000..0cbb32c
--- /dev/null
+++ b/source/css/highlights/docco.css
@@ -0,0 +1,44 @@
+/*
+Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
+*/
+.highlight {
+ color: #000;
+ background: #f8f8ff; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #408080;
+ font-style: italic; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .subst {
+ color: #954121; }
+ .highlight .code .number {
+ color: #40a070; }
+ .highlight .code .string, .highlight .code .doctag {
+ color: #219161; }
+ .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .section, .highlight .code .type {
+ color: #19469d; }
+ .highlight .code .params {
+ color: #00f; }
+ .highlight .code .title {
+ color: #458;
+ font-weight: bold; }
+ .highlight .code .tag, .highlight .code .name, .highlight .code .attribute {
+ color: #000080;
+ font-weight: normal; }
+ .highlight .code .variable, .highlight .code .template-variable {
+ color: #008080; }
+ .highlight .code .regexp, .highlight .code .link {
+ color: #b68; }
+ .highlight .code .symbol, .highlight .code .bullet {
+ color: #990073; }
+ .highlight .code .built_in, .highlight .code .builtin-name {
+ color: #0086b3; }
+ .highlight .code .meta {
+ color: #999;
+ font-weight: bold; }
+ .highlight .code .deletion {
+ background: #fdd; }
+ .highlight .code .addition {
+ background: #dfd; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/docco.scss b/source/css/highlights/docco.scss
deleted file mode 100644
index 89fef7b..0000000
--- a/source/css/highlights/docco.scss
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
-Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
-*/
-
-.highlight {
- color: #000;
- background: #f8f8ff;
-
- .code {
- .comment, .quote {
- color: #408080;
- font-style: italic;
- }
-
- .keyword, .selector-tag, .literal, .subst {
- color: #954121;
- }
-
- .number {
- color: #40a070;
- }
-
- .string, .doctag {
- color: #219161;
- }
-
- .selector-id, .selector-class, .section, .type {
- color: #19469d;
- }
-
- .params {
- color: #00f;
- }
-
- .title {
- color: #458;
- font-weight: bold;
- }
-
- .tag, .name, .attribute {
- color: #000080;
- font-weight: normal;
- }
-
- .variable, .template-variable {
- color: #008080;
- }
-
- .regexp, .link {
- color: #b68;
- }
-
- .symbol, .bullet {
- color: #990073;
- }
-
- .built_in, .builtin-name {
- color: #0086b3;
- }
-
- .meta {
- color: #999;
- font-weight: bold;
- }
-
- .deletion {
- background: #fdd;
- }
-
- .addition {
- background: #dfd;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/dracula.css b/source/css/highlights/dracula.css
new file mode 100644
index 0000000..63c0b69
--- /dev/null
+++ b/source/css/highlights/dracula.css
@@ -0,0 +1,64 @@
+.highlight {
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em;
+ background: #282a36;
+ color: #f8f8f2; }
+ .highlight .line {
+ min-height: 1.5em; }
+ .highlight .subst {
+ color: #f8f8f2; }
+ .highlight .keyword,
+ .highlight .selector-tag,
+ .highlight .section,
+ .highlight .link {
+ color: #ff79c6; }
+ .highlight .literal,
+ .highlight .number {
+ color: #bd93f9; }
+ .highlight .function .keyword {
+ color: #8be9fd; }
+ .highlight .title {
+ color: #50fa7b; }
+ .highlight .params {
+ color: #ffb86c; }
+ .highlight .string,
+ .highlight .name,
+ .highlight .type,
+ .highlight .symbol,
+ .highlight .bullet,
+ .highlight .addition,
+ .highlight .variable,
+ .highlight .template-tag,
+ .highlight .template-variable {
+ color: #f1fa8c; }
+ .highlight .string .subst {
+ color: #ff79c6; }
+ .highlight .comment,
+ .highlight .quote,
+ .highlight .deletion,
+ .highlight .meta {
+ color: #6272a4; }
+ .highlight .keyword,
+ .highlight .selector-tag,
+ .highlight .literal,
+ .highlight .title,
+ .highlight .section,
+ .highlight .doctag,
+ .highlight .type,
+ .highlight .name,
+ .highlight .strong {
+ font-weight: bold; }
+ .highlight .emphasis, .highlight .built_in {
+ font-style: italic; }
+ .highlight .built_in {
+ color: #8be9fd; }
+ .highlight .tag .name {
+ color: #ff79c6; }
+ .highlight .tag .attr {
+ color: #50fa7b; }
+ .highlight .selector-id,
+ .highlight .selector-class {
+ color: #50fa7b; }
+ .highlight .attribute {
+ color: #8be9fd; }
diff --git a/source/css/highlights/dracula.scss b/source/css/highlights/dracula.scss
deleted file mode 100644
index 4e0c40d..0000000
--- a/source/css/highlights/dracula.scss
+++ /dev/null
@@ -1,93 +0,0 @@
-// SCSS version Dracula theme by HyunSeob Lee.
-// MIT Licensed.
-// https://draculatheme.com/
-
-.highlight {
- display: block;
- overflow-x: auto;
- padding: 0.5em;
- background: #282a36;
- color: #f8f8f2;
- .line {
- min-height: 1.5em;
- }
- .subst {
- color: #f8f8f2;
- }
- .keyword,
- .selector-tag,
- .section,
- .link {
- color: #ff79c6;
- }
- .literal,
- .number {
- color: #bd93f9;
- }
- .function .keyword {
- color: #8be9fd;
- }
- .title {
- color: #50fa7b;
- }
- .params {
- color: #ffb86c;
- }
- .string,
- .name,
- .type,
- .symbol,
- .bullet,
- .addition,
- .variable,
- .template-tag,
- .template-variable {
- color: #f1fa8c;
- }
- .string .subst {
- color: #ff79c6;
- }
- .comment,
- .quote,
- .deletion,
- .meta {
- color: #6272a4;
- }
- .keyword,
- .selector-tag,
- .literal,
- .title,
- .section,
- .doctag,
- .type,
- .name,
- .strong {
- font-weight: bold;
- }
- .emphasis, .built_in {
- font-style: italic;
- }
- .built_in {
- color: #8be9fd;
- }
-
- // HTML highlighting
- .tag {
- .name {
- color: #ff79c6;
- }
- .attr {
- color: #50fa7b;
- }
- }
-
- // CSS highlighting
- .selector-id,
- .selector-class {
- color: #50fa7b;
- }
-
- .attribute {
- color: #8be9fd;
- }
-}
diff --git a/source/css/highlights/far.css b/source/css/highlights/far.css
new file mode 100644
index 0000000..a4f4b45
--- /dev/null
+++ b/source/css/highlights/far.css
@@ -0,0 +1,24 @@
+/*
+
+FAR Style (c) MajestiC
+
+*/
+.highlight {
+ color: #0ff;
+ background: #000080; }
+ .highlight .code .subst {
+ color: #0ff; }
+ .highlight .code .string, .highlight .code .attribute, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .template-tag, .highlight .code .template-variable, .highlight .code .addition {
+ color: #ff0; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .section, .highlight .code .type, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .variable {
+ color: #fff; }
+ .highlight .code .comment, .highlight .code .quote, .highlight .code .doctag, .highlight .code .deletion {
+ color: #888; }
+ .highlight .code .number, .highlight .code .regexp, .highlight .code .literal, .highlight .code .link {
+ color: #0f0; }
+ .highlight .code .meta {
+ color: #008080; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .title, .highlight .code .section, .highlight .code .name, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .emphasis {
+ font-style: italic; }
diff --git a/source/css/highlights/far.scss b/source/css/highlights/far.scss
deleted file mode 100644
index d9ab596..0000000
--- a/source/css/highlights/far.scss
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
-
-FAR Style (c) MajestiC
-
-*/
-
-.highlight {
- color: #0ff;
- background: #000080;
-
- .code {
- .subst {
- color: #0ff;
- }
-
- .string, .attribute, .symbol, .bullet, .built_in, .builtin-name, .template-tag, .template-variable, .addition {
- color: #ff0;
- }
-
- .keyword, .selector-tag, .section, .type, .name, .selector-id, .selector-class, .variable {
- color: #fff;
- }
-
- .comment, .quote, .doctag, .deletion {
- color: #888;
- }
-
- .number, .regexp, .literal, .link {
- color: #0f0;
- }
-
- .meta {
- color: #008080;
- }
-
- .keyword, .selector-tag, .title, .section, .name, .strong {
- font-weight: bold;
- }
-
- .emphasis {
- font-style: italic;
- }
- }
-}
diff --git a/source/css/highlights/foundation.css b/source/css/highlights/foundation.css
new file mode 100644
index 0000000..980f448
--- /dev/null
+++ b/source/css/highlights/foundation.css
@@ -0,0 +1,40 @@
+/*
+Description: Foundation 4 docs style for highlight.js
+Author: Dan Allen
+Website: http://foundation.zurb.com/docs/
+Version: 1.0
+Date: 2013-04-02
+*/
+.highlight {
+ color: #000;
+ background: #eee; }
+ .highlight .code .link, .highlight .code .emphasis, .highlight .code .attribute, .highlight .code .addition {
+ color: #070; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong, .highlight .code .string, .highlight .code .deletion {
+ color: #d14; }
+ .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .quote, .highlight .code .comment {
+ color: #998;
+ font-style: italic; }
+ .highlight .code .section, .highlight .code .title {
+ color: #900; }
+ .highlight .code .class .title, .highlight .code .type {
+ color: #458; }
+ .highlight .code .variable, .highlight .code .template-variable {
+ color: #369; }
+ .highlight .code .bullet {
+ color: #970; }
+ .highlight .code .meta {
+ color: #34b; }
+ .highlight .code .code, .highlight .code .number, .highlight .code .literal, .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #099; }
+ .highlight .code .regexp {
+ background-color: #fff0ff;
+ color: #808; }
+ .highlight .code .symbol {
+ color: #990073; }
+ .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #070; }
diff --git a/source/css/highlights/foundation.scss b/source/css/highlights/foundation.scss
deleted file mode 100644
index 7dadd16..0000000
--- a/source/css/highlights/foundation.scss
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
-Description: Foundation 4 docs style for highlight.js
-Author: Dan Allen
-Website: http://foundation.zurb.com/docs/
-Version: 1.0
-Date: 2013-04-02
-*/
-
-.highlight {
- color: #000;
- background: #eee;
-
- .code {
- .link, .emphasis, .attribute, .addition {
- color: #070;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong, .string, .deletion {
- color: #d14;
- }
-
- .strong {
- font-weight: bold;
- }
-
- .quote, .comment {
- color: #998;
- font-style: italic;
- }
-
- .section, .title {
- color: #900;
- }
-
- .class .title, .type {
- color: #458;
- }
-
- .variable, .template-variable {
- color: #369;
- }
-
- .bullet {
- color: #970;
- }
-
- .meta {
- color: #34b;
- }
-
- .code, .number, .literal, .keyword, .selector-tag {
- color: #099;
- }
-
- .regexp {
- background-color: #fff0ff;
- color: #808;
- }
-
- .symbol {
- color: #990073;
- }
-
- .tag, .name, .selector-id, .selector-class {
- color: #070;
- }
- }
-}
diff --git a/source/css/highlights/github-gist.css b/source/css/highlights/github-gist.css
new file mode 100644
index 0000000..15f2390
--- /dev/null
+++ b/source/css/highlights/github-gist.css
@@ -0,0 +1,29 @@
+/**
+ * GitHub Gist Theme
+ * Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro
+ */
+.highlight {
+ padding: 0.5em;
+ color: #333; }
+ .highlight .code .comment, .highlight .code .meta {
+ color: #969896; }
+ .highlight .code .string, .highlight .code .variable, .highlight .code .template-variable, .highlight .code .strong, .highlight .code .emphasis, .highlight .code .quote {
+ color: #df5000; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .type {
+ color: #a71d5d; }
+ .highlight .code .literal, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .attribute {
+ color: #0086b3; }
+ .highlight .code .section, .highlight .code .name {
+ color: #63a35c; }
+ .highlight .code .tag {
+ color: #333; }
+ .highlight .code .title, .highlight .code .attr, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .selector-attr, .highlight .code .selector-pseudo {
+ color: #795da3; }
+ .highlight .code .addition {
+ color: #55a532;
+ background-color: #eaffea; }
+ .highlight .code .deletion {
+ color: #bd2c00;
+ background-color: #ffecec; }
+ .highlight .code .link {
+ text-decoration: underline; }
diff --git a/source/css/highlights/github-gist.scss b/source/css/highlights/github-gist.scss
deleted file mode 100644
index 915ae29..0000000
--- a/source/css/highlights/github-gist.scss
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
- * GitHub Gist Theme
- * Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro
- */
-
-.highlight {
- padding: 0.5em;
- color: #333;
-
- .code {
- .comment, .meta {
- color: #969896;
- }
-
- .string, .variable, .template-variable, .strong, .emphasis, .quote {
- color: #df5000;
- }
-
- .keyword, .selector-tag, .type {
- color: #a71d5d;
- }
-
- .literal, .symbol, .bullet, .attribute {
- color: #0086b3;
- }
-
- .section, .name {
- color: #63a35c;
- }
-
- .tag {
- color: #333;
- }
-
- .title, .attr, .selector-id, .selector-class, .selector-attr, .selector-pseudo {
- color: #795da3;
- }
-
- .addition {
- color: #55a532;
- background-color: #eaffea;
- }
-
- .deletion {
- color: #bd2c00;
- background-color: #ffecec;
- }
-
- .link {
- text-decoration: underline;
- }
- }
-}
diff --git a/source/css/highlights/github.css b/source/css/highlights/github.css
new file mode 100644
index 0000000..1021c68
--- /dev/null
+++ b/source/css/highlights/github.css
@@ -0,0 +1,46 @@
+/*
+
+github.com style (c) Vasily Polovnyov
+
+*/
+.highlight {
+ color: #333;
+ background: #f8f8f8; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #998;
+ font-style: italic; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .subst {
+ color: #333;
+ font-weight: bold; }
+ .highlight .code .number, .highlight .code .literal, .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag .attr {
+ color: #008080; }
+ .highlight .code .string, .highlight .code .doctag {
+ color: #d14; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .selector-id {
+ color: #900;
+ font-weight: bold; }
+ .highlight .code .subst {
+ font-weight: normal; }
+ .highlight .code .type, .highlight .code .class .title {
+ color: #458;
+ font-weight: bold; }
+ .highlight .code .tag, .highlight .code .name, .highlight .code .attribute {
+ color: #000080;
+ font-weight: normal; }
+ .highlight .code .regexp, .highlight .code .link {
+ color: #009926; }
+ .highlight .code .symbol, .highlight .code .bullet {
+ color: #990073; }
+ .highlight .code .built_in, .highlight .code .builtin-name {
+ color: #0086b3; }
+ .highlight .code .meta {
+ color: #999;
+ font-weight: bold; }
+ .highlight .code .deletion {
+ background: #fdd; }
+ .highlight .code .addition {
+ background: #dfd; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/github.scss b/source/css/highlights/github.scss
deleted file mode 100644
index 777ed7d..0000000
--- a/source/css/highlights/github.scss
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
-
-github.com style (c) Vasily Polovnyov
-
-*/
-
-.highlight {
- color: #333;
- background: #f8f8f8;
-
- .code {
- .comment, .quote {
- color: #998;
- font-style: italic;
- }
-
- .keyword, .selector-tag, .subst {
- color: #333;
- font-weight: bold;
- }
-
- .number, .literal, .variable, .template-variable, .tag .attr {
- color: #008080;
- }
-
- .string, .doctag {
- color: #d14;
- }
-
- .title, .section, .selector-id {
- color: #900;
- font-weight: bold;
- }
-
- .subst {
- font-weight: normal;
- }
-
- .type, .class .title {
- color: #458;
- font-weight: bold;
- }
-
- .tag, .name, .attribute {
- color: #000080;
- font-weight: normal;
- }
-
- .regexp, .link {
- color: #009926;
- }
-
- .symbol, .bullet {
- color: #990073;
- }
-
- .built_in, .builtin-name {
- color: #0086b3;
- }
-
- .meta {
- color: #999;
- font-weight: bold;
- }
-
- .deletion {
- background: #fdd;
- }
-
- .addition {
- background: #dfd;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/googlecode.css b/source/css/highlights/googlecode.css
new file mode 100644
index 0000000..09b48cf
--- /dev/null
+++ b/source/css/highlights/googlecode.css
@@ -0,0 +1,35 @@
+/*
+
+Google Code style (c) Aahan Krish
+
+*/
+.highlight {
+ color: #000;
+ background: #fff; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #800; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .section, .highlight .code .title, .highlight .code .name {
+ color: #008; }
+ .highlight .code .variable, .highlight .code .template-variable {
+ color: #660; }
+ .highlight .code .string, .highlight .code .selector-attr, .highlight .code .selector-pseudo, .highlight .code .regexp {
+ color: #080; }
+ .highlight .code .literal, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .meta, .highlight .code .number, .highlight .code .link {
+ color: #066; }
+ .highlight .code .title, .highlight .code .doctag, .highlight .code .type, .highlight .code .attr, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .params {
+ color: #606; }
+ .highlight .code .attribute, .highlight .code .subst {
+ color: #000; }
+ .highlight .code .formula {
+ background-color: #eee;
+ font-style: italic; }
+ .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #9b703f; }
+ .highlight .code .addition {
+ background-color: #baeeba; }
+ .highlight .code .deletion {
+ background-color: #ffc8bd; }
+ .highlight .code .doctag, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .emphasis {
+ font-style: italic; }
diff --git a/source/css/highlights/googlecode.scss b/source/css/highlights/googlecode.scss
deleted file mode 100644
index 2ed04c1..0000000
--- a/source/css/highlights/googlecode.scss
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
-
-Google Code style (c) Aahan Krish
-
-*/
-
-.highlight {
- color: #000;
- background: #fff;
-
- .code {
- .comment, .quote {
- color: #800;
- }
-
- .keyword, .selector-tag, .section, .title, .name {
- color: #008;
- }
-
- .variable, .template-variable {
- color: #660;
- }
-
- .string, .selector-attr, .selector-pseudo, .regexp {
- color: #080;
- }
-
- .literal, .symbol, .bullet, .meta, .number, .link {
- color: #066;
- }
-
- .title, .doctag, .type, .attr, .built_in, .builtin-name, .params {
- color: #606;
- }
-
- .attribute, .subst {
- color: #000;
- }
-
- .formula {
- background-color: #eee;
- font-style: italic;
- }
-
- .selector-id, .selector-class {
- color: #9b703f;
- }
-
- .addition {
- background-color: #baeeba;
- }
-
- .deletion {
- background-color: #ffc8bd;
- }
-
- .doctag, .strong {
- font-weight: bold;
- }
-
- .emphasis {
- font-style: italic;
- }
- }
-}
diff --git a/source/css/highlights/grayscale.css b/source/css/highlights/grayscale.css
new file mode 100644
index 0000000..7c0914b
--- /dev/null
+++ b/source/css/highlights/grayscale.css
@@ -0,0 +1,51 @@
+/*
+
+grayscale style (c) MY Sun
+
+*/
+.highlight {
+ color: #333;
+ background: #fff; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #777;
+ font-style: italic; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .subst {
+ color: #333;
+ font-weight: bold; }
+ .highlight .code .number, .highlight .code .literal {
+ color: #777; }
+ .highlight .code .string, .highlight .code .doctag, .highlight .code .formula {
+ color: #333;
+ background: url("data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC") repeat; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .selector-id {
+ color: #000;
+ font-weight: bold; }
+ .highlight .code .subst {
+ font-weight: normal; }
+ .highlight .code .class .title, .highlight .code .type, .highlight .code .name {
+ color: #333;
+ font-weight: bold; }
+ .highlight .code .tag {
+ color: #333; }
+ .highlight .code .regexp {
+ color: #333;
+ background: url("data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==") repeat; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .link {
+ color: #000;
+ background: url("data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==") repeat; }
+ .highlight .code .built_in, .highlight .code .builtin-name {
+ color: #000;
+ text-decoration: underline; }
+ .highlight .code .meta {
+ color: #999;
+ font-weight: bold; }
+ .highlight .code .deletion {
+ color: #fff;
+ background: url("data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==") repeat; }
+ .highlight .code .addition {
+ color: #000;
+ background: url("data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC") repeat; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/grayscale.scss b/source/css/highlights/grayscale.scss
deleted file mode 100644
index 403f036..0000000
--- a/source/css/highlights/grayscale.scss
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
-
-grayscale style (c) MY Sun
-
-*/
-
-.highlight {
- color: #333;
- background: #fff;
-
- .code {
- .comment, .quote {
- color: #777;
- font-style: italic;
- }
-
- .keyword, .selector-tag, .subst {
- color: #333;
- font-weight: bold;
- }
-
- .number, .literal {
- color: #777;
- }
-
- .string, .doctag, .formula {
- color: #333;
- background: url("data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC") repeat;
- }
-
- .title, .section, .selector-id {
- color: #000;
- font-weight: bold;
- }
-
- .subst {
- font-weight: normal;
- }
-
- .class .title, .type, .name {
- color: #333;
- font-weight: bold;
- }
-
- .tag {
- color: #333;
- }
-
- .regexp {
- color: #333;
- background: url("data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==") repeat;
- }
-
- .symbol, .bullet, .link {
- color: #000;
- background: url("data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==") repeat;
- }
-
- .built_in, .builtin-name {
- color: #000;
- text-decoration: underline;
- }
-
- .meta {
- color: #999;
- font-weight: bold;
- }
-
- .deletion {
- color: #fff;
- background: url("data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==") repeat;
- }
-
- .addition {
- color: #000;
- background: url("data:image/pngbase64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC") repeat;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/highlightjs.css b/source/css/highlights/highlightjs.css
new file mode 100644
index 0000000..a6a9bbc
--- /dev/null
+++ b/source/css/highlights/highlightjs.css
@@ -0,0 +1,29 @@
+/*
+
+Original highlight.js style (c) Ivan Sagalaev
+
+*/
+.highlight {
+ color: #444;
+ background: #f0f0f0; }
+ .highlight .code .subst {
+ color: #444; }
+ .highlight .code .keyword, .highlight .code .attribute, .highlight .code .selector-tag, .highlight .code .meta-keyword, .highlight .code .doctag, .highlight .code .name {
+ font-weight: bold; }
+ .highlight .code .built_in, .highlight .code .literal, .highlight .code .bullet, .highlight .code .code, .highlight .code .addition {
+ color: #1f811f; }
+ .highlight .code .regexp, .highlight .code .symbol, .highlight .code .variable, .highlight .code .template-variable, .highlight .code .link, .highlight .code .selector-attr, .highlight .code .selector-pseudo {
+ color: #bc6060; }
+ .highlight .code .type, .highlight .code .string, .highlight .code .number, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .quote, .highlight .code .template-tag, .highlight .code .deletion {
+ color: #800; }
+ .highlight .code .title, .highlight .code .section {
+ color: #800;
+ font-weight: bold; }
+ .highlight .code .comment {
+ color: #888; }
+ .highlight .code .meta {
+ color: #2b6ea1; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/highlightjs.scss b/source/css/highlights/highlightjs.scss
deleted file mode 100644
index 179eb7c..0000000
--- a/source/css/highlights/highlightjs.scss
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
-
-Original highlight.js style (c) Ivan Sagalaev
-
-*/
-
-.highlight {
- color: #444;
- background: #f0f0f0;
-
- .code {
- .subst {
- color: #444;
- }
-
- .keyword, .attribute, .selector-tag, .meta-keyword, .doctag, .name {
- font-weight: bold;
- }
-
- .built_in, .literal, .bullet, .code, .addition {
- color: #1f811f;
- }
-
- .regexp, .symbol, .variable, .template-variable, .link, .selector-attr, .selector-pseudo {
- color: #bc6060;
- }
-
- .type, .string, .number, .selector-id, .selector-class, .quote, .template-tag, .deletion {
- color: #800;
- }
-
- .title, .section {
- color: #800;
- font-weight: bold;
- }
-
- .comment {
- color: #888;
- }
-
- .meta {
- color: #2b6ea1;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/hopscotch.css b/source/css/highlights/hopscotch.css
new file mode 100644
index 0000000..ba8bd0b
--- /dev/null
+++ b/source/css/highlights/hopscotch.css
@@ -0,0 +1,30 @@
+/*
+ * Hopscotch
+ * by Jan T. Sott
+ * https://github.com/idleberg/Hopscotch
+ *
+ * This work is licensed under the Creative Commons CC0 1.0 Universal License
+ */
+.highlight {
+ color: #b9b5b8;
+ background: #322931; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #989498; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .regexp, .highlight .code .link, .highlight .code .deletion {
+ color: #dd464c; }
+ .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params {
+ color: #fd8b19; }
+ .highlight .code .class .title {
+ color: #fdcc59; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .addition {
+ color: #8fc13e; }
+ .highlight .code .meta {
+ color: #149b93; }
+ .highlight .code .function, .highlight .code .section, .highlight .code .title {
+ color: #1290bf; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #c85e7c; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/hopscotch.scss b/source/css/highlights/hopscotch.scss
deleted file mode 100644
index 1492984..0000000
--- a/source/css/highlights/hopscotch.scss
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Hopscotch
- * by Jan T. Sott
- * https://github.com/idleberg/Hopscotch
- *
- * This work is licensed under the Creative Commons CC0 1.0 Universal License
- */
-
-.highlight {
- color: #b9b5b8;
- background: #322931;
-
- .code {
- .comment, .quote {
- color: #989498;
- }
-
- .variable, .template-variable, .attribute, .tag, .name, .selector-id, .selector-class, .regexp, .link, .deletion {
- color: #dd464c;
- }
-
- .number, .built_in, .builtin-name, .literal, .type, .params {
- color: #fd8b19;
- }
-
- .class .title {
- color: #fdcc59;
- }
-
- .string, .symbol, .bullet, .addition {
- color: #8fc13e;
- }
-
- .meta {
- color: #149b93;
- }
-
- .function, .section, .title {
- color: #1290bf;
- }
-
- .keyword, .selector-tag {
- color: #c85e7c;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/hybrid.css b/source/css/highlights/hybrid.css
new file mode 100644
index 0000000..bc8e771
--- /dev/null
+++ b/source/css/highlights/hybrid.css
@@ -0,0 +1,36 @@
+/*
+
+vim-hybrid theme by w0ng (https://github.com/w0ng/vim-hybrid)
+
+*/
+/*background color*/
+.highlight {
+ color: #c5c8c6;
+ background: #1d1f21;
+ /*selection color*/ }
+ .highlight::selection, .highlight span::selection, .highlight::-moz-selection, .highlight span::-moz-selection {
+ background: #373b41; }
+ .highlight .code .title, .highlight .code .name {
+ color: #f0c674; }
+ .highlight .code .comment {
+ color: #707880; }
+ .highlight .code .meta {
+ color: #707880; }
+ .highlight .code .meta .keyword {
+ color: #707880; }
+ .highlight .code .number, .highlight .code .symbol, .highlight .code .literal, .highlight .code .deletion, .highlight .code .link {
+ color: #c66; }
+ .highlight .code .string, .highlight .code .doctag, .highlight .code .addition, .highlight .code .regexp, .highlight .code .selector-attr, .highlight .code .selector-pseudo {
+ color: #b5bd68; }
+ .highlight .code .attribute, .highlight .code .code, .highlight .code .selector-id {
+ color: #b294bb; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .bullet, .highlight .code .tag {
+ color: #81a2be; }
+ .highlight .code .subst, .highlight .code .variable, .highlight .code .template-tag, .highlight .code .template-variable {
+ color: #8abeb7; }
+ .highlight .code .type, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .quote, .highlight .code .section, .highlight .code .selector-class {
+ color: #de935f; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/hybrid.scss b/source/css/highlights/hybrid.scss
deleted file mode 100644
index 8ed202f..0000000
--- a/source/css/highlights/hybrid.scss
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
-
-vim-hybrid theme by w0ng (https://github.com/w0ng/vim-hybrid)
-
-*/
-/*background color*/
-
-.highlight {
- color: #c5c8c6;
- background: #1d1f21;
-
- /*selection color*/
-
- &::selection, span::selection, &::-moz-selection, span::-moz-selection {
- background: #373b41;
- }
-
- .code {
- .title, .name {
- color: #f0c674;
- }
-
- .comment {
- color: #707880;
- }
-
- .meta {
- color: #707880;
-
- .keyword {
- color: #707880;
- }
- }
-
- .number, .symbol, .literal, .deletion, .link {
- color: #c66;
- }
-
- .string, .doctag, .addition, .regexp, .selector-attr, .selector-pseudo {
- color: #b5bd68;
- }
-
- .attribute, .code, .selector-id {
- color: #b294bb;
- }
-
- .keyword, .selector-tag, .bullet, .tag {
- color: #81a2be;
- }
-
- .subst, .variable, .template-tag, .template-variable {
- color: #8abeb7;
- }
-
- .type, .built_in, .builtin-name, .quote, .section, .selector-class {
- color: #de935f;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/idea.css b/source/css/highlights/idea.css
new file mode 100644
index 0000000..3fe5ba1
--- /dev/null
+++ b/source/css/highlights/idea.css
@@ -0,0 +1,45 @@
+/*
+
+Intellij Idea-like styling (c) Vasily Polovnyov
+
+*/
+.highlight {
+ color: #000;
+ background: #fff; }
+ .highlight .code .subst, .highlight .code .title {
+ font-weight: normal;
+ color: #000; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #808080;
+ font-style: italic; }
+ .highlight .code .meta {
+ color: #808000; }
+ .highlight .code .tag {
+ background: #efefef; }
+ .highlight .code .section, .highlight .code .name, .highlight .code .literal, .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .type, .highlight .code .selector-id, .highlight .code .selector-class {
+ font-weight: bold;
+ color: #000080; }
+ .highlight .code .attribute, .highlight .code .number, .highlight .code .regexp, .highlight .code .link {
+ font-weight: bold;
+ color: #00f; }
+ .highlight .code .number, .highlight .code .regexp, .highlight .code .link {
+ font-weight: normal; }
+ .highlight .code .string {
+ color: #008000;
+ font-weight: bold; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .formula {
+ color: #000;
+ background: #d0eded;
+ font-style: italic; }
+ .highlight .code .doctag {
+ text-decoration: underline; }
+ .highlight .code .variable, .highlight .code .template-variable {
+ color: #660e7a; }
+ .highlight .code .addition {
+ background: #baeeba; }
+ .highlight .code .deletion {
+ background: #ffc8bd; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/idea.scss b/source/css/highlights/idea.scss
deleted file mode 100644
index 6c17f6c..0000000
--- a/source/css/highlights/idea.scss
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
-
-Intellij Idea-like styling (c) Vasily Polovnyov
-
-*/
-
-.highlight {
- color: #000;
- background: #fff;
-
- .code {
- .subst, .title {
- font-weight: normal;
- color: #000;
- }
-
- .comment, .quote {
- color: #808080;
- font-style: italic;
- }
-
- .meta {
- color: #808000;
- }
-
- .tag {
- background: #efefef;
- }
-
- .section, .name, .literal, .keyword, .selector-tag, .type, .selector-id, .selector-class {
- font-weight: bold;
- color: #000080;
- }
-
- .attribute, .number, .regexp, .link {
- font-weight: bold;
- color: #00f;
- }
-
- .number, .regexp, .link {
- font-weight: normal;
- }
-
- .string {
- color: #008000;
- font-weight: bold;
- }
-
- .symbol, .bullet, .formula {
- color: #000;
- background: #d0eded;
- font-style: italic;
- }
-
- .doctag {
- text-decoration: underline;
- }
-
- .variable, .template-variable {
- color: #660e7a;
- }
-
- .addition {
- background: #baeeba;
- }
-
- .deletion {
- background: #ffc8bd;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/ir-black.css b/source/css/highlights/ir-black.css
new file mode 100644
index 0000000..626e266
--- /dev/null
+++ b/source/css/highlights/ir-black.css
@@ -0,0 +1,28 @@
+/*
+ IR_Black style (c) Vasily Mikhailitchenko
+*/
+.highlight {
+ color: #f8f8f8;
+ background: #000; }
+ .highlight .code .comment, .highlight .code .quote, .highlight .code .meta {
+ color: #7c7c7c; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .tag, .highlight .code .name {
+ color: #96cbfe; }
+ .highlight .code .attribute, .highlight .code .selector-id {
+ color: #ffffb6; }
+ .highlight .code .string, .highlight .code .selector-attr, .highlight .code .selector-pseudo, .highlight .code .addition {
+ color: #a8ff60; }
+ .highlight .code .subst {
+ color: #daefa3; }
+ .highlight .code .regexp, .highlight .code .link {
+ color: #e9c062; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .type, .highlight .code .doctag {
+ color: #ffffb6; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .variable, .highlight .code .template-variable, .highlight .code .literal {
+ color: #c6c5fe; }
+ .highlight .code .number, .highlight .code .deletion {
+ color: #ff73fd; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/ir-black.scss b/source/css/highlights/ir-black.scss
deleted file mode 100644
index 1939066..0000000
--- a/source/css/highlights/ir-black.scss
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- IR_Black style (c) Vasily Mikhailitchenko
-*/
-
-.highlight {
- color: #f8f8f8;
- background: #000;
-
- .code {
- .comment, .quote, .meta {
- color: #7c7c7c;
- }
-
- .keyword, .selector-tag, .tag, .name {
- color: #96cbfe;
- }
-
- .attribute, .selector-id {
- color: #ffffb6;
- }
-
- .string, .selector-attr, .selector-pseudo, .addition {
- color: #a8ff60;
- }
-
- .subst {
- color: #daefa3;
- }
-
- .regexp, .link {
- color: #e9c062;
- }
-
- .title, .section, .type, .doctag {
- color: #ffffb6;
- }
-
- .symbol, .bullet, .variable, .template-variable, .literal {
- color: #c6c5fe;
- }
-
- .number, .deletion {
- color: #ff73fd;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/kimbie-dark.css b/source/css/highlights/kimbie-dark.css
new file mode 100644
index 0000000..3be9dbc
--- /dev/null
+++ b/source/css/highlights/kimbie-dark.css
@@ -0,0 +1,25 @@
+/*
+ Name: Kimbie (dark)
+ Author: Jan T. Sott
+ License: Creative Commons Attribution-ShareAlike 4.0 Unported License
+ URL: https://github.com/idleberg/Kimbie-highlight.js
+*/
+.highlight {
+ color: #d3af86;
+ background: #221a0f; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #d6baad; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .regexp, .highlight .code .meta {
+ color: #dc3958; }
+ .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params, .highlight .code .deletion, .highlight .code .link {
+ color: #f79a32; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .attribute {
+ color: #f06431; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .addition {
+ color: #889b4a; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .function {
+ color: #98676a; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/kimbie-dark.scss b/source/css/highlights/kimbie-dark.scss
deleted file mode 100644
index 0a505d6..0000000
--- a/source/css/highlights/kimbie-dark.scss
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- Name: Kimbie (dark)
- Author: Jan T. Sott
- License: Creative Commons Attribution-ShareAlike 4.0 Unported License
- URL: https://github.com/idleberg/Kimbie-highlight.js
-*/
-
-.highlight {
- color: #d3af86;
- background: #221a0f;
-
- .code {
- .comment, .quote {
- color: #d6baad;
- }
-
- .variable, .template-variable, .tag, .name, .selector-id, .selector-class, .regexp, .meta {
- color: #dc3958;
- }
-
- .number, .built_in, .builtin-name, .literal, .type, .params, .deletion, .link {
- color: #f79a32;
- }
-
- .title, .section, .attribute {
- color: #f06431;
- }
-
- .string, .symbol, .bullet, .addition {
- color: #889b4a;
- }
-
- .keyword, .selector-tag, .function {
- color: #98676a;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/kimbie-light.css b/source/css/highlights/kimbie-light.css
new file mode 100644
index 0000000..2792bd3
--- /dev/null
+++ b/source/css/highlights/kimbie-light.css
@@ -0,0 +1,25 @@
+/*
+ Name: Kimbie (light)
+ Author: Jan T. Sott
+ License: Creative Commons Attribution-ShareAlike 4.0 Unported License
+ URL: https://github.com/idleberg/Kimbie-highlight.js
+*/
+.highlight {
+ color: #84613d;
+ background: #fbebd4; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #a57a4c; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .regexp, .highlight .code .meta {
+ color: #dc3958; }
+ .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params, .highlight .code .deletion, .highlight .code .link {
+ color: #f79a32; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .attribute {
+ color: #f06431; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .addition {
+ color: #889b4a; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .function {
+ color: #98676a; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/kimbie-light.scss b/source/css/highlights/kimbie-light.scss
deleted file mode 100644
index dbc7275..0000000
--- a/source/css/highlights/kimbie-light.scss
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- Name: Kimbie (light)
- Author: Jan T. Sott
- License: Creative Commons Attribution-ShareAlike 4.0 Unported License
- URL: https://github.com/idleberg/Kimbie-highlight.js
-*/
-
-.highlight {
- color: #84613d;
- background: #fbebd4;
-
- .code {
- .comment, .quote {
- color: #a57a4c;
- }
-
- .variable, .template-variable, .tag, .name, .selector-id, .selector-class, .regexp, .meta {
- color: #dc3958;
- }
-
- .number, .built_in, .builtin-name, .literal, .type, .params, .deletion, .link {
- color: #f79a32;
- }
-
- .title, .section, .attribute {
- color: #f06431;
- }
-
- .string, .symbol, .bullet, .addition {
- color: #889b4a;
- }
-
- .keyword, .selector-tag, .function {
- color: #98676a;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/magula.css b/source/css/highlights/magula.css
new file mode 100644
index 0000000..0253641
--- /dev/null
+++ b/source/css/highlights/magula.css
@@ -0,0 +1,27 @@
+/*
+Description: Magula style for highligh.js
+Author: Ruslan Keba
+Website: http://rukeba.com/
+Version: 1.0
+Date: 2009-01-03
+Music: Aphex Twin / Xtal
+*/
+.highlight {
+ background-color: #f4f4f4; }
+ .highlight .code .highlight, .highlight .code .subst {
+ color: #000; }
+ .highlight .code .string, .highlight .code .title, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .attribute, .highlight .code .addition, .highlight .code .variable, .highlight .code .template-tag, .highlight .code .template-variable {
+ color: #050; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #777; }
+ .highlight .code .number, .highlight .code .regexp, .highlight .code .literal, .highlight .code .type, .highlight .code .link {
+ color: #800; }
+ .highlight .code .deletion, .highlight .code .meta {
+ color: #00e; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .doctag, .highlight .code .title, .highlight .code .section, .highlight .code .built_in, .highlight .code .tag, .highlight .code .name {
+ font-weight: bold;
+ color: #000080; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/magula.scss b/source/css/highlights/magula.scss
deleted file mode 100644
index 14749da..0000000
--- a/source/css/highlights/magula.scss
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
-Description: Magula style for highligh.js
-Author: Ruslan Keba
-Website: http://rukeba.com/
-Version: 1.0
-Date: 2009-01-03
-Music: Aphex Twin / Xtal
-*/
-
-.highlight {
- background-color: #f4f4f4;
-
- .code {
- .highlight, .subst {
- color: #000;
- }
-
- .string, .title, .symbol, .bullet, .attribute, .addition, .variable, .template-tag, .template-variable {
- color: #050;
- }
-
- .comment, .quote {
- color: #777;
- }
-
- .number, .regexp, .literal, .type, .link {
- color: #800;
- }
-
- .deletion, .meta {
- color: #00e;
- }
-
- .keyword, .selector-tag, .doctag, .title, .section, .built_in, .tag, .name {
- font-weight: bold;
- color: #000080;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/mono-blue.css b/source/css/highlights/mono-blue.css
new file mode 100644
index 0000000..c85bd94
--- /dev/null
+++ b/source/css/highlights/mono-blue.css
@@ -0,0 +1,16 @@
+/*
+ Five-color theme from a single blue hue.
+*/
+.highlight {
+ color: #00193a;
+ background: #eaeef3; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .title, .highlight .code .section, .highlight .code .doctag, .highlight .code .name, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .comment {
+ color: #738191; }
+ .highlight .code .string, .highlight .code .title, .highlight .code .section, .highlight .code .built_in, .highlight .code .literal, .highlight .code .type, .highlight .code .addition, .highlight .code .tag, .highlight .code .quote, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #0048ab; }
+ .highlight .code .meta, .highlight .code .subst, .highlight .code .symbol, .highlight .code .regexp, .highlight .code .attribute, .highlight .code .deletion, .highlight .code .variable, .highlight .code .template-variable, .highlight .code .link, .highlight .code .bullet {
+ color: #4c81c9; }
+ .highlight .code .emphasis {
+ font-style: italic; }
diff --git a/source/css/highlights/mono-blue.scss b/source/css/highlights/mono-blue.scss
deleted file mode 100644
index dfdaa17..0000000
--- a/source/css/highlights/mono-blue.scss
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- Five-color theme from a single blue hue.
-*/
-
-.highlight {
- color: #00193a;
- background: #eaeef3;
-
- .code {
- .keyword, .selector-tag, .title, .section, .doctag, .name, .strong {
- font-weight: bold;
- }
-
- .comment {
- color: #738191;
- }
-
- .string, .title, .section, .built_in, .literal, .type, .addition, .tag, .quote, .name, .selector-id, .selector-class {
- color: #0048ab;
- }
-
- .meta, .subst, .symbol, .regexp, .attribute, .deletion, .variable, .template-variable, .link, .bullet {
- color: #4c81c9;
- }
-
- .emphasis {
- font-style: italic;
- }
- }
-}
diff --git a/source/css/highlights/monokai-sublime.css b/source/css/highlights/monokai-sublime.css
new file mode 100644
index 0000000..7bc69b5
--- /dev/null
+++ b/source/css/highlights/monokai-sublime.css
@@ -0,0 +1,30 @@
+/*
+
+Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
+
+*/
+.highlight {
+ color: #f8f8f2;
+ background: #23241f; }
+ .highlight .code .highlight, .highlight .code .tag, .highlight .code .subst {
+ color: #f8f8f2; }
+ .highlight .code .strong, .highlight .code .emphasis {
+ color: #a8a8a2; }
+ .highlight .code .bullet, .highlight .code .quote, .highlight .code .number, .highlight .code .regexp, .highlight .code .literal, .highlight .code .link {
+ color: #ae81ff; }
+ .highlight .code .code, .highlight .code .title, .highlight .code .section, .highlight .code .selector-class {
+ color: #a6e22e; }
+ .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .name, .highlight .code .attr {
+ color: #f92672; }
+ .highlight .code .symbol, .highlight .code .attribute {
+ color: #66d9ef; }
+ .highlight .code .params, .highlight .code .class .title {
+ color: #f8f8f2; }
+ .highlight .code .string, .highlight .code .type, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .selector-id, .highlight .code .selector-attr, .highlight .code .selector-pseudo, .highlight .code .addition, .highlight .code .variable, .highlight .code .template-variable {
+ color: #e6db74; }
+ .highlight .code .comment, .highlight .code .deletion, .highlight .code .meta {
+ color: #75715e; }
diff --git a/source/css/highlights/monokai-sublime.scss b/source/css/highlights/monokai-sublime.scss
deleted file mode 100644
index bef0ead..0000000
--- a/source/css/highlights/monokai-sublime.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
-
-Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
-
-*/
-
-.highlight {
- color: #f8f8f2;
- background: #23241f;
-
- .code {
- .highlight, .tag, .subst {
- color: #f8f8f2;
- }
-
- .strong, .emphasis {
- color: #a8a8a2;
- }
-
- .bullet, .quote, .number, .regexp, .literal, .link {
- color: #ae81ff;
- }
-
- .code, .title, .section, .selector-class {
- color: #a6e22e;
- }
-
- .strong {
- font-weight: bold;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .keyword, .selector-tag, .name, .attr {
- color: #f92672;
- }
-
- .symbol, .attribute {
- color: #66d9ef;
- }
-
- .params, .class .title {
- color: #f8f8f2;
- }
-
- .string, .type, .built_in, .builtin-name, .selector-id, .selector-attr, .selector-pseudo, .addition, .variable, .template-variable {
- color: #e6db74;
- }
-
- .comment, .deletion, .meta {
- color: #75715e;
- }
- }
-}
diff --git a/source/css/highlights/monokai.css b/source/css/highlights/monokai.css
new file mode 100644
index 0000000..99d9b46
--- /dev/null
+++ b/source/css/highlights/monokai.css
@@ -0,0 +1,20 @@
+/*
+Monokai style - ported by Luigi Maselli - http://grigio.org
+*/
+.highlight {
+ color: #ddd;
+ background: #272822; }
+ .highlight .code .tag, .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .strong, .highlight .code .name {
+ color: #f92672; }
+ .highlight .code .code {
+ color: #66d9ef; }
+ .highlight .code .class .title {
+ color: #fff; }
+ .highlight .code .attribute, .highlight .code .symbol, .highlight .code .regexp, .highlight .code .link {
+ color: #bf79db; }
+ .highlight .code .string, .highlight .code .bullet, .highlight .code .subst, .highlight .code .title, .highlight .code .section, .highlight .code .emphasis, .highlight .code .type, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .selector-attr, .highlight .code .selector-pseudo, .highlight .code .addition, .highlight .code .variable, .highlight .code .template-tag, .highlight .code .template-variable {
+ color: #a6e22e; }
+ .highlight .code .comment, .highlight .code .quote, .highlight .code .deletion, .highlight .code .meta {
+ color: #75715e; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .doctag, .highlight .code .title, .highlight .code .section, .highlight .code .type, .highlight .code .selector-id {
+ font-weight: bold; }
diff --git a/source/css/highlights/monokai.scss b/source/css/highlights/monokai.scss
deleted file mode 100644
index 3b1567f..0000000
--- a/source/css/highlights/monokai.scss
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
-Monokai style - ported by Luigi Maselli - http://grigio.org
-*/
-
-.highlight {
- color: #ddd;
- background: #272822;
-
- .code {
- .tag, .keyword, .selector-tag, .literal, .strong, .name {
- color: #f92672;
- }
-
- .code {
- color: #66d9ef;
- }
-
- .class .title {
- color: #fff;
- }
-
- .attribute, .symbol, .regexp, .link {
- color: #bf79db;
- }
-
- .string, .bullet, .subst, .title, .section, .emphasis, .type, .built_in, .builtin-name, .selector-attr, .selector-pseudo, .addition, .variable, .template-tag, .template-variable {
- color: #a6e22e;
- }
-
- .comment, .quote, .deletion, .meta {
- color: #75715e;
- }
-
- .keyword, .selector-tag, .literal, .doctag, .title, .section, .type, .selector-id {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/obsidian.css b/source/css/highlights/obsidian.css
new file mode 100644
index 0000000..afc697a
--- /dev/null
+++ b/source/css/highlights/obsidian.css
@@ -0,0 +1,29 @@
+/**
+ * Obsidian style
+ * ported by Alexander Marenin (http://github.com/ioncreature)
+ */
+.highlight {
+ color: #e0e2e4;
+ background: #282b2e; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .selector-id {
+ color: #93c763; }
+ .highlight .code .number {
+ color: #ffcd22; }
+ .highlight .code .attribute {
+ color: #668bb0; }
+ .highlight .code .code, .highlight .code .class .title, .highlight .code .section {
+ color: #fff; }
+ .highlight .code .regexp, .highlight .code .link {
+ color: #d39745; }
+ .highlight .code .meta {
+ color: #557182; }
+ .highlight .code .tag, .highlight .code .name, .highlight .code .bullet, .highlight .code .subst, .highlight .code .emphasis, .highlight .code .type, .highlight .code .built_in, .highlight .code .selector-attr, .highlight .code .selector-pseudo, .highlight .code .addition, .highlight .code .variable, .highlight .code .template-tag, .highlight .code .template-variable {
+ color: #8cbbad; }
+ .highlight .code .string, .highlight .code .symbol {
+ color: #ec7600; }
+ .highlight .code .comment, .highlight .code .quote, .highlight .code .deletion {
+ color: #818e96; }
+ .highlight .code .selector-class {
+ color: #a082bd; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .doctag, .highlight .code .title, .highlight .code .section, .highlight .code .type, .highlight .code .name, .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/obsidian.scss b/source/css/highlights/obsidian.scss
deleted file mode 100644
index e6df523..0000000
--- a/source/css/highlights/obsidian.scss
+++ /dev/null
@@ -1,55 +0,0 @@
-/**
- * Obsidian style
- * ported by Alexander Marenin (http://github.com/ioncreature)
- */
-
-.highlight {
- color: #e0e2e4;
- background: #282b2e;
-
- .code {
- .keyword, .selector-tag, .literal, .selector-id {
- color: #93c763;
- }
-
- .number {
- color: #ffcd22;
- }
-
- .attribute {
- color: #668bb0;
- }
-
- .code, .class .title, .section {
- color: #fff;
- }
-
- .regexp, .link {
- color: #d39745;
- }
-
- .meta {
- color: #557182;
- }
-
- .tag, .name, .bullet, .subst, .emphasis, .type, .built_in, .selector-attr, .selector-pseudo, .addition, .variable, .template-tag, .template-variable {
- color: #8cbbad;
- }
-
- .string, .symbol {
- color: #ec7600;
- }
-
- .comment, .quote, .deletion {
- color: #818e96;
- }
-
- .selector-class {
- color: #a082bd;
- }
-
- .keyword, .selector-tag, .literal, .doctag, .title, .section, .type, .name, .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/paraiso-dark.css b/source/css/highlights/paraiso-dark.css
new file mode 100644
index 0000000..3038153
--- /dev/null
+++ b/source/css/highlights/paraiso-dark.css
@@ -0,0 +1,25 @@
+@charset "UTF-8";
+/*
+ Paraíso (dark)
+ Created by Jan T. Sott (http://github.com/idleberg)
+ Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
+*/
+.highlight {
+ color: #a39e9b;
+ background: #2f1e2e; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #8d8687; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .regexp, .highlight .code .link, .highlight .code .meta {
+ color: #ef6155; }
+ .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params, .highlight .code .deletion {
+ color: #f99b15; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .attribute {
+ color: #fec418; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .addition {
+ color: #48b685; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #815ba4; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/paraiso-dark.scss b/source/css/highlights/paraiso-dark.scss
deleted file mode 100644
index e771265..0000000
--- a/source/css/highlights/paraiso-dark.scss
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- Paraíso (dark)
- Created by Jan T. Sott (http://github.com/idleberg)
- Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
-*/
-
-.highlight {
- color: #a39e9b;
- background: #2f1e2e;
-
- .code {
- .comment, .quote {
- color: #8d8687;
- }
-
- .variable, .template-variable, .tag, .name, .selector-id, .selector-class, .regexp, .link, .meta {
- color: #ef6155;
- }
-
- .number, .built_in, .builtin-name, .literal, .type, .params, .deletion {
- color: #f99b15;
- }
-
- .title, .section, .attribute {
- color: #fec418;
- }
-
- .string, .symbol, .bullet, .addition {
- color: #48b685;
- }
-
- .keyword, .selector-tag {
- color: #815ba4;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/paraiso-light.css b/source/css/highlights/paraiso-light.css
new file mode 100644
index 0000000..f611881
--- /dev/null
+++ b/source/css/highlights/paraiso-light.css
@@ -0,0 +1,25 @@
+@charset "UTF-8";
+/*
+ Paraíso (light)
+ Created by Jan T. Sott (http://github.com/idleberg)
+ Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
+*/
+.highlight {
+ color: #4f424c;
+ background: #e7e9db; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #776e71; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .regexp, .highlight .code .link, .highlight .code .meta {
+ color: #ef6155; }
+ .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params, .highlight .code .deletion {
+ color: #f99b15; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .attribute {
+ color: #fec418; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .addition {
+ color: #48b685; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #815ba4; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/paraiso-light.scss b/source/css/highlights/paraiso-light.scss
deleted file mode 100644
index bc55557..0000000
--- a/source/css/highlights/paraiso-light.scss
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- Paraíso (light)
- Created by Jan T. Sott (http://github.com/idleberg)
- Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
-*/
-
-.highlight {
- color: #4f424c;
- background: #e7e9db;
-
- .code {
- .comment, .quote {
- color: #776e71;
- }
-
- .variable, .template-variable, .tag, .name, .selector-id, .selector-class, .regexp, .link, .meta {
- color: #ef6155;
- }
-
- .number, .built_in, .builtin-name, .literal, .type, .params, .deletion {
- color: #f99b15;
- }
-
- .title, .section, .attribute {
- color: #fec418;
- }
-
- .string, .symbol, .bullet, .addition {
- color: #48b685;
- }
-
- .keyword, .selector-tag {
- color: #815ba4;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/pojoaque.css b/source/css/highlights/pojoaque.css
new file mode 100644
index 0000000..99b8709
--- /dev/null
+++ b/source/css/highlights/pojoaque.css
@@ -0,0 +1,35 @@
+/*
+
+Pojoaque Style by Jason Tate
+http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
+Based on Solarized Style from http://ethanschoonover.com/solarized
+
+*/
+.highlight {
+ color: #dccf8f;
+ background: url("pojoaque.jpg") repeat scroll left top #181914; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #586e75;
+ font-style: italic; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .addition {
+ color: #b64926; }
+ .highlight .code .number, .highlight .code .string, .highlight .code .doctag, .highlight .code .regexp {
+ color: #468966; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .built_in, .highlight .code .name {
+ color: #ffb03b; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .class .title, .highlight .code .type, .highlight .code .tag {
+ color: #b58900; }
+ .highlight .code .attribute {
+ color: #b89859; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .link, .highlight .code .subst, .highlight .code .meta {
+ color: #cb4b16; }
+ .highlight .code .deletion {
+ color: #dc322f; }
+ .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #d3a60c; }
+ .highlight .code .formula {
+ background: #073642; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/pojoaque.scss b/source/css/highlights/pojoaque.scss
deleted file mode 100644
index 1eb357d..0000000
--- a/source/css/highlights/pojoaque.scss
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
-
-Pojoaque Style by Jason Tate
-http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
-Based on Solarized Style from http://ethanschoonover.com/solarized
-
-*/
-
-.highlight {
- color: #dccf8f;
- background: url("pojoaque.jpg") repeat scroll left top #181914;
-
- .code {
- .comment, .quote {
- color: #586e75;
- font-style: italic;
- }
-
- .keyword, .selector-tag, .literal, .addition {
- color: #b64926;
- }
-
- .number, .string, .doctag, .regexp {
- color: #468966;
- }
-
- .title, .section, .built_in, .name {
- color: #ffb03b;
- }
-
- .variable, .template-variable, .class .title, .type, .tag {
- color: #b58900;
- }
-
- .attribute {
- color: #b89859;
- }
-
- .symbol, .bullet, .link, .subst, .meta {
- color: #cb4b16;
- }
-
- .deletion {
- color: #dc322f;
- }
-
- .selector-id, .selector-class {
- color: #d3a60c;
- }
-
- .formula {
- background: #073642;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/railscasts.css b/source/css/highlights/railscasts.css
new file mode 100644
index 0000000..56b2470
--- /dev/null
+++ b/source/css/highlights/railscasts.css
@@ -0,0 +1,51 @@
+/*
+
+Railscasts-like style (c) Visoft, Inc. (Damien White)
+
+*/
+.highlight {
+ color: #e6e1dc;
+ background: #232323; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #bc9458;
+ font-style: italic; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #c26230; }
+ .highlight .code .string, .highlight .code .number, .highlight .code .regexp, .highlight .code .variable, .highlight .code .template-variable {
+ color: #a5c261; }
+ .highlight .code .subst {
+ color: #519f50; }
+ .highlight .code .tag, .highlight .code .name {
+ color: #e8bf6a; }
+ .highlight .code .type {
+ color: #da4939; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .attr, .highlight .code .link {
+ color: #6d9cbe; }
+ .highlight .code .params {
+ color: #d0d0ff; }
+ .highlight .code .attribute {
+ color: #cda869; }
+ .highlight .code .meta {
+ color: #9b859d; }
+ .highlight .code .title, .highlight .code .section {
+ color: #ffc66d; }
+ .highlight .code .addition {
+ background-color: #144212;
+ color: #e6e1dc;
+ display: inline-block;
+ width: 100%; }
+ .highlight .code .deletion {
+ background-color: #600;
+ color: #e6e1dc;
+ display: inline-block;
+ width: 100%; }
+ .highlight .code .selector-class {
+ color: #9b703f; }
+ .highlight .code .selector-id {
+ color: #8b98ab; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .link {
+ text-decoration: underline; }
diff --git a/source/css/highlights/railscasts.scss b/source/css/highlights/railscasts.scss
deleted file mode 100644
index 146781b..0000000
--- a/source/css/highlights/railscasts.scss
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
-
-Railscasts-like style (c) Visoft, Inc. (Damien White)
-
-*/
-
-.highlight {
- color: #e6e1dc;
- background: #232323;
-
- .code {
- .comment, .quote {
- color: #bc9458;
- font-style: italic;
- }
-
- .keyword, .selector-tag {
- color: #c26230;
- }
-
- .string, .number, .regexp, .variable, .template-variable {
- color: #a5c261;
- }
-
- .subst {
- color: #519f50;
- }
-
- .tag, .name {
- color: #e8bf6a;
- }
-
- .type {
- color: #da4939;
- }
-
- .symbol, .bullet, .built_in, .builtin-name, .attr, .link {
- color: #6d9cbe;
- }
-
- .params {
- color: #d0d0ff;
- }
-
- .attribute {
- color: #cda869;
- }
-
- .meta {
- color: #9b859d;
- }
-
- .title, .section {
- color: #ffc66d;
- }
-
- .addition {
- background-color: #144212;
- color: #e6e1dc;
- display: inline-block;
- width: 100%;
- }
-
- .deletion {
- background-color: #600;
- color: #e6e1dc;
- display: inline-block;
- width: 100%;
- }
-
- .selector-class {
- color: #9b703f;
- }
-
- .selector-id {
- color: #8b98ab;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
-
- .link {
- text-decoration: underline;
- }
- }
-}
diff --git a/source/css/highlights/rainbow.css b/source/css/highlights/rainbow.css
new file mode 100644
index 0000000..3e74d24
--- /dev/null
+++ b/source/css/highlights/rainbow.css
@@ -0,0 +1,33 @@
+/*
+
+Style with support for rainbow parens
+
+*/
+.highlight {
+ color: #d1d9e1;
+ background: #474949; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #969896;
+ font-style: italic; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .type, .highlight .code .addition {
+ color: #c9c; }
+ .highlight .code .number, .highlight .code .selector-attr, .highlight .code .selector-pseudo {
+ color: #f99157; }
+ .highlight .code .string, .highlight .code .doctag, .highlight .code .regexp {
+ color: #8abeb7; }
+ .highlight .code .title, .highlight .code .name, .highlight .code .section, .highlight .code .built_in {
+ color: #b5bd68; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .selector-id, .highlight .code .class .title {
+ color: #fc6; }
+ .highlight .code .section, .highlight .code .name, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .subst, .highlight .code .meta, .highlight .code .link {
+ color: #f99157; }
+ .highlight .code .deletion {
+ color: #dc322f; }
+ .highlight .code .formula {
+ background: #eee8d5; }
+ .highlight .code .attr, .highlight .code .attribute {
+ color: #81a2be; }
+ .highlight .code .emphasis {
+ font-style: italic; }
diff --git a/source/css/highlights/rainbow.scss b/source/css/highlights/rainbow.scss
deleted file mode 100644
index 25c19a1..0000000
--- a/source/css/highlights/rainbow.scss
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
-
-Style with support for rainbow parens
-
-*/
-
-.highlight {
- color: #d1d9e1;
- background: #474949;
-
- .code {
- .comment, .quote {
- color: #969896;
- font-style: italic;
- }
-
- .keyword, .selector-tag, .literal, .type, .addition {
- color: #c9c;
- }
-
- .number, .selector-attr, .selector-pseudo {
- color: #f99157;
- }
-
- .string, .doctag, .regexp {
- color: #8abeb7;
- }
-
- .title, .name, .section, .built_in {
- color: #b5bd68;
- }
-
- .variable, .template-variable, .selector-id, .class .title {
- color: #fc6;
- }
-
- .section, .name, .strong {
- font-weight: bold;
- }
-
- .symbol, .bullet, .subst, .meta, .link {
- color: #f99157;
- }
-
- .deletion {
- color: #dc322f;
- }
-
- .formula {
- background: #eee8d5;
- }
-
- .attr, .attribute {
- color: #81a2be;
- }
-
- .emphasis {
- font-style: italic;
- }
- }
-}
diff --git a/source/css/highlights/school-book.css b/source/css/highlights/school-book.css
new file mode 100644
index 0000000..c3edc6c
--- /dev/null
+++ b/source/css/highlights/school-book.css
@@ -0,0 +1,22 @@
+/*
+
+School Book style from goldblog.com.ua (c) Zaripov Yura
+
+*/
+.highlight {
+ background: #f6f6ae url("./school-book.png");
+ border-top: solid 2px #d2e8b9;
+ border-bottom: solid 1px #d2e8b9; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal {
+ color: #059;
+ font-weight: bold; }
+ .highlight .code .highlight, .highlight .code .subst {
+ color: #3e5915; }
+ .highlight .code .string, .highlight .code .title, .highlight .code .section, .highlight .code .type, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .attribute, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .addition, .highlight .code .variable, .highlight .code .template-tag, .highlight .code .template-variable, .highlight .code .link {
+ color: #2c009f; }
+ .highlight .code .comment, .highlight .code .quote, .highlight .code .deletion, .highlight .code .meta {
+ color: #e60415; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal, .highlight .code .doctag, .highlight .code .title, .highlight .code .section, .highlight .code .type, .highlight .code .name, .highlight .code .selector-id, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .emphasis {
+ font-style: italic; }
diff --git a/source/css/highlights/school-book.scss b/source/css/highlights/school-book.scss
deleted file mode 100644
index e781b55..0000000
--- a/source/css/highlights/school-book.scss
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
-
-School Book style from goldblog.com.ua (c) Zaripov Yura
-
-*/
-
-.highlight {
- background: #f6f6ae url("./school-book.png");
- border-top: solid 2px #d2e8b9;
- border-bottom: solid 1px #d2e8b9;
-
- .code {
- .keyword, .selector-tag, .literal {
- color: #059;
- font-weight: bold;
- }
-
- .highlight, .subst {
- color: #3e5915;
- }
-
- .string, .title, .section, .type, .symbol, .bullet, .attribute, .built_in, .builtin-name, .addition, .variable, .template-tag, .template-variable, .link {
- color: #2c009f;
- }
-
- .comment, .quote, .deletion, .meta {
- color: #e60415;
- }
-
- .keyword, .selector-tag, .literal, .doctag, .title, .section, .type, .name, .selector-id, .strong {
- font-weight: bold;
- }
-
- .emphasis {
- font-style: italic;
- }
- }
-}
diff --git a/source/css/highlights/solarized-dark.css b/source/css/highlights/solarized-dark.css
new file mode 100644
index 0000000..7e33d91
--- /dev/null
+++ b/source/css/highlights/solarized-dark.css
@@ -0,0 +1,34 @@
+/*
+
+Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull
+
+*/
+.highlight {
+ color: #839496;
+ background: #002b36; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #586e75; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .addition {
+ color: #859900; }
+ .highlight .code .number, .highlight .code .string, .highlight .code .meta .meta-string, .highlight .code .literal, .highlight .code .doctag, .highlight .code .regexp {
+ color: #2aa198; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #268bd2; }
+ .highlight .code .attribute, .highlight .code .attr, .highlight .code .variable, .highlight .code .template-variable, .highlight .code .class .title, .highlight .code .type {
+ color: #b58900; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .subst {
+ color: #cb4b16; }
+ .highlight .code .meta {
+ color: #cb4b16; }
+ .highlight .code .meta .keyword {
+ color: #cb4b16; }
+ .highlight .code .selector-attr, .highlight .code .selector-pseudo, .highlight .code .link {
+ color: #cb4b16; }
+ .highlight .code .built_in, .highlight .code .deletion {
+ color: #dc322f; }
+ .highlight .code .formula {
+ background: #073642; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/solarized-dark.scss b/source/css/highlights/solarized-dark.scss
deleted file mode 100644
index 1786819..0000000
--- a/source/css/highlights/solarized-dark.scss
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
-
-Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull
-
-*/
-
-.highlight {
- color: #839496;
- background: #002b36;
-
- .code {
- .comment, .quote {
- color: #586e75;
- }
-
- .keyword, .selector-tag, .addition {
- color: #859900;
- }
-
- .number, .string, .meta .meta-string, .literal, .doctag, .regexp {
- color: #2aa198;
- }
-
- .title, .section, .name, .selector-id, .selector-class {
- color: #268bd2;
- }
-
- .attribute, .attr, .variable, .template-variable, .class .title, .type {
- color: #b58900;
- }
-
- .symbol, .bullet, .subst {
- color: #cb4b16;
- }
-
- .meta {
- color: #cb4b16;
-
- .keyword {
- color: #cb4b16;
- }
- }
-
- .selector-attr, .selector-pseudo, .link {
- color: #cb4b16;
- }
-
- .built_in, .deletion {
- color: #dc322f;
- }
-
- .formula {
- background: #073642;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/solarized-light.css b/source/css/highlights/solarized-light.css
new file mode 100644
index 0000000..632a646
--- /dev/null
+++ b/source/css/highlights/solarized-light.css
@@ -0,0 +1,34 @@
+/*
+
+Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull
+
+*/
+.highlight {
+ color: #657b83;
+ background: #fdf6e3; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #93a1a1; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .addition {
+ color: #859900; }
+ .highlight .code .number, .highlight .code .string, .highlight .code .meta .meta-string, .highlight .code .literal, .highlight .code .doctag, .highlight .code .regexp {
+ color: #2aa198; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #268bd2; }
+ .highlight .code .attribute, .highlight .code .attr, .highlight .code .variable, .highlight .code .template-variable, .highlight .code .class .title, .highlight .code .type {
+ color: #b58900; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .subst {
+ color: #cb4b16; }
+ .highlight .code .meta {
+ color: #cb4b16; }
+ .highlight .code .meta .keyword {
+ color: #cb4b16; }
+ .highlight .code .selector-attr, .highlight .code .selector-pseudo, .highlight .code .link {
+ color: #cb4b16; }
+ .highlight .code .built_in, .highlight .code .deletion {
+ color: #dc322f; }
+ .highlight .code .formula {
+ background: #eee8d5; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/solarized-light.scss b/source/css/highlights/solarized-light.scss
deleted file mode 100644
index 9fb6e6f..0000000
--- a/source/css/highlights/solarized-light.scss
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
-
-Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull
-
-*/
-
-.highlight {
- color: #657b83;
- background: #fdf6e3;
-
- .code {
- .comment, .quote {
- color: #93a1a1;
- }
-
- .keyword, .selector-tag, .addition {
- color: #859900;
- }
-
- .number, .string, .meta .meta-string, .literal, .doctag, .regexp {
- color: #2aa198;
- }
-
- .title, .section, .name, .selector-id, .selector-class {
- color: #268bd2;
- }
-
- .attribute, .attr, .variable, .template-variable, .class .title, .type {
- color: #b58900;
- }
-
- .symbol, .bullet, .subst {
- color: #cb4b16;
- }
-
- .meta {
- color: #cb4b16;
-
- .keyword {
- color: #cb4b16;
- }
- }
-
- .selector-attr, .selector-pseudo, .link {
- color: #cb4b16;
- }
-
- .built_in, .deletion {
- color: #dc322f;
- }
-
- .formula {
- background: #eee8d5;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/sunburst.css b/source/css/highlights/sunburst.css
new file mode 100644
index 0000000..663585f
--- /dev/null
+++ b/source/css/highlights/sunburst.css
@@ -0,0 +1,49 @@
+/*
+
+Sunburst-like style (c) Vasily Polovnyov
+
+*/
+.highlight {
+ color: #f8f8f8;
+ background: #000; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #aeaeae;
+ font-style: italic; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .type {
+ color: #e28964; }
+ .highlight .code .string {
+ color: #65b042; }
+ .highlight .code .subst {
+ color: #daefa3; }
+ .highlight .code .regexp, .highlight .code .link {
+ color: #e9c062; }
+ .highlight .code .title, .highlight .code .section, .highlight .code .tag, .highlight .code .name {
+ color: #89bdff; }
+ .highlight .code .class .title, .highlight .code .doctag {
+ text-decoration: underline; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .number {
+ color: #3387cc; }
+ .highlight .code .params, .highlight .code .variable, .highlight .code .template-variable {
+ color: #3e87e3; }
+ .highlight .code .attribute {
+ color: #cda869; }
+ .highlight .code .meta {
+ color: #8996a8; }
+ .highlight .code .formula {
+ background-color: #0e2231;
+ color: #f8f8f8;
+ font-style: italic; }
+ .highlight .code .addition {
+ background-color: #253b22;
+ color: #f8f8f8; }
+ .highlight .code .deletion {
+ background-color: #420e09;
+ color: #f8f8f8; }
+ .highlight .code .selector-class {
+ color: #9b703f; }
+ .highlight .code .selector-id {
+ color: #8b98ab; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/sunburst.scss b/source/css/highlights/sunburst.scss
deleted file mode 100644
index fed08b0..0000000
--- a/source/css/highlights/sunburst.scss
+++ /dev/null
@@ -1,89 +0,0 @@
-/*
-
-Sunburst-like style (c) Vasily Polovnyov
-
-*/
-
-.highlight {
- color: #f8f8f8;
- background: #000;
-
- .code {
- .comment, .quote {
- color: #aeaeae;
- font-style: italic;
- }
-
- .keyword, .selector-tag, .type {
- color: #e28964;
- }
-
- .string {
- color: #65b042;
- }
-
- .subst {
- color: #daefa3;
- }
-
- .regexp, .link {
- color: #e9c062;
- }
-
- .title, .section, .tag, .name {
- color: #89bdff;
- }
-
- .class .title, .doctag {
- text-decoration: underline;
- }
-
- .symbol, .bullet, .number {
- color: #3387cc;
- }
-
- .params, .variable, .template-variable {
- color: #3e87e3;
- }
-
- .attribute {
- color: #cda869;
- }
-
- .meta {
- color: #8996a8;
- }
-
- .formula {
- background-color: #0e2231;
- color: #f8f8f8;
- font-style: italic;
- }
-
- .addition {
- background-color: #253b22;
- color: #f8f8f8;
- }
-
- .deletion {
- background-color: #420e09;
- color: #f8f8f8;
- }
-
- .selector-class {
- color: #9b703f;
- }
-
- .selector-id {
- color: #8b98ab;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/tomorrow-night-blue.css b/source/css/highlights/tomorrow-night-blue.css
new file mode 100644
index 0000000..be06b4c
--- /dev/null
+++ b/source/css/highlights/tomorrow-night-blue.css
@@ -0,0 +1,25 @@
+/* Tomorrow Night Blue Theme */
+/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
+/* Original theme - https://github.com/chriskempson/tomorrow-theme */
+/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
+.highlight {
+ color: #fff;
+ background: #002451; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #7285b7; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .regexp, .highlight .code .deletion {
+ color: #ff9da4; }
+ .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params, .highlight .code .meta, .highlight .code .link {
+ color: #ffc58f; }
+ .highlight .code .attribute {
+ color: #ffeead; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .addition {
+ color: #d1f1a9; }
+ .highlight .code .title, .highlight .code .section {
+ color: #bbdaff; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #ebbbff; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/tomorrow-night-blue.scss b/source/css/highlights/tomorrow-night-blue.scss
deleted file mode 100644
index 2a4099a..0000000
--- a/source/css/highlights/tomorrow-night-blue.scss
+++ /dev/null
@@ -1,47 +0,0 @@
-/* Tomorrow Night Blue Theme */
-/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
-/* Original theme - https://github.com/chriskempson/tomorrow-theme */
-/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
-
-.highlight {
- color: #fff;
- background: #002451;
-
- .code {
- .comment, .quote {
- color: #7285b7;
- }
-
- .variable, .template-variable, .tag, .name, .selector-id, .selector-class, .regexp, .deletion {
- color: #ff9da4;
- }
-
- .number, .built_in, .builtin-name, .literal, .type, .params, .meta, .link {
- color: #ffc58f;
- }
-
- .attribute {
- color: #ffeead;
- }
-
- .string, .symbol, .bullet, .addition {
- color: #d1f1a9;
- }
-
- .title, .section {
- color: #bbdaff;
- }
-
- .keyword, .selector-tag {
- color: #ebbbff;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/tomorrow-night-bright.css b/source/css/highlights/tomorrow-night-bright.css
new file mode 100644
index 0000000..23a41d4
--- /dev/null
+++ b/source/css/highlights/tomorrow-night-bright.css
@@ -0,0 +1,24 @@
+/* Tomorrow Night Bright Theme */
+/* Original theme - https://github.com/chriskempson/tomorrow-theme */
+/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
+.highlight {
+ color: #eaeaea;
+ background: #000; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #969896; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .regexp, .highlight .code .deletion {
+ color: #d54e53; }
+ .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params, .highlight .code .meta, .highlight .code .link {
+ color: #e78c45; }
+ .highlight .code .attribute {
+ color: #e7c547; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .addition {
+ color: #b9ca4a; }
+ .highlight .code .title, .highlight .code .section {
+ color: #7aa6da; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #c397d8; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/tomorrow-night-bright.scss b/source/css/highlights/tomorrow-night-bright.scss
deleted file mode 100644
index 367ef15..0000000
--- a/source/css/highlights/tomorrow-night-bright.scss
+++ /dev/null
@@ -1,46 +0,0 @@
-/* Tomorrow Night Bright Theme */
-/* Original theme - https://github.com/chriskempson/tomorrow-theme */
-/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
-
-.highlight {
- color: #eaeaea;
- background: #000;
-
- .code {
- .comment, .quote {
- color: #969896;
- }
-
- .variable, .template-variable, .tag, .name, .selector-id, .selector-class, .regexp, .deletion {
- color: #d54e53;
- }
-
- .number, .built_in, .builtin-name, .literal, .type, .params, .meta, .link {
- color: #e78c45;
- }
-
- .attribute {
- color: #e7c547;
- }
-
- .string, .symbol, .bullet, .addition {
- color: #b9ca4a;
- }
-
- .title, .section {
- color: #7aa6da;
- }
-
- .keyword, .selector-tag {
- color: #c397d8;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/tomorrow-night-eighties.css b/source/css/highlights/tomorrow-night-eighties.css
new file mode 100644
index 0000000..39e88b8
--- /dev/null
+++ b/source/css/highlights/tomorrow-night-eighties.css
@@ -0,0 +1,24 @@
+/* Tomorrow Night Eighties Theme */
+/* Original theme - https://github.com/chriskempson/tomorrow-theme */
+/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
+.highlight {
+ color: #ccc;
+ background: #2d2d2d; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #999; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .regexp, .highlight .code .deletion {
+ color: #f2777a; }
+ .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params, .highlight .code .meta, .highlight .code .link {
+ color: #f99157; }
+ .highlight .code .attribute {
+ color: #fc6; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .addition {
+ color: #9c9; }
+ .highlight .code .title, .highlight .code .section {
+ color: #69c; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #c9c; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/tomorrow-night-eighties.scss b/source/css/highlights/tomorrow-night-eighties.scss
deleted file mode 100644
index 061eeb6..0000000
--- a/source/css/highlights/tomorrow-night-eighties.scss
+++ /dev/null
@@ -1,46 +0,0 @@
-/* Tomorrow Night Eighties Theme */
-/* Original theme - https://github.com/chriskempson/tomorrow-theme */
-/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
-
-.highlight {
- color: #ccc;
- background: #2d2d2d;
-
- .code {
- .comment, .quote {
- color: #999;
- }
-
- .variable, .template-variable, .tag, .name, .selector-id, .selector-class, .regexp, .deletion {
- color: #f2777a;
- }
-
- .number, .built_in, .builtin-name, .literal, .type, .params, .meta, .link {
- color: #f99157;
- }
-
- .attribute {
- color: #fc6;
- }
-
- .string, .symbol, .bullet, .addition {
- color: #9c9;
- }
-
- .title, .section {
- color: #69c;
- }
-
- .keyword, .selector-tag {
- color: #c9c;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/tomorrow-night.css b/source/css/highlights/tomorrow-night.css
new file mode 100644
index 0000000..fce6182
--- /dev/null
+++ b/source/css/highlights/tomorrow-night.css
@@ -0,0 +1,23 @@
+/* Original theme - https://github.com/chriskempson/tomorrow-theme */
+/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
+.highlight {
+ color: #c5c8c6;
+ background: #1d1f21; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #969896; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .regexp, .highlight .code .deletion {
+ color: #c66; }
+ .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params, .highlight .code .meta, .highlight .code .link {
+ color: #de935f; }
+ .highlight .code .attribute {
+ color: #f0c674; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .addition {
+ color: #b5bd68; }
+ .highlight .code .title, .highlight .code .section {
+ color: #81a2be; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #b294bb; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/tomorrow-night.scss b/source/css/highlights/tomorrow-night.scss
deleted file mode 100644
index 762cf70..0000000
--- a/source/css/highlights/tomorrow-night.scss
+++ /dev/null
@@ -1,45 +0,0 @@
-/* Original theme - https://github.com/chriskempson/tomorrow-theme */
-/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
-
-.highlight {
- color: #c5c8c6;
- background: #1d1f21;
-
- .code {
- .comment, .quote {
- color: #969896;
- }
-
- .variable, .template-variable, .tag, .name, .selector-id, .selector-class, .regexp, .deletion {
- color: #c66;
- }
-
- .number, .built_in, .builtin-name, .literal, .type, .params, .meta, .link {
- color: #de935f;
- }
-
- .attribute {
- color: #f0c674;
- }
-
- .string, .symbol, .bullet, .addition {
- color: #b5bd68;
- }
-
- .title, .section {
- color: #81a2be;
- }
-
- .keyword, .selector-tag {
- color: #b294bb;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/tomorrow.css b/source/css/highlights/tomorrow.css
new file mode 100644
index 0000000..b12a038
--- /dev/null
+++ b/source/css/highlights/tomorrow.css
@@ -0,0 +1,21 @@
+.highlight {
+ color: #4d4d4c;
+ background: #fff; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #8e908c; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .tag, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .regexp, .highlight .code .deletion {
+ color: #c82829; }
+ .highlight .code .number, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .literal, .highlight .code .type, .highlight .code .params, .highlight .code .meta, .highlight .code .link {
+ color: #f5871f; }
+ .highlight .code .attribute {
+ color: #eab700; }
+ .highlight .code .string, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .addition {
+ color: #718c00; }
+ .highlight .code .title, .highlight .code .section {
+ color: #4271ae; }
+ .highlight .code .keyword, .highlight .code .selector-tag {
+ color: #8959a8; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/tomorrow.scss b/source/css/highlights/tomorrow.scss
deleted file mode 100644
index 3a3349e..0000000
--- a/source/css/highlights/tomorrow.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-.highlight {
- color: #4d4d4c;
- background: #fff;
-
- .code {
- .comment, .quote {
- color: #8e908c;
- }
-
- .variable, .template-variable, .tag, .name, .selector-id, .selector-class, .regexp, .deletion {
- color: #c82829;
- }
-
- .number, .built_in, .builtin-name, .literal, .type, .params, .meta, .link {
- color: #f5871f;
- }
-
- .attribute {
- color: #eab700;
- }
-
- .string, .symbol, .bullet, .addition {
- color: #718c00;
- }
-
- .title, .section {
- color: #4271ae;
- }
-
- .keyword, .selector-tag {
- color: #8959a8;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/vs.css b/source/css/highlights/vs.css
new file mode 100644
index 0000000..349dccf
--- /dev/null
+++ b/source/css/highlights/vs.css
@@ -0,0 +1,29 @@
+/*
+
+Visual Studio-like style based on original C# coloring by Jason Diamond
+
+*/
+.highlight {
+ display: block;
+ overflow-x: auto;
+ padding: 0.5em;
+ background: #fff;
+ color: #000; }
+ .highlight .code .comment, .highlight .code .quote, .highlight .code .variable {
+ color: #008000; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .built_in, .highlight .code .name, .highlight .code .tag {
+ color: #00f; }
+ .highlight .code .string, .highlight .code .title, .highlight .code .section, .highlight .code .attribute, .highlight .code .literal, .highlight .code .template-tag, .highlight .code .template-variable, .highlight .code .type, .highlight .code .addition {
+ color: #a31515; }
+ .highlight .code .deletion, .highlight .code .selector-attr, .highlight .code .selector-pseudo, .highlight .code .meta {
+ color: #2b91af; }
+ .highlight .code .doctag {
+ color: #808080; }
+ .highlight .code .attr {
+ color: #f00; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .link {
+ color: #00b0e8; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/vs.scss b/source/css/highlights/vs.scss
deleted file mode 100644
index 39af40f..0000000
--- a/source/css/highlights/vs.scss
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
-
-Visual Studio-like style based on original C# coloring by Jason Diamond
-
-*/
-
-.highlight {
- display: block;
- overflow-x: auto;
- padding: 0.5em;
- background: #fff;
- color: #000;
-
- .code {
- .comment, .quote, .variable {
- color: #008000;
- }
-
- .keyword, .selector-tag, .built_in, .name, .tag {
- color: #00f;
- }
-
- .string, .title, .section, .attribute, .literal, .template-tag, .template-variable, .type, .addition {
- color: #a31515;
- }
-
- .deletion, .selector-attr, .selector-pseudo, .meta {
- color: #2b91af;
- }
-
- .doctag {
- color: #808080;
- }
-
- .attr {
- color: #f00;
- }
-
- .symbol, .bullet, .link {
- color: #00b0e8;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/highlights/xcode.css b/source/css/highlights/xcode.css
new file mode 100644
index 0000000..6c78341
--- /dev/null
+++ b/source/css/highlights/xcode.css
@@ -0,0 +1,39 @@
+/*
+
+XCode style (c) Angel Garcia
+
+*/
+.highlight {
+ color: #000;
+ background: #fff; }
+ .highlight .code .comment, .highlight .code .quote {
+ color: #006a00; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .literal {
+ color: #aa0d91; }
+ .highlight .code .name {
+ color: #008; }
+ .highlight .code .variable, .highlight .code .template-variable {
+ color: #660; }
+ .highlight .code .string {
+ color: #c41a16; }
+ .highlight .code .regexp, .highlight .code .link {
+ color: #080; }
+ .highlight .code .title, .highlight .code .tag, .highlight .code .symbol, .highlight .code .bullet, .highlight .code .number, .highlight .code .meta {
+ color: #1c00cf; }
+ .highlight .code .section, .highlight .code .class .title, .highlight .code .type, .highlight .code .attr, .highlight .code .built_in, .highlight .code .builtin-name, .highlight .code .params {
+ color: #5c2699; }
+ .highlight .code .attribute, .highlight .code .subst {
+ color: #000; }
+ .highlight .code .formula {
+ background-color: #eee;
+ font-style: italic; }
+ .highlight .code .addition {
+ background-color: #baeeba; }
+ .highlight .code .deletion {
+ background-color: #ffc8bd; }
+ .highlight .code .selector-id, .highlight .code .selector-class {
+ color: #9b703f; }
+ .highlight .code .doctag, .highlight .code .strong {
+ font-weight: bold; }
+ .highlight .code .emphasis {
+ font-style: italic; }
diff --git a/source/css/highlights/xcode.scss b/source/css/highlights/xcode.scss
deleted file mode 100644
index ff6f1a9..0000000
--- a/source/css/highlights/xcode.scss
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
-
-XCode style (c) Angel Garcia
-
-*/
-
-.highlight {
- color: #000;
- background: #fff;
-
- .code {
- .comment, .quote {
- color: #006a00;
- }
-
- .keyword, .selector-tag, .literal {
- color: #aa0d91;
- }
-
- .name {
- color: #008;
- }
-
- .variable, .template-variable {
- color: #660;
- }
-
- .string {
- color: #c41a16;
- }
-
- .regexp, .link {
- color: #080;
- }
-
- .title, .tag, .symbol, .bullet, .number, .meta {
- color: #1c00cf;
- }
-
- .section, .class .title, .type, .attr, .built_in, .builtin-name, .params {
- color: #5c2699;
- }
-
- .attribute, .subst {
- color: #000;
- }
-
- .formula {
- background-color: #eee;
- font-style: italic;
- }
-
- .addition {
- background-color: #baeeba;
- }
-
- .deletion {
- background-color: #ffc8bd;
- }
-
- .selector-id, .selector-class {
- color: #9b703f;
- }
-
- .doctag, .strong {
- font-weight: bold;
- }
-
- .emphasis {
- font-style: italic;
- }
- }
-}
diff --git a/source/css/highlights/zenburn.css b/source/css/highlights/zenburn.css
new file mode 100644
index 0000000..6516134
--- /dev/null
+++ b/source/css/highlights/zenburn.css
@@ -0,0 +1,33 @@
+/*
+
+Zenburn style from voldmar.ru (c) Vladimir Epifanov
+based on dark.css by Ivan Sagalaev
+
+*/
+.highlight {
+ color: #dcdcdc;
+ background: #3f3f3f; }
+ .highlight .code .keyword, .highlight .code .selector-tag, .highlight .code .tag {
+ color: #e3ceab; }
+ .highlight .code .template-tag {
+ color: #dcdcdc; }
+ .highlight .code .number {
+ color: #8cd0d3; }
+ .highlight .code .variable, .highlight .code .template-variable, .highlight .code .attribute {
+ color: #efdcbc; }
+ .highlight .code .literal {
+ color: #efefaf; }
+ .highlight .code .subst {
+ color: #8f8f8f; }
+ .highlight .code .title, .highlight .code .name, .highlight .code .selector-id, .highlight .code .selector-class, .highlight .code .section, .highlight .code .type {
+ color: #efef8f; }
+ .highlight .code .symbol, .highlight .code .bullet, .highlight .code .link {
+ color: #dca3a3; }
+ .highlight .code .deletion, .highlight .code .string, .highlight .code .built_in, .highlight .code .builtin-name {
+ color: #cc9393; }
+ .highlight .code .addition, .highlight .code .comment, .highlight .code .quote, .highlight .code .meta {
+ color: #7f9f7f; }
+ .highlight .code .emphasis {
+ font-style: italic; }
+ .highlight .code .strong {
+ font-weight: bold; }
diff --git a/source/css/highlights/zenburn.scss b/source/css/highlights/zenburn.scss
deleted file mode 100644
index af8b175..0000000
--- a/source/css/highlights/zenburn.scss
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
-
-Zenburn style from voldmar.ru (c) Vladimir Epifanov
-based on dark.css by Ivan Sagalaev
-
-*/
-
-.highlight {
- color: #dcdcdc;
- background: #3f3f3f;
-
- .code {
- .keyword, .selector-tag, .tag {
- color: #e3ceab;
- }
-
- .template-tag {
- color: #dcdcdc;
- }
-
- .number {
- color: #8cd0d3;
- }
-
- .variable, .template-variable, .attribute {
- color: #efdcbc;
- }
-
- .literal {
- color: #efefaf;
- }
-
- .subst {
- color: #8f8f8f;
- }
-
- .title, .name, .selector-id, .selector-class, .section, .type {
- color: #efef8f;
- }
-
- .symbol, .bullet, .link {
- color: #dca3a3;
- }
-
- .deletion, .string, .built_in, .builtin-name {
- color: #cc9393;
- }
-
- .addition, .comment, .quote, .meta {
- color: #7f9f7f;
- }
-
- .emphasis {
- font-style: italic;
- }
-
- .strong {
- font-weight: bold;
- }
- }
-}
diff --git a/source/css/index.css b/source/css/index.css
new file mode 100644
index 0000000..8cb228c
--- /dev/null
+++ b/source/css/index.css
@@ -0,0 +1 @@
+/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}body{font-family:Spoqa Han Sans,Spoqa Han Sans JP,Noto Sans Korean,sans-serif;text-shadow:0 0 .1px rgba(0,0,0,.3);-webkit-text-size-adjust:antialiased;-moz-osx-font-smoothing:grayscale}html{height:100%;font-size:14px}@media only screen and (min-width:624px){html{font-size:16px}}body{display:table;width:100%;height:100%;margin:0;color:#454545;line-height:1.5em;-webkit-font-smoothing:antialiased;table-layout:fixed}a{text-decoration:none;color:#59abe3;-webkit-transition:color .3s ease;transition:color .3s ease}a:hover{color:#4789b6}hr{margin:1.5rem 0;border:0;border-bottom:1px solid #ededed}h1,h2,h3,h4,h5,h6{font-weight:500}.page-background{z-index:-1;background-color:#fff;position:fixed;top:0;right:0;bottom:0;left:0}.content-outer{margin-top:8rem}@media only screen and (min-width:624px){.content-outer{margin-top:4rem}}.content-inner{width:100%;padding:1.5rem 0}.menu{display:table-row;width:100%;background-color:#fff;border-bottom:1px solid #ededed;list-style:none;margin:0;padding:0;overflow:hidden;position:absolute;top:0;z-index:3;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease}@media only screen and (min-width:624px){.menu{position:fixed}}@media only screen and (min-width:624px){.menu--hide{-webkit-transform:translateY(-4rem);transform:translateY(-4rem)}}.menu-inner{width:100%;max-width:72rem;margin:auto;padding:0 1rem;-webkit-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width:624px){.menu-inner{padding:0}}.menu__left-area{float:left;height:4rem}@media only screen and (max-width:624px){.menu__left-area{width:100%;text-align:center;border-bottom:1px solid #f6f6f6}.menu__left-area .menu__item{float:none}}.menu__right-area{float:right;height:4rem}@media only screen and (max-width:624px){.menu__right-area{width:100%;overflow-x:auto;white-space:nowrap;padding:0 1.5rem;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center}}.menu__item{position:relative;display:inline-block;float:left;margin-right:1.5rem}.menu__item:last-child{margin-right:0}.menu__item:after{content:"";position:absolute;right:0;bottom:0;left:0;height:2px;background-color:transparent;-webkit-transform:translateY(2px);transform:translateY(2px);-webkit-transition:background-color .3s ease,-webkit-transform .3s ease;transition:background-color .3s ease,-webkit-transform .3s ease;transition:background-color .3s ease,transform .3s ease;transition:background-color .3s ease,transform .3s ease,-webkit-transform .3s ease}.menu__item:hover .menu__item__link{color:#999}.menu__item:hover:after{background-color:#999;-webkit-transform:translateY(0);transform:translateY(0)}@media only screen and (max-width:624px){.menu__item{float:none}}.menu__item--active .menu__item__link{color:#59abe3}.menu__item--active:after{background-color:#59abe3;-webkit-transform:translateY(0);transform:translateY(0)}.menu__item__link{color:#666;font-size:1rem;display:inline-block;height:4rem;line-height:4rem}.menu__item__link--brand{color:#454545}.menu__item__link--brand__image{width:2.5rem;height:2.5rem;margin:.75rem 1rem .75rem 0;display:inline-block;float:left}.menu__item__link--brand__label{height:4rem;line-height:4rem;display:inline-block;float:left;font-weight:500}.article{position:relative;padding:1rem;overflow:hidden;max-width:45rem;margin:auto}@media only screen and (max-width:624px){.article{padding-top:0}}.article .article__contents img{display:block;margin:1rem}@media only screen and (max-width:624px){.article .article__contents img{width:calc(100% + 2rem);margin-left:-1rem;margin-right:-1rem}}@media only screen and (min-width:624px){.article .article__contents img{max-width:100%;margin-left:auto;margin-right:auto}}.article .article__contents h1,.article .article__contents h2,.article .article__contents h3,.article .article__contents h4,.article .article__contents h5,.article .article__contents h6{color:#222;margin-top:3rem}.article .article__contents blockquote{background-color:#f6f6f6;padding:1.5rem 1rem;margin-left:-1rem;margin-right:-1rem}.article .article__contents blockquote p{margin:0}.article .article__contents blockquote p+p{margin-top:1rem}.article .article__contents blockquote code{background-color:transparent;padding:0;font-style:italic}.article .article__contents blockquote.pullquote.left{float:left;margin:0 1.5rem 1.5rem 0}.article .article__contents blockquote.pullquote.right{float:right;margin:0 0 1.5rem 1.5rem}.article .article__contents cite:before{content:"-";margin:0 7px;margin:0 .5rem}.article .article__contents code{font-family:consolas,monospace;background-color:#f6f6f6;color:#e28f0b;padding:.125rem .25rem;border-radius:2px;margin-left:0;margin-right:0}.article .article__contents figure.highlight{padding:0 1rem;margin-left:-1rem;margin-right:-1rem}.article .article__contents figure.highlight *{font-family:consolas,monospace}.article .article__contents figure.highlight figcaption{margin-top:1rem}.article .article__contents figure.highlight figcaption span{color:#999;margin-right:.5rem}.article .article__contents figure.highlight figcaption a{float:right}.article .article__contents figure.highlight table{border:0}.article .article__contents figure.highlight table tr td{padding:0}.article .article__contents figure.highlight .line{min-height:1.5rem}.article .article__contents figure.highlight .line.marked{background-color:rgba(0,0,0,.3)}.article .article__contents figure.highlight .gutter{width:1rem;padding-right:1rem;color:#999}.article .article__contents table{border-top:1px solid #999;width:100%;text-align:left;border-collapse:collapse}.article .article__contents table thead tr th{border-bottom:2px solid #f6f6f6;padding:.25rem 0}.article .article__contents table tbody tr td{border-bottom:1px solid #f6f6f6;padding:.25rem 0}.article .article__contents table tbody tr:last-child td{border-color:#999}.article .article__contents iframe{display:block;margin:1rem -1rem;width:calc(100% + 2rem)}.article .article__contents .video-container{position:relative;padding-top:56.25%;overflow:hidden}@media only screen and (max-width:624px){.article .article__contents .video-container{margin:0 -1rem;width:calc(100% + 2rem)}}.article .article__contents .video-container iframe{position:absolute;top:0;left:0;width:100%;height:100%;margin:0}.article .article__contents ol,.article .article__contents ul{list-style:none}.article .article__contents ol li,.article .article__contents ul li{position:relative}.article .article__contents ol li:before,.article .article__contents ul li:before{position:absolute}.article .article__contents ul{padding-left:1.5rem}.article .article__contents ul li:before{content:"•";left:-21px;left:-1.5rem}.article .article__contents ol{padding-left:2rem;counter-reset:a}.article .article__contents ol li:before{left:-28px;left:-2rem;display:inline-block;content:counter(a) ".";counter-increment:a;width:21px;width:1.5rem;text-align:right}.article .article__contents #footnotelist ol{padding-left:2rem!important}.article .article__contents #footnotelist ol li span:first-child{display:none!important}.article .article__contents #footnotelist ol li span:nth-child(2){display:inline!important}.article .article__contents hr{position:relative;border:0;margin:0;height:4rem}.article .article__contents hr:after{content:"• • •";position:absolute;top:50%;left:50%;margin-top:-10.5px;margin-top:-.75rem;margin-left:-21px;margin-left:-1.5rem}.article__title{line-height:1.2em}.article__image{display:block;margin:1.5rem -1rem;width:calc(100% + 2rem)}@media only screen and (min-width:624px){.article__image{max-width:100%;margin-left:auto;margin-right:auto}}.article__meta{font-size:14px;color:#999;overflow:hidden;width:100%}.article__meta__time{float:left}@media only screen and (max-width:624px){.article__meta__time{width:100%}}.article__meta__categories{float:right}@media only screen and (max-width:624px){.article__meta__categories{float:left;width:100%}}.article__meta__categories__item{color:#999}.article__meta__categories__item:hover{color:#59abe3}.article__meta__categories__separator{margin:0 8px;color:#999}.article__tags{margin:2rem 0}.article__tags__item{background-color:#ededed;color:#454545;border-radius:2px;font-size:.875rem;display:inline-block;padding:0 .5rem;margin-right:.5rem;margin-bottom:.5rem;-webkit-transition:background-color .3s ease;transition:background-color .3s ease}.article__tags__item:hover{background-color:#7abce9;color:#454545}.article__author{position:relative;padding:2rem 0 2rem 8rem;margin-bottom:2rem;border-top:1px solid #f6f6f6;border-bottom:1px solid #f6f6f6}.article__author__image{position:absolute;left:0;top:1.5rem;width:5rem;height:5rem;border-radius:50%}.article__author__link{font-size:1.5rem;font-weight:500;color:#454545}.article__author__link:hover{color:#59abe3}.article__author__desc{margin:0}.article__author__socials{margin-top:1rem}.article__author__socials__item{color:#999;font-size:1.25rem;margin-right:.75rem}.related-posts{text-align:center;overflow:hidden;width:100%;max-width:72rem;-webkit-box-sizing:border-box;box-sizing:border-box}@media only screen and (min-width:624px){.related-posts{padding:0 .5rem;margin:1rem auto}.related-posts h3{margin-bottom:0}}.related-posts__item__wrapper{width:100%;height:15rem;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box}@media only screen and (min-width:624px){.related-posts__item__wrapper{display:inline-block;width:33.33%;padding:0 .5rem;margin-top:.75rem}}.related-posts__item{position:relative;display:block;width:100%;height:100%;overflow:hidden}.related-posts__item:hover .related-posts__item__background{-webkit-transform:scale(1.2);transform:scale(1.2)}.related-posts__item__background{display:block;background-size:cover;background-position:50% 50%;background-repeat:no-repeat;position:absolute;top:0;right:0;left:0;bottom:0;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease}.related-posts__item__overlay{background-color:rgba(0,0,0,.4);position:absolute;top:0;right:0;left:0;bottom:0}.related-posts__item__title{font-size:1.25rem;line-height:1.5em;font-weight:500;color:#fff;padding:0 1rem;position:absolute;top:50%;right:0;left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.sharer{position:fixed;left:0;right:0;bottom:0;height:3rem;background-color:#fff;z-index:2;border-top:1px solid #ededed;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease}.sharer--hide{-webkit-transform:translateY(3rem);transform:translateY(3rem)}.sharer-inner{padding:0 1rem;max-width:45rem;margin:auto}.sharer__right{float:right}.sharer__item{background:none;border:0;padding:0;margin-left:1.5rem;font-size:1.5rem;line-height:3rem;color:#999;cursor:pointer;-webkit-transition:color .3s ease;transition:color .3s ease}#sharer-facebook:hover{color:#3b5998}#sharer-twitter:hover{color:#00aced}#sharer-pinterest:hover{color:#b5071a}#sharer-pocket:hover{color:#ef4056}.post-list{position:relative;width:100%;max-width:45rem;margin:auto;padding:0 1rem;-webkit-box-sizing:border-box;box-sizing:border-box}.post-list__item{overflow:hidden;padding:1rem 0;border-bottom:1px solid #f6f6f6}.post-list__item:last-child{border:0}.post-list__item__col-1{width:33.3333%;padding-right:.5rem}.post-list__item__col-1,.post-list__item__col-2{float:left;-webkit-box-sizing:border-box;box-sizing:border-box}.post-list__item__col-2{width:66.6666%;padding-left:.5rem}.post-list__item__link{display:block;overflow:hidden;position:relative;width:100%;padding-top:75%}.post-list__item__link:hover .post-list__item__link__background{-webkit-transform:scale(1.2);transform:scale(1.2)}.post-list__item__link__background{position:absolute;top:0;right:0;bottom:0;left:0;background-position:50% 50%;background-size:cover;background-repeat:no-repeat;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease}.post-list__item__meta__link{color:#999}.post-list__item__meta__link:hover{color:#59abe3}.post-list__item__meta__label{color:#999;margin:0 .5rem}.post-list__item__title{margin:.5rem 0}@media only screen and (max-width:624px){.post-list__item__title{height:1.5rem;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}}.post-list__item__title a{color:#454545}.post-list__item__title a:hover{color:#59abe3}.post-list__item__description{margin:0}@media only screen and (max-width:624px){.post-list__item__description{height:1.5rem;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}}.pagination{width:100%;text-align:center;padding:1rem 0}.pagination .current,.pagination a{display:inline-block;height:1.5rem;line-height:1.5rem;padding:0 .25rem;margin:0 .25rem;border-bottom:2px solid}.pagination .current{color:#454545}.pagination .space{color:#999}.pagination a{color:#999;border-color:transparent;-webkit-transition:border-color .3s ease,color .3s ease;transition:border-color .3s ease,color .3s ease}.pagination a:hover{color:#59abe3;border-color:#59abe3}.widgets{background-color:#f6f6f6}.widgets-inner{width:100%;max-width:72rem;margin:auto;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}@media only screen and (min-width:624px){.widgets-inner{padding:0 .5rem;text-align:center}}.widgets__item{width:100%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box;margin:1rem 0;padding:0 1rem}@media only screen and (min-width:624px){.widgets__item{width:33.33%;padding:0 .5rem;display:inline-block;float:none;vertical-align:top;text-align:left}}.widgets__item ul{padding:0;list-style:none}.widgets__item ul ul{padding-left:1rem}.widgets__item ul ul li:before{float:left;padding-right:3.5px;padding-right:.25rem;content:"-"}.widgets__item li{overflow:hidden;width:100%}.widgets__item a{color:#666}.widgets__item a:hover{color:#59abe3}.widgets__item__heading{margin-top:0}.archive-list-link,.category-list-link,.tag-list-link{float:left}.archive-list-count,.category-list-count,.tag-list-count{font-size:.75em;padding-left:.5em;float:left}.archive-list-count:before,.category-list-count:before,.tag-list-count:before{content:"("}.archive-list-count:after,.category-list-count:after,.tag-list-count:after{content:")"}.copyright{background-color:#ededed;text-align:center;padding:2rem 0 5rem;margin:0}
\ No newline at end of file
diff --git a/source/css/index.scss b/source/css/index.scss
deleted file mode 100644
index 93dcd70..0000000
--- a/source/css/index.scss
+++ /dev/null
@@ -1,10 +0,0 @@
-// Core style sheets
-@import "overdose.scss";
-@import "layout.scss";
-@import "menu.scss";
-@import "article.scss";
-@import "sharer.scss";
-@import "post-list.scss";
-@import "pagination.scss";
-@import "widgets.scss";
-@import "footer.scss";
diff --git a/source/css/layout.scss b/source/css/layout.scss
index 3de3903..e6a33ec 100644
--- a/source/css/layout.scss
+++ b/source/css/layout.scss
@@ -8,6 +8,11 @@
@include position(fixed, 0 0 0 0);
}
+.content-container{
+ display:table-row;
+ width:100%;
+}
+
.content-outer {
margin-top: $menu-height * 2;
@media #{$desktop} {
@@ -19,3 +24,9 @@
width: 100%;
padding: $base-margin 0;
}
+
+#footer{
+ display:table-row;
+ width:100%;
+ height:1px;
+}
\ No newline at end of file
diff --git a/source/css/menu.scss b/source/css/menu.scss
deleted file mode 100644
index 2b11562..0000000
--- a/source/css/menu.scss
+++ /dev/null
@@ -1,132 +0,0 @@
-@import "variables";
-
-$icon-size: 2.5rem;
-$icon-margin: ($menu-height - $icon-size) / 2;
-
-.menu {
- width: 100%;
- background-color: $white;
- border-bottom: 1px solid $lighted-gray;
- list-style: none;
- margin: 0;
- padding: 0;
- overflow: hidden;
- position: absolute;
- top: 0;
- z-index: 3;
- box-sizing: border-box;
- @include transition(transform 0.3s ease);
- @media #{$desktop} {
- position: fixed;
- }
-}
-
-.menu--hide {
- @media #{$desktop} {
- @include transform(translateY(-$menu-height));
- }
-}
-
-.menu-inner {
- width: 100%;
- max-width: $container-width;
- margin: auto;
- padding: 0 1rem;
- box-sizing: border-box;
- @media #{$mobile} {
- padding: 0;
- }
-}
-
-.menu__left-area {
- float: left;
- height: $menu-height;
- @media #{$mobile} {
- width: 100%;
- text-align: center;
- border-bottom: 1px solid $semi-white;
- .menu__item {
- float: none;
- }
- }
-}
-
-.menu__right-area {
- float: right;
- height: $menu-height;
- @media #{$mobile} {
- width: 100%;
- overflow-x: auto;
- white-space: nowrap;
- padding: 0 1.5rem;
- box-sizing: border-box;
- text-align: center;
- }
-}
-
-.menu__item {
- position: relative;
- display: inline-block;
- float: left;
- margin-right: $base-margin;
- &:last-child {
- margin-right: 0;
- }
- &:after {
- content: '';
- @include position(absolute, null 0 0 0);
- height: 2px;
- background-color: transparent;
- @include transform(translateY(2px));
- @include transition(background-color 0.3s ease, transform 0.3s ease);
- }
- &:hover {
- .menu__item__link {
- color: $gray;
- }
- &:after {
- background-color: $gray;
- @include transform(translateY(0));
- }
- }
- @media #{$mobile} {
- float: none;
- }
-}
-
-.menu__item--active .menu__item__link {
- color: $primary-sky;
-}
-
-.menu__item--active:after {
- background-color: $primary-sky;
- @include transform(translateY(0));
-}
-
-.menu__item__link {
- color: $darked-gray;
- font-size: 1rem;
- display: inline-block;
- height: $menu-height;
- line-height: $menu-height;
-}
-
-.menu__item__link--brand {
- color: $black;
-}
-
-.menu__item__link--brand__image {
- width: $icon-size;
- height: $icon-size;
- margin: $icon-margin 1rem $icon-margin 0;
- display: inline-block;
- float: left;
-}
-
-.menu__item__link--brand__label {
- height: $menu-height;
- line-height: $menu-height;
- display: inline-block;
- float: left;
- font-weight: $bold-font;
-}
diff --git a/source/css/overdose.scss b/source/css/overdose.scss
deleted file mode 100644
index e9badd9..0000000
--- a/source/css/overdose.scss
+++ /dev/null
@@ -1,36 +0,0 @@
-@import "bourbon";
-@import "variables";
-
-// Global common styles
-html {
- font-size: 14px;
- @media #{$desktop} {
- font-size: $em-base;
- }
-}
-
-body {
- margin: 0;
- color: $black;
- line-height: 1.5em;
- -webkit-font-smoothing: antialiased;
-}
-
-a {
- text-decoration: none;
- color: $primary-sky;
- @include transition(color 0.3s ease);
- &:hover {
- color: $darked-sky;
- }
-}
-
-hr {
- margin: $base-margin 0;
- border: 0;
- border-bottom: 1px solid $lighted-gray;
-}
-
-h1, h2, h3, h4, h5, h6 {
- font-weight: $bold-font;
-}
diff --git a/source/css/pagination.scss b/source/css/pagination.scss
deleted file mode 100644
index 2262cd9..0000000
--- a/source/css/pagination.scss
+++ /dev/null
@@ -1,33 +0,0 @@
-@import "variables";
-
-.pagination {
- width: 100%;
- text-align: center;
- padding: 1rem 0;
- .current, a {
- display: inline-block;
- height: 1.5rem;
- line-height: 1.5rem;
- padding: 0 0.25rem;
- margin: 0 0.25rem;
- border-bottom: 2px solid;
- }
-
- .current {
- color: $black;
- }
-
- .space {
- color: $gray;
- }
-
- a {
- color: $gray;
- border-color: transparent;
- @include transition(border-color 0.3s ease, color 0.3s ease);
- &:hover {
- color: $primary-sky;
- border-color: $primary-sky;
- }
- }
-}
diff --git a/source/css/sharer.scss b/source/css/sharer.scss
deleted file mode 100644
index f2f4dd4..0000000
--- a/source/css/sharer.scss
+++ /dev/null
@@ -1,60 +0,0 @@
-@import "bourbon";
-@import "variables";
-
-$sharer-height: 3rem;
-
-$color-facebook: #3B5998;
-$color-twitter: #00ACED;
-$color-pinterest: #B5071A;
-$color-pocket: #EF4056;
-
-.sharer {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- height: $sharer-height;
- background-color: #fff;
- z-index: 2;
- border-top: 1px solid $lighted-gray;
- @include transition(transform 0.3s ease);
-}
-
-.sharer--hide {
- @include transform(translateY($sharer-height));
-}
-
-.sharer-inner {
- padding: 0 1rem;
- max-width: $content-width;
- margin: auto;
-}
-
-.sharer__right {
- float: right;
-}
-
-.sharer__item {
- background: none;
- border: 0;
- padding: 0;
- margin-left: 1.5rem;
- font-size: 1.5rem;
- line-height: $sharer-height;
- color: $gray;
- cursor: pointer;
- @include transition(color 0.3s ease);
-}
-
-#sharer-facebook:hover {
- color: $color-facebook;
-}
-#sharer-twitter:hover {
- color: $color-twitter;
-}
-#sharer-pinterest:hover {
- color: $color-pinterest;
-}
-#sharer-pocket:hover {
- color: $color-pocket;
-}
diff --git a/source/libs/font-awesome-4.6.3/fonts/FontAwesome.otf b/source/libs/font-awesome-4.6.3/fonts/FontAwesome.otf
deleted file mode 100644
index d4de13e..0000000
Binary files a/source/libs/font-awesome-4.6.3/fonts/FontAwesome.otf and /dev/null differ
diff --git a/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.eot b/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.eot
deleted file mode 100644
index c7b00d2..0000000
Binary files a/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.eot and /dev/null differ
diff --git a/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.svg b/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.svg
deleted file mode 100644
index 8b66187..0000000
--- a/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.svg
+++ /dev/null
@@ -1,685 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.woff b/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.woff
deleted file mode 100644
index 6e7483c..0000000
Binary files a/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.woff and /dev/null differ
diff --git a/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.woff2 b/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.woff2
deleted file mode 100644
index 7eb74fd..0000000
Binary files a/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.woff2 and /dev/null differ
diff --git a/source/libs/font-awesome/.npmignore b/source/libs/font-awesome/.npmignore
new file mode 100644
index 0000000..54a691f
--- /dev/null
+++ b/source/libs/font-awesome/.npmignore
@@ -0,0 +1,42 @@
+*.pyc
+*.egg-info
+*.db
+*.db.old
+*.swp
+*.db-journal
+
+.coverage
+.DS_Store
+.installed.cfg
+_gh_pages/*
+
+.idea/*
+.svn/*
+src/website/static/*
+src/website/media/*
+
+bin
+cfcache
+develop-eggs
+dist
+downloads
+eggs
+parts
+tmp
+.sass-cache
+node_modules
+
+src/website/settingslocal.py
+stunnel.log
+
+.ruby-version
+
+# don't need these in the npm package.
+src/
+_config.yml
+bower.json
+component.json
+composer.json
+CONTRIBUTING.md
+Gemfile
+Gemfile.lock
diff --git a/source/libs/font-awesome-4.6.3/HELP-US-OUT.txt b/source/libs/font-awesome/HELP-US-OUT.txt
similarity index 100%
rename from source/libs/font-awesome-4.6.3/HELP-US-OUT.txt
rename to source/libs/font-awesome/HELP-US-OUT.txt
diff --git a/source/libs/font-awesome/README.md b/source/libs/font-awesome/README.md
new file mode 100644
index 0000000..3e1c1cf
--- /dev/null
+++ b/source/libs/font-awesome/README.md
@@ -0,0 +1,106 @@
+# [Font Awesome v4.7.0](http://fontawesome.io)
+### The iconic font and CSS framework
+
+Font Awesome is a full suite of 675 pictographic icons for easy scalable vector graphics on websites,
+created and maintained by [Dave Gandy](https://twitter.com/davegandy).
+Stay up to date with the latest release and announcements on Twitter:
+[@fontawesome](http://twitter.com/fontawesome).
+
+Get started at http://fontawesome.io!
+
+## License
+- The Font Awesome font is licensed under the SIL OFL 1.1:
+ - http://scripts.sil.org/OFL
+- Font Awesome CSS, LESS, and Sass files are licensed under the MIT License:
+ - https://opensource.org/licenses/mit-license.html
+- The Font Awesome documentation is licensed under the CC BY 3.0 License:
+ - http://creativecommons.org/licenses/by/3.0/
+- Attribution is no longer required as of Font Awesome 3.0, but much appreciated:
+ - `Font Awesome by Dave Gandy - http://fontawesome.io`
+- Full details: http://fontawesome.io/license/
+
+## Changelog
+- [v4.7.0 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/10012)
+- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189)
+- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189)
+- [v4.6.2 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9117)
+- [v4.6.1 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/8962)
+- [v4.6.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.6.0+is%3Aclosed)
+- [v4.5.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.5.0+is%3Aclosed)
+- [v4.4.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.4.0+is%3Aclosed)
+- [v4.3.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.3.0+is%3Aclosed)
+- [v4.2.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=12&page=1&state=closed)
+- [v4.1.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=6&page=1&state=closed)
+- [v4.0.3 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=9&page=1&state=closed)
+- [v4.0.2 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=8&page=1&state=closed)
+- [v4.0.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=7&page=1&state=closed)
+- [v4.0.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=2&page=1&state=closed)
+- [v3.2.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=5&page=1&state=closed)
+- [v3.2.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=3&page=1&state=closed)
+- [v3.1.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=4&page=1&state=closed)
+- v3.1.0 - Added 54 icons, icon stacking styles, flipping and rotating icons, removed Sass support
+- v3.0.2 - much improved rendering and alignment in IE7
+- v3.0.1 - much improved rendering in webkit, various bug fixes
+- v3.0.0 - all icons redesigned from scratch, optimized for Bootstrap's 14px default
+
+## Contributing
+
+Please read through our [contributing guidelines](https://github.com/FortAwesome/Font-Awesome/blob/master/CONTRIBUTING.md).
+Included are directions for opening issues, coding standards, and notes on development.
+
+## Versioning
+
+Font Awesome will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered
+with the following format:
+
+`..`
+
+And constructed with the following guidelines:
+
+* Breaking backward compatibility bumps the major (and resets the minor and patch)
+* New additions, including new icons, without breaking backward compatibility bumps the minor (and resets the patch)
+* Bug fixes, changes to brand logos, and misc changes bumps the patch
+
+For more information on SemVer, please visit http://semver.org.
+
+## Author
+- Email: dave@fontawesome.io
+- Twitter: http://twitter.com/davegandy
+- GitHub: https://github.com/davegandy
+
+## Component
+To include as a [component](https://github.com/componentjs/component), just run
+
+ $ component install FortAwesome/Font-Awesome
+
+Or add
+
+ "FortAwesome/Font-Awesome": "*"
+
+to the `dependencies` in your `component.json`.
+
+## Hacking on Font Awesome
+
+**Before you can build the project**, you must first have the following installed:
+
+- [Ruby](https://www.ruby-lang.org/en/)
+- Ruby Development Headers
+ - **Ubuntu:** `sudo apt-get install ruby-dev` *(Only if you're __NOT__ using `rbenv` or `rvm`)*
+ - **Windows:** [DevKit](http://rubyinstaller.org/)
+- [Bundler](http://bundler.io/) (Run `gem install bundler` to install).
+- [Node Package Manager (AKA NPM)](https://docs.npmjs.com/getting-started/installing-node)
+- [Less](http://lesscss.org/) (Run `npm install -g less` to install).
+- [Less Plugin: Clean CSS](https://github.com/less/less-plugin-clean-css) (Run `npm install -g less-plugin-clean-css` to install).
+
+From the root of the repository, install the tools used to develop.
+
+ $ bundle install
+ $ npm install
+
+Build the project and documentation:
+
+ $ bundle exec jekyll build
+
+Or serve it on a local server on http://localhost:7998/Font-Awesome/:
+
+ $ bundle exec jekyll -w serve
diff --git a/source/libs/font-awesome/css/font-awesome.css b/source/libs/font-awesome/css/font-awesome.css
new file mode 100644
index 0000000..ee906a8
--- /dev/null
+++ b/source/libs/font-awesome/css/font-awesome.css
@@ -0,0 +1,2337 @@
+/*!
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */
+/* FONT PATH
+ * -------------------------- */
+@font-face {
+ font-family: 'FontAwesome';
+ src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
+ src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
+ font-weight: normal;
+ font-style: normal;
+}
+.fa {
+ display: inline-block;
+ font: normal normal normal 14px/1 FontAwesome;
+ font-size: inherit;
+ text-rendering: auto;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+/* makes the font 33% larger relative to the icon container */
+.fa-lg {
+ font-size: 1.33333333em;
+ line-height: 0.75em;
+ vertical-align: -15%;
+}
+.fa-2x {
+ font-size: 2em;
+}
+.fa-3x {
+ font-size: 3em;
+}
+.fa-4x {
+ font-size: 4em;
+}
+.fa-5x {
+ font-size: 5em;
+}
+.fa-fw {
+ width: 1.28571429em;
+ text-align: center;
+}
+.fa-ul {
+ padding-left: 0;
+ margin-left: 2.14285714em;
+ list-style-type: none;
+}
+.fa-ul > li {
+ position: relative;
+}
+.fa-li {
+ position: absolute;
+ left: -2.14285714em;
+ width: 2.14285714em;
+ top: 0.14285714em;
+ text-align: center;
+}
+.fa-li.fa-lg {
+ left: -1.85714286em;
+}
+.fa-border {
+ padding: .2em .25em .15em;
+ border: solid 0.08em #eeeeee;
+ border-radius: .1em;
+}
+.fa-pull-left {
+ float: left;
+}
+.fa-pull-right {
+ float: right;
+}
+.fa.fa-pull-left {
+ margin-right: .3em;
+}
+.fa.fa-pull-right {
+ margin-left: .3em;
+}
+/* Deprecated as of 4.4.0 */
+.pull-right {
+ float: right;
+}
+.pull-left {
+ float: left;
+}
+.fa.pull-left {
+ margin-right: .3em;
+}
+.fa.pull-right {
+ margin-left: .3em;
+}
+.fa-spin {
+ -webkit-animation: fa-spin 2s infinite linear;
+ animation: fa-spin 2s infinite linear;
+}
+.fa-pulse {
+ -webkit-animation: fa-spin 1s infinite steps(8);
+ animation: fa-spin 1s infinite steps(8);
+}
+@-webkit-keyframes fa-spin {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ transform: rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: rotate(359deg);
+ transform: rotate(359deg);
+ }
+}
+@keyframes fa-spin {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ transform: rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: rotate(359deg);
+ transform: rotate(359deg);
+ }
+}
+.fa-rotate-90 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+ -webkit-transform: rotate(90deg);
+ -ms-transform: rotate(90deg);
+ transform: rotate(90deg);
+}
+.fa-rotate-180 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+ -webkit-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+.fa-rotate-270 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+ -webkit-transform: rotate(270deg);
+ -ms-transform: rotate(270deg);
+ transform: rotate(270deg);
+}
+.fa-flip-horizontal {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+ -webkit-transform: scale(-1, 1);
+ -ms-transform: scale(-1, 1);
+ transform: scale(-1, 1);
+}
+.fa-flip-vertical {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+ -webkit-transform: scale(1, -1);
+ -ms-transform: scale(1, -1);
+ transform: scale(1, -1);
+}
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+ filter: none;
+}
+.fa-stack {
+ position: relative;
+ display: inline-block;
+ width: 2em;
+ height: 2em;
+ line-height: 2em;
+ vertical-align: middle;
+}
+.fa-stack-1x,
+.fa-stack-2x {
+ position: absolute;
+ left: 0;
+ width: 100%;
+ text-align: center;
+}
+.fa-stack-1x {
+ line-height: inherit;
+}
+.fa-stack-2x {
+ font-size: 2em;
+}
+.fa-inverse {
+ color: #ffffff;
+}
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+ readers do not read off random characters that represent icons */
+.fa-glass:before {
+ content: "\f000";
+}
+.fa-music:before {
+ content: "\f001";
+}
+.fa-search:before {
+ content: "\f002";
+}
+.fa-envelope-o:before {
+ content: "\f003";
+}
+.fa-heart:before {
+ content: "\f004";
+}
+.fa-star:before {
+ content: "\f005";
+}
+.fa-star-o:before {
+ content: "\f006";
+}
+.fa-user:before {
+ content: "\f007";
+}
+.fa-film:before {
+ content: "\f008";
+}
+.fa-th-large:before {
+ content: "\f009";
+}
+.fa-th:before {
+ content: "\f00a";
+}
+.fa-th-list:before {
+ content: "\f00b";
+}
+.fa-check:before {
+ content: "\f00c";
+}
+.fa-remove:before,
+.fa-close:before,
+.fa-times:before {
+ content: "\f00d";
+}
+.fa-search-plus:before {
+ content: "\f00e";
+}
+.fa-search-minus:before {
+ content: "\f010";
+}
+.fa-power-off:before {
+ content: "\f011";
+}
+.fa-signal:before {
+ content: "\f012";
+}
+.fa-gear:before,
+.fa-cog:before {
+ content: "\f013";
+}
+.fa-trash-o:before {
+ content: "\f014";
+}
+.fa-home:before {
+ content: "\f015";
+}
+.fa-file-o:before {
+ content: "\f016";
+}
+.fa-clock-o:before {
+ content: "\f017";
+}
+.fa-road:before {
+ content: "\f018";
+}
+.fa-download:before {
+ content: "\f019";
+}
+.fa-arrow-circle-o-down:before {
+ content: "\f01a";
+}
+.fa-arrow-circle-o-up:before {
+ content: "\f01b";
+}
+.fa-inbox:before {
+ content: "\f01c";
+}
+.fa-play-circle-o:before {
+ content: "\f01d";
+}
+.fa-rotate-right:before,
+.fa-repeat:before {
+ content: "\f01e";
+}
+.fa-refresh:before {
+ content: "\f021";
+}
+.fa-list-alt:before {
+ content: "\f022";
+}
+.fa-lock:before {
+ content: "\f023";
+}
+.fa-flag:before {
+ content: "\f024";
+}
+.fa-headphones:before {
+ content: "\f025";
+}
+.fa-volume-off:before {
+ content: "\f026";
+}
+.fa-volume-down:before {
+ content: "\f027";
+}
+.fa-volume-up:before {
+ content: "\f028";
+}
+.fa-qrcode:before {
+ content: "\f029";
+}
+.fa-barcode:before {
+ content: "\f02a";
+}
+.fa-tag:before {
+ content: "\f02b";
+}
+.fa-tags:before {
+ content: "\f02c";
+}
+.fa-book:before {
+ content: "\f02d";
+}
+.fa-bookmark:before {
+ content: "\f02e";
+}
+.fa-print:before {
+ content: "\f02f";
+}
+.fa-camera:before {
+ content: "\f030";
+}
+.fa-font:before {
+ content: "\f031";
+}
+.fa-bold:before {
+ content: "\f032";
+}
+.fa-italic:before {
+ content: "\f033";
+}
+.fa-text-height:before {
+ content: "\f034";
+}
+.fa-text-width:before {
+ content: "\f035";
+}
+.fa-align-left:before {
+ content: "\f036";
+}
+.fa-align-center:before {
+ content: "\f037";
+}
+.fa-align-right:before {
+ content: "\f038";
+}
+.fa-align-justify:before {
+ content: "\f039";
+}
+.fa-list:before {
+ content: "\f03a";
+}
+.fa-dedent:before,
+.fa-outdent:before {
+ content: "\f03b";
+}
+.fa-indent:before {
+ content: "\f03c";
+}
+.fa-video-camera:before {
+ content: "\f03d";
+}
+.fa-photo:before,
+.fa-image:before,
+.fa-picture-o:before {
+ content: "\f03e";
+}
+.fa-pencil:before {
+ content: "\f040";
+}
+.fa-map-marker:before {
+ content: "\f041";
+}
+.fa-adjust:before {
+ content: "\f042";
+}
+.fa-tint:before {
+ content: "\f043";
+}
+.fa-edit:before,
+.fa-pencil-square-o:before {
+ content: "\f044";
+}
+.fa-share-square-o:before {
+ content: "\f045";
+}
+.fa-check-square-o:before {
+ content: "\f046";
+}
+.fa-arrows:before {
+ content: "\f047";
+}
+.fa-step-backward:before {
+ content: "\f048";
+}
+.fa-fast-backward:before {
+ content: "\f049";
+}
+.fa-backward:before {
+ content: "\f04a";
+}
+.fa-play:before {
+ content: "\f04b";
+}
+.fa-pause:before {
+ content: "\f04c";
+}
+.fa-stop:before {
+ content: "\f04d";
+}
+.fa-forward:before {
+ content: "\f04e";
+}
+.fa-fast-forward:before {
+ content: "\f050";
+}
+.fa-step-forward:before {
+ content: "\f051";
+}
+.fa-eject:before {
+ content: "\f052";
+}
+.fa-chevron-left:before {
+ content: "\f053";
+}
+.fa-chevron-right:before {
+ content: "\f054";
+}
+.fa-plus-circle:before {
+ content: "\f055";
+}
+.fa-minus-circle:before {
+ content: "\f056";
+}
+.fa-times-circle:before {
+ content: "\f057";
+}
+.fa-check-circle:before {
+ content: "\f058";
+}
+.fa-question-circle:before {
+ content: "\f059";
+}
+.fa-info-circle:before {
+ content: "\f05a";
+}
+.fa-crosshairs:before {
+ content: "\f05b";
+}
+.fa-times-circle-o:before {
+ content: "\f05c";
+}
+.fa-check-circle-o:before {
+ content: "\f05d";
+}
+.fa-ban:before {
+ content: "\f05e";
+}
+.fa-arrow-left:before {
+ content: "\f060";
+}
+.fa-arrow-right:before {
+ content: "\f061";
+}
+.fa-arrow-up:before {
+ content: "\f062";
+}
+.fa-arrow-down:before {
+ content: "\f063";
+}
+.fa-mail-forward:before,
+.fa-share:before {
+ content: "\f064";
+}
+.fa-expand:before {
+ content: "\f065";
+}
+.fa-compress:before {
+ content: "\f066";
+}
+.fa-plus:before {
+ content: "\f067";
+}
+.fa-minus:before {
+ content: "\f068";
+}
+.fa-asterisk:before {
+ content: "\f069";
+}
+.fa-exclamation-circle:before {
+ content: "\f06a";
+}
+.fa-gift:before {
+ content: "\f06b";
+}
+.fa-leaf:before {
+ content: "\f06c";
+}
+.fa-fire:before {
+ content: "\f06d";
+}
+.fa-eye:before {
+ content: "\f06e";
+}
+.fa-eye-slash:before {
+ content: "\f070";
+}
+.fa-warning:before,
+.fa-exclamation-triangle:before {
+ content: "\f071";
+}
+.fa-plane:before {
+ content: "\f072";
+}
+.fa-calendar:before {
+ content: "\f073";
+}
+.fa-random:before {
+ content: "\f074";
+}
+.fa-comment:before {
+ content: "\f075";
+}
+.fa-magnet:before {
+ content: "\f076";
+}
+.fa-chevron-up:before {
+ content: "\f077";
+}
+.fa-chevron-down:before {
+ content: "\f078";
+}
+.fa-retweet:before {
+ content: "\f079";
+}
+.fa-shopping-cart:before {
+ content: "\f07a";
+}
+.fa-folder:before {
+ content: "\f07b";
+}
+.fa-folder-open:before {
+ content: "\f07c";
+}
+.fa-arrows-v:before {
+ content: "\f07d";
+}
+.fa-arrows-h:before {
+ content: "\f07e";
+}
+.fa-bar-chart-o:before,
+.fa-bar-chart:before {
+ content: "\f080";
+}
+.fa-twitter-square:before {
+ content: "\f081";
+}
+.fa-facebook-square:before {
+ content: "\f082";
+}
+.fa-camera-retro:before {
+ content: "\f083";
+}
+.fa-key:before {
+ content: "\f084";
+}
+.fa-gears:before,
+.fa-cogs:before {
+ content: "\f085";
+}
+.fa-comments:before {
+ content: "\f086";
+}
+.fa-thumbs-o-up:before {
+ content: "\f087";
+}
+.fa-thumbs-o-down:before {
+ content: "\f088";
+}
+.fa-star-half:before {
+ content: "\f089";
+}
+.fa-heart-o:before {
+ content: "\f08a";
+}
+.fa-sign-out:before {
+ content: "\f08b";
+}
+.fa-linkedin-square:before {
+ content: "\f08c";
+}
+.fa-thumb-tack:before {
+ content: "\f08d";
+}
+.fa-external-link:before {
+ content: "\f08e";
+}
+.fa-sign-in:before {
+ content: "\f090";
+}
+.fa-trophy:before {
+ content: "\f091";
+}
+.fa-github-square:before {
+ content: "\f092";
+}
+.fa-upload:before {
+ content: "\f093";
+}
+.fa-lemon-o:before {
+ content: "\f094";
+}
+.fa-phone:before {
+ content: "\f095";
+}
+.fa-square-o:before {
+ content: "\f096";
+}
+.fa-bookmark-o:before {
+ content: "\f097";
+}
+.fa-phone-square:before {
+ content: "\f098";
+}
+.fa-twitter:before {
+ content: "\f099";
+}
+.fa-facebook-f:before,
+.fa-facebook:before {
+ content: "\f09a";
+}
+.fa-github:before {
+ content: "\f09b";
+}
+.fa-unlock:before {
+ content: "\f09c";
+}
+.fa-credit-card:before {
+ content: "\f09d";
+}
+.fa-feed:before,
+.fa-rss:before {
+ content: "\f09e";
+}
+.fa-hdd-o:before {
+ content: "\f0a0";
+}
+.fa-bullhorn:before {
+ content: "\f0a1";
+}
+.fa-bell:before {
+ content: "\f0f3";
+}
+.fa-certificate:before {
+ content: "\f0a3";
+}
+.fa-hand-o-right:before {
+ content: "\f0a4";
+}
+.fa-hand-o-left:before {
+ content: "\f0a5";
+}
+.fa-hand-o-up:before {
+ content: "\f0a6";
+}
+.fa-hand-o-down:before {
+ content: "\f0a7";
+}
+.fa-arrow-circle-left:before {
+ content: "\f0a8";
+}
+.fa-arrow-circle-right:before {
+ content: "\f0a9";
+}
+.fa-arrow-circle-up:before {
+ content: "\f0aa";
+}
+.fa-arrow-circle-down:before {
+ content: "\f0ab";
+}
+.fa-globe:before {
+ content: "\f0ac";
+}
+.fa-wrench:before {
+ content: "\f0ad";
+}
+.fa-tasks:before {
+ content: "\f0ae";
+}
+.fa-filter:before {
+ content: "\f0b0";
+}
+.fa-briefcase:before {
+ content: "\f0b1";
+}
+.fa-arrows-alt:before {
+ content: "\f0b2";
+}
+.fa-group:before,
+.fa-users:before {
+ content: "\f0c0";
+}
+.fa-chain:before,
+.fa-link:before {
+ content: "\f0c1";
+}
+.fa-cloud:before {
+ content: "\f0c2";
+}
+.fa-flask:before {
+ content: "\f0c3";
+}
+.fa-cut:before,
+.fa-scissors:before {
+ content: "\f0c4";
+}
+.fa-copy:before,
+.fa-files-o:before {
+ content: "\f0c5";
+}
+.fa-paperclip:before {
+ content: "\f0c6";
+}
+.fa-save:before,
+.fa-floppy-o:before {
+ content: "\f0c7";
+}
+.fa-square:before {
+ content: "\f0c8";
+}
+.fa-navicon:before,
+.fa-reorder:before,
+.fa-bars:before {
+ content: "\f0c9";
+}
+.fa-list-ul:before {
+ content: "\f0ca";
+}
+.fa-list-ol:before {
+ content: "\f0cb";
+}
+.fa-strikethrough:before {
+ content: "\f0cc";
+}
+.fa-underline:before {
+ content: "\f0cd";
+}
+.fa-table:before {
+ content: "\f0ce";
+}
+.fa-magic:before {
+ content: "\f0d0";
+}
+.fa-truck:before {
+ content: "\f0d1";
+}
+.fa-pinterest:before {
+ content: "\f0d2";
+}
+.fa-pinterest-square:before {
+ content: "\f0d3";
+}
+.fa-google-plus-square:before {
+ content: "\f0d4";
+}
+.fa-google-plus:before {
+ content: "\f0d5";
+}
+.fa-money:before {
+ content: "\f0d6";
+}
+.fa-caret-down:before {
+ content: "\f0d7";
+}
+.fa-caret-up:before {
+ content: "\f0d8";
+}
+.fa-caret-left:before {
+ content: "\f0d9";
+}
+.fa-caret-right:before {
+ content: "\f0da";
+}
+.fa-columns:before {
+ content: "\f0db";
+}
+.fa-unsorted:before,
+.fa-sort:before {
+ content: "\f0dc";
+}
+.fa-sort-down:before,
+.fa-sort-desc:before {
+ content: "\f0dd";
+}
+.fa-sort-up:before,
+.fa-sort-asc:before {
+ content: "\f0de";
+}
+.fa-envelope:before {
+ content: "\f0e0";
+}
+.fa-linkedin:before {
+ content: "\f0e1";
+}
+.fa-rotate-left:before,
+.fa-undo:before {
+ content: "\f0e2";
+}
+.fa-legal:before,
+.fa-gavel:before {
+ content: "\f0e3";
+}
+.fa-dashboard:before,
+.fa-tachometer:before {
+ content: "\f0e4";
+}
+.fa-comment-o:before {
+ content: "\f0e5";
+}
+.fa-comments-o:before {
+ content: "\f0e6";
+}
+.fa-flash:before,
+.fa-bolt:before {
+ content: "\f0e7";
+}
+.fa-sitemap:before {
+ content: "\f0e8";
+}
+.fa-umbrella:before {
+ content: "\f0e9";
+}
+.fa-paste:before,
+.fa-clipboard:before {
+ content: "\f0ea";
+}
+.fa-lightbulb-o:before {
+ content: "\f0eb";
+}
+.fa-exchange:before {
+ content: "\f0ec";
+}
+.fa-cloud-download:before {
+ content: "\f0ed";
+}
+.fa-cloud-upload:before {
+ content: "\f0ee";
+}
+.fa-user-md:before {
+ content: "\f0f0";
+}
+.fa-stethoscope:before {
+ content: "\f0f1";
+}
+.fa-suitcase:before {
+ content: "\f0f2";
+}
+.fa-bell-o:before {
+ content: "\f0a2";
+}
+.fa-coffee:before {
+ content: "\f0f4";
+}
+.fa-cutlery:before {
+ content: "\f0f5";
+}
+.fa-file-text-o:before {
+ content: "\f0f6";
+}
+.fa-building-o:before {
+ content: "\f0f7";
+}
+.fa-hospital-o:before {
+ content: "\f0f8";
+}
+.fa-ambulance:before {
+ content: "\f0f9";
+}
+.fa-medkit:before {
+ content: "\f0fa";
+}
+.fa-fighter-jet:before {
+ content: "\f0fb";
+}
+.fa-beer:before {
+ content: "\f0fc";
+}
+.fa-h-square:before {
+ content: "\f0fd";
+}
+.fa-plus-square:before {
+ content: "\f0fe";
+}
+.fa-angle-double-left:before {
+ content: "\f100";
+}
+.fa-angle-double-right:before {
+ content: "\f101";
+}
+.fa-angle-double-up:before {
+ content: "\f102";
+}
+.fa-angle-double-down:before {
+ content: "\f103";
+}
+.fa-angle-left:before {
+ content: "\f104";
+}
+.fa-angle-right:before {
+ content: "\f105";
+}
+.fa-angle-up:before {
+ content: "\f106";
+}
+.fa-angle-down:before {
+ content: "\f107";
+}
+.fa-desktop:before {
+ content: "\f108";
+}
+.fa-laptop:before {
+ content: "\f109";
+}
+.fa-tablet:before {
+ content: "\f10a";
+}
+.fa-mobile-phone:before,
+.fa-mobile:before {
+ content: "\f10b";
+}
+.fa-circle-o:before {
+ content: "\f10c";
+}
+.fa-quote-left:before {
+ content: "\f10d";
+}
+.fa-quote-right:before {
+ content: "\f10e";
+}
+.fa-spinner:before {
+ content: "\f110";
+}
+.fa-circle:before {
+ content: "\f111";
+}
+.fa-mail-reply:before,
+.fa-reply:before {
+ content: "\f112";
+}
+.fa-github-alt:before {
+ content: "\f113";
+}
+.fa-folder-o:before {
+ content: "\f114";
+}
+.fa-folder-open-o:before {
+ content: "\f115";
+}
+.fa-smile-o:before {
+ content: "\f118";
+}
+.fa-frown-o:before {
+ content: "\f119";
+}
+.fa-meh-o:before {
+ content: "\f11a";
+}
+.fa-gamepad:before {
+ content: "\f11b";
+}
+.fa-keyboard-o:before {
+ content: "\f11c";
+}
+.fa-flag-o:before {
+ content: "\f11d";
+}
+.fa-flag-checkered:before {
+ content: "\f11e";
+}
+.fa-terminal:before {
+ content: "\f120";
+}
+.fa-code:before {
+ content: "\f121";
+}
+.fa-mail-reply-all:before,
+.fa-reply-all:before {
+ content: "\f122";
+}
+.fa-star-half-empty:before,
+.fa-star-half-full:before,
+.fa-star-half-o:before {
+ content: "\f123";
+}
+.fa-location-arrow:before {
+ content: "\f124";
+}
+.fa-crop:before {
+ content: "\f125";
+}
+.fa-code-fork:before {
+ content: "\f126";
+}
+.fa-unlink:before,
+.fa-chain-broken:before {
+ content: "\f127";
+}
+.fa-question:before {
+ content: "\f128";
+}
+.fa-info:before {
+ content: "\f129";
+}
+.fa-exclamation:before {
+ content: "\f12a";
+}
+.fa-superscript:before {
+ content: "\f12b";
+}
+.fa-subscript:before {
+ content: "\f12c";
+}
+.fa-eraser:before {
+ content: "\f12d";
+}
+.fa-puzzle-piece:before {
+ content: "\f12e";
+}
+.fa-microphone:before {
+ content: "\f130";
+}
+.fa-microphone-slash:before {
+ content: "\f131";
+}
+.fa-shield:before {
+ content: "\f132";
+}
+.fa-calendar-o:before {
+ content: "\f133";
+}
+.fa-fire-extinguisher:before {
+ content: "\f134";
+}
+.fa-rocket:before {
+ content: "\f135";
+}
+.fa-maxcdn:before {
+ content: "\f136";
+}
+.fa-chevron-circle-left:before {
+ content: "\f137";
+}
+.fa-chevron-circle-right:before {
+ content: "\f138";
+}
+.fa-chevron-circle-up:before {
+ content: "\f139";
+}
+.fa-chevron-circle-down:before {
+ content: "\f13a";
+}
+.fa-html5:before {
+ content: "\f13b";
+}
+.fa-css3:before {
+ content: "\f13c";
+}
+.fa-anchor:before {
+ content: "\f13d";
+}
+.fa-unlock-alt:before {
+ content: "\f13e";
+}
+.fa-bullseye:before {
+ content: "\f140";
+}
+.fa-ellipsis-h:before {
+ content: "\f141";
+}
+.fa-ellipsis-v:before {
+ content: "\f142";
+}
+.fa-rss-square:before {
+ content: "\f143";
+}
+.fa-play-circle:before {
+ content: "\f144";
+}
+.fa-ticket:before {
+ content: "\f145";
+}
+.fa-minus-square:before {
+ content: "\f146";
+}
+.fa-minus-square-o:before {
+ content: "\f147";
+}
+.fa-level-up:before {
+ content: "\f148";
+}
+.fa-level-down:before {
+ content: "\f149";
+}
+.fa-check-square:before {
+ content: "\f14a";
+}
+.fa-pencil-square:before {
+ content: "\f14b";
+}
+.fa-external-link-square:before {
+ content: "\f14c";
+}
+.fa-share-square:before {
+ content: "\f14d";
+}
+.fa-compass:before {
+ content: "\f14e";
+}
+.fa-toggle-down:before,
+.fa-caret-square-o-down:before {
+ content: "\f150";
+}
+.fa-toggle-up:before,
+.fa-caret-square-o-up:before {
+ content: "\f151";
+}
+.fa-toggle-right:before,
+.fa-caret-square-o-right:before {
+ content: "\f152";
+}
+.fa-euro:before,
+.fa-eur:before {
+ content: "\f153";
+}
+.fa-gbp:before {
+ content: "\f154";
+}
+.fa-dollar:before,
+.fa-usd:before {
+ content: "\f155";
+}
+.fa-rupee:before,
+.fa-inr:before {
+ content: "\f156";
+}
+.fa-cny:before,
+.fa-rmb:before,
+.fa-yen:before,
+.fa-jpy:before {
+ content: "\f157";
+}
+.fa-ruble:before,
+.fa-rouble:before,
+.fa-rub:before {
+ content: "\f158";
+}
+.fa-won:before,
+.fa-krw:before {
+ content: "\f159";
+}
+.fa-bitcoin:before,
+.fa-btc:before {
+ content: "\f15a";
+}
+.fa-file:before {
+ content: "\f15b";
+}
+.fa-file-text:before {
+ content: "\f15c";
+}
+.fa-sort-alpha-asc:before {
+ content: "\f15d";
+}
+.fa-sort-alpha-desc:before {
+ content: "\f15e";
+}
+.fa-sort-amount-asc:before {
+ content: "\f160";
+}
+.fa-sort-amount-desc:before {
+ content: "\f161";
+}
+.fa-sort-numeric-asc:before {
+ content: "\f162";
+}
+.fa-sort-numeric-desc:before {
+ content: "\f163";
+}
+.fa-thumbs-up:before {
+ content: "\f164";
+}
+.fa-thumbs-down:before {
+ content: "\f165";
+}
+.fa-youtube-square:before {
+ content: "\f166";
+}
+.fa-youtube:before {
+ content: "\f167";
+}
+.fa-xing:before {
+ content: "\f168";
+}
+.fa-xing-square:before {
+ content: "\f169";
+}
+.fa-youtube-play:before {
+ content: "\f16a";
+}
+.fa-dropbox:before {
+ content: "\f16b";
+}
+.fa-stack-overflow:before {
+ content: "\f16c";
+}
+.fa-instagram:before {
+ content: "\f16d";
+}
+.fa-flickr:before {
+ content: "\f16e";
+}
+.fa-adn:before {
+ content: "\f170";
+}
+.fa-bitbucket:before {
+ content: "\f171";
+}
+.fa-bitbucket-square:before {
+ content: "\f172";
+}
+.fa-tumblr:before {
+ content: "\f173";
+}
+.fa-tumblr-square:before {
+ content: "\f174";
+}
+.fa-long-arrow-down:before {
+ content: "\f175";
+}
+.fa-long-arrow-up:before {
+ content: "\f176";
+}
+.fa-long-arrow-left:before {
+ content: "\f177";
+}
+.fa-long-arrow-right:before {
+ content: "\f178";
+}
+.fa-apple:before {
+ content: "\f179";
+}
+.fa-windows:before {
+ content: "\f17a";
+}
+.fa-android:before {
+ content: "\f17b";
+}
+.fa-linux:before {
+ content: "\f17c";
+}
+.fa-dribbble:before {
+ content: "\f17d";
+}
+.fa-skype:before {
+ content: "\f17e";
+}
+.fa-foursquare:before {
+ content: "\f180";
+}
+.fa-trello:before {
+ content: "\f181";
+}
+.fa-female:before {
+ content: "\f182";
+}
+.fa-male:before {
+ content: "\f183";
+}
+.fa-gittip:before,
+.fa-gratipay:before {
+ content: "\f184";
+}
+.fa-sun-o:before {
+ content: "\f185";
+}
+.fa-moon-o:before {
+ content: "\f186";
+}
+.fa-archive:before {
+ content: "\f187";
+}
+.fa-bug:before {
+ content: "\f188";
+}
+.fa-vk:before {
+ content: "\f189";
+}
+.fa-weibo:before {
+ content: "\f18a";
+}
+.fa-renren:before {
+ content: "\f18b";
+}
+.fa-pagelines:before {
+ content: "\f18c";
+}
+.fa-stack-exchange:before {
+ content: "\f18d";
+}
+.fa-arrow-circle-o-right:before {
+ content: "\f18e";
+}
+.fa-arrow-circle-o-left:before {
+ content: "\f190";
+}
+.fa-toggle-left:before,
+.fa-caret-square-o-left:before {
+ content: "\f191";
+}
+.fa-dot-circle-o:before {
+ content: "\f192";
+}
+.fa-wheelchair:before {
+ content: "\f193";
+}
+.fa-vimeo-square:before {
+ content: "\f194";
+}
+.fa-turkish-lira:before,
+.fa-try:before {
+ content: "\f195";
+}
+.fa-plus-square-o:before {
+ content: "\f196";
+}
+.fa-space-shuttle:before {
+ content: "\f197";
+}
+.fa-slack:before {
+ content: "\f198";
+}
+.fa-envelope-square:before {
+ content: "\f199";
+}
+.fa-wordpress:before {
+ content: "\f19a";
+}
+.fa-openid:before {
+ content: "\f19b";
+}
+.fa-institution:before,
+.fa-bank:before,
+.fa-university:before {
+ content: "\f19c";
+}
+.fa-mortar-board:before,
+.fa-graduation-cap:before {
+ content: "\f19d";
+}
+.fa-yahoo:before {
+ content: "\f19e";
+}
+.fa-google:before {
+ content: "\f1a0";
+}
+.fa-reddit:before {
+ content: "\f1a1";
+}
+.fa-reddit-square:before {
+ content: "\f1a2";
+}
+.fa-stumbleupon-circle:before {
+ content: "\f1a3";
+}
+.fa-stumbleupon:before {
+ content: "\f1a4";
+}
+.fa-delicious:before {
+ content: "\f1a5";
+}
+.fa-digg:before {
+ content: "\f1a6";
+}
+.fa-pied-piper-pp:before {
+ content: "\f1a7";
+}
+.fa-pied-piper-alt:before {
+ content: "\f1a8";
+}
+.fa-drupal:before {
+ content: "\f1a9";
+}
+.fa-joomla:before {
+ content: "\f1aa";
+}
+.fa-language:before {
+ content: "\f1ab";
+}
+.fa-fax:before {
+ content: "\f1ac";
+}
+.fa-building:before {
+ content: "\f1ad";
+}
+.fa-child:before {
+ content: "\f1ae";
+}
+.fa-paw:before {
+ content: "\f1b0";
+}
+.fa-spoon:before {
+ content: "\f1b1";
+}
+.fa-cube:before {
+ content: "\f1b2";
+}
+.fa-cubes:before {
+ content: "\f1b3";
+}
+.fa-behance:before {
+ content: "\f1b4";
+}
+.fa-behance-square:before {
+ content: "\f1b5";
+}
+.fa-steam:before {
+ content: "\f1b6";
+}
+.fa-steam-square:before {
+ content: "\f1b7";
+}
+.fa-recycle:before {
+ content: "\f1b8";
+}
+.fa-automobile:before,
+.fa-car:before {
+ content: "\f1b9";
+}
+.fa-cab:before,
+.fa-taxi:before {
+ content: "\f1ba";
+}
+.fa-tree:before {
+ content: "\f1bb";
+}
+.fa-spotify:before {
+ content: "\f1bc";
+}
+.fa-deviantart:before {
+ content: "\f1bd";
+}
+.fa-soundcloud:before {
+ content: "\f1be";
+}
+.fa-database:before {
+ content: "\f1c0";
+}
+.fa-file-pdf-o:before {
+ content: "\f1c1";
+}
+.fa-file-word-o:before {
+ content: "\f1c2";
+}
+.fa-file-excel-o:before {
+ content: "\f1c3";
+}
+.fa-file-powerpoint-o:before {
+ content: "\f1c4";
+}
+.fa-file-photo-o:before,
+.fa-file-picture-o:before,
+.fa-file-image-o:before {
+ content: "\f1c5";
+}
+.fa-file-zip-o:before,
+.fa-file-archive-o:before {
+ content: "\f1c6";
+}
+.fa-file-sound-o:before,
+.fa-file-audio-o:before {
+ content: "\f1c7";
+}
+.fa-file-movie-o:before,
+.fa-file-video-o:before {
+ content: "\f1c8";
+}
+.fa-file-code-o:before {
+ content: "\f1c9";
+}
+.fa-vine:before {
+ content: "\f1ca";
+}
+.fa-codepen:before {
+ content: "\f1cb";
+}
+.fa-jsfiddle:before {
+ content: "\f1cc";
+}
+.fa-life-bouy:before,
+.fa-life-buoy:before,
+.fa-life-saver:before,
+.fa-support:before,
+.fa-life-ring:before {
+ content: "\f1cd";
+}
+.fa-circle-o-notch:before {
+ content: "\f1ce";
+}
+.fa-ra:before,
+.fa-resistance:before,
+.fa-rebel:before {
+ content: "\f1d0";
+}
+.fa-ge:before,
+.fa-empire:before {
+ content: "\f1d1";
+}
+.fa-git-square:before {
+ content: "\f1d2";
+}
+.fa-git:before {
+ content: "\f1d3";
+}
+.fa-y-combinator-square:before,
+.fa-yc-square:before,
+.fa-hacker-news:before {
+ content: "\f1d4";
+}
+.fa-tencent-weibo:before {
+ content: "\f1d5";
+}
+.fa-qq:before {
+ content: "\f1d6";
+}
+.fa-wechat:before,
+.fa-weixin:before {
+ content: "\f1d7";
+}
+.fa-send:before,
+.fa-paper-plane:before {
+ content: "\f1d8";
+}
+.fa-send-o:before,
+.fa-paper-plane-o:before {
+ content: "\f1d9";
+}
+.fa-history:before {
+ content: "\f1da";
+}
+.fa-circle-thin:before {
+ content: "\f1db";
+}
+.fa-header:before {
+ content: "\f1dc";
+}
+.fa-paragraph:before {
+ content: "\f1dd";
+}
+.fa-sliders:before {
+ content: "\f1de";
+}
+.fa-share-alt:before {
+ content: "\f1e0";
+}
+.fa-share-alt-square:before {
+ content: "\f1e1";
+}
+.fa-bomb:before {
+ content: "\f1e2";
+}
+.fa-soccer-ball-o:before,
+.fa-futbol-o:before {
+ content: "\f1e3";
+}
+.fa-tty:before {
+ content: "\f1e4";
+}
+.fa-binoculars:before {
+ content: "\f1e5";
+}
+.fa-plug:before {
+ content: "\f1e6";
+}
+.fa-slideshare:before {
+ content: "\f1e7";
+}
+.fa-twitch:before {
+ content: "\f1e8";
+}
+.fa-yelp:before {
+ content: "\f1e9";
+}
+.fa-newspaper-o:before {
+ content: "\f1ea";
+}
+.fa-wifi:before {
+ content: "\f1eb";
+}
+.fa-calculator:before {
+ content: "\f1ec";
+}
+.fa-paypal:before {
+ content: "\f1ed";
+}
+.fa-google-wallet:before {
+ content: "\f1ee";
+}
+.fa-cc-visa:before {
+ content: "\f1f0";
+}
+.fa-cc-mastercard:before {
+ content: "\f1f1";
+}
+.fa-cc-discover:before {
+ content: "\f1f2";
+}
+.fa-cc-amex:before {
+ content: "\f1f3";
+}
+.fa-cc-paypal:before {
+ content: "\f1f4";
+}
+.fa-cc-stripe:before {
+ content: "\f1f5";
+}
+.fa-bell-slash:before {
+ content: "\f1f6";
+}
+.fa-bell-slash-o:before {
+ content: "\f1f7";
+}
+.fa-trash:before {
+ content: "\f1f8";
+}
+.fa-copyright:before {
+ content: "\f1f9";
+}
+.fa-at:before {
+ content: "\f1fa";
+}
+.fa-eyedropper:before {
+ content: "\f1fb";
+}
+.fa-paint-brush:before {
+ content: "\f1fc";
+}
+.fa-birthday-cake:before {
+ content: "\f1fd";
+}
+.fa-area-chart:before {
+ content: "\f1fe";
+}
+.fa-pie-chart:before {
+ content: "\f200";
+}
+.fa-line-chart:before {
+ content: "\f201";
+}
+.fa-lastfm:before {
+ content: "\f202";
+}
+.fa-lastfm-square:before {
+ content: "\f203";
+}
+.fa-toggle-off:before {
+ content: "\f204";
+}
+.fa-toggle-on:before {
+ content: "\f205";
+}
+.fa-bicycle:before {
+ content: "\f206";
+}
+.fa-bus:before {
+ content: "\f207";
+}
+.fa-ioxhost:before {
+ content: "\f208";
+}
+.fa-angellist:before {
+ content: "\f209";
+}
+.fa-cc:before {
+ content: "\f20a";
+}
+.fa-shekel:before,
+.fa-sheqel:before,
+.fa-ils:before {
+ content: "\f20b";
+}
+.fa-meanpath:before {
+ content: "\f20c";
+}
+.fa-buysellads:before {
+ content: "\f20d";
+}
+.fa-connectdevelop:before {
+ content: "\f20e";
+}
+.fa-dashcube:before {
+ content: "\f210";
+}
+.fa-forumbee:before {
+ content: "\f211";
+}
+.fa-leanpub:before {
+ content: "\f212";
+}
+.fa-sellsy:before {
+ content: "\f213";
+}
+.fa-shirtsinbulk:before {
+ content: "\f214";
+}
+.fa-simplybuilt:before {
+ content: "\f215";
+}
+.fa-skyatlas:before {
+ content: "\f216";
+}
+.fa-cart-plus:before {
+ content: "\f217";
+}
+.fa-cart-arrow-down:before {
+ content: "\f218";
+}
+.fa-diamond:before {
+ content: "\f219";
+}
+.fa-ship:before {
+ content: "\f21a";
+}
+.fa-user-secret:before {
+ content: "\f21b";
+}
+.fa-motorcycle:before {
+ content: "\f21c";
+}
+.fa-street-view:before {
+ content: "\f21d";
+}
+.fa-heartbeat:before {
+ content: "\f21e";
+}
+.fa-venus:before {
+ content: "\f221";
+}
+.fa-mars:before {
+ content: "\f222";
+}
+.fa-mercury:before {
+ content: "\f223";
+}
+.fa-intersex:before,
+.fa-transgender:before {
+ content: "\f224";
+}
+.fa-transgender-alt:before {
+ content: "\f225";
+}
+.fa-venus-double:before {
+ content: "\f226";
+}
+.fa-mars-double:before {
+ content: "\f227";
+}
+.fa-venus-mars:before {
+ content: "\f228";
+}
+.fa-mars-stroke:before {
+ content: "\f229";
+}
+.fa-mars-stroke-v:before {
+ content: "\f22a";
+}
+.fa-mars-stroke-h:before {
+ content: "\f22b";
+}
+.fa-neuter:before {
+ content: "\f22c";
+}
+.fa-genderless:before {
+ content: "\f22d";
+}
+.fa-facebook-official:before {
+ content: "\f230";
+}
+.fa-pinterest-p:before {
+ content: "\f231";
+}
+.fa-whatsapp:before {
+ content: "\f232";
+}
+.fa-server:before {
+ content: "\f233";
+}
+.fa-user-plus:before {
+ content: "\f234";
+}
+.fa-user-times:before {
+ content: "\f235";
+}
+.fa-hotel:before,
+.fa-bed:before {
+ content: "\f236";
+}
+.fa-viacoin:before {
+ content: "\f237";
+}
+.fa-train:before {
+ content: "\f238";
+}
+.fa-subway:before {
+ content: "\f239";
+}
+.fa-medium:before {
+ content: "\f23a";
+}
+.fa-yc:before,
+.fa-y-combinator:before {
+ content: "\f23b";
+}
+.fa-optin-monster:before {
+ content: "\f23c";
+}
+.fa-opencart:before {
+ content: "\f23d";
+}
+.fa-expeditedssl:before {
+ content: "\f23e";
+}
+.fa-battery-4:before,
+.fa-battery:before,
+.fa-battery-full:before {
+ content: "\f240";
+}
+.fa-battery-3:before,
+.fa-battery-three-quarters:before {
+ content: "\f241";
+}
+.fa-battery-2:before,
+.fa-battery-half:before {
+ content: "\f242";
+}
+.fa-battery-1:before,
+.fa-battery-quarter:before {
+ content: "\f243";
+}
+.fa-battery-0:before,
+.fa-battery-empty:before {
+ content: "\f244";
+}
+.fa-mouse-pointer:before {
+ content: "\f245";
+}
+.fa-i-cursor:before {
+ content: "\f246";
+}
+.fa-object-group:before {
+ content: "\f247";
+}
+.fa-object-ungroup:before {
+ content: "\f248";
+}
+.fa-sticky-note:before {
+ content: "\f249";
+}
+.fa-sticky-note-o:before {
+ content: "\f24a";
+}
+.fa-cc-jcb:before {
+ content: "\f24b";
+}
+.fa-cc-diners-club:before {
+ content: "\f24c";
+}
+.fa-clone:before {
+ content: "\f24d";
+}
+.fa-balance-scale:before {
+ content: "\f24e";
+}
+.fa-hourglass-o:before {
+ content: "\f250";
+}
+.fa-hourglass-1:before,
+.fa-hourglass-start:before {
+ content: "\f251";
+}
+.fa-hourglass-2:before,
+.fa-hourglass-half:before {
+ content: "\f252";
+}
+.fa-hourglass-3:before,
+.fa-hourglass-end:before {
+ content: "\f253";
+}
+.fa-hourglass:before {
+ content: "\f254";
+}
+.fa-hand-grab-o:before,
+.fa-hand-rock-o:before {
+ content: "\f255";
+}
+.fa-hand-stop-o:before,
+.fa-hand-paper-o:before {
+ content: "\f256";
+}
+.fa-hand-scissors-o:before {
+ content: "\f257";
+}
+.fa-hand-lizard-o:before {
+ content: "\f258";
+}
+.fa-hand-spock-o:before {
+ content: "\f259";
+}
+.fa-hand-pointer-o:before {
+ content: "\f25a";
+}
+.fa-hand-peace-o:before {
+ content: "\f25b";
+}
+.fa-trademark:before {
+ content: "\f25c";
+}
+.fa-registered:before {
+ content: "\f25d";
+}
+.fa-creative-commons:before {
+ content: "\f25e";
+}
+.fa-gg:before {
+ content: "\f260";
+}
+.fa-gg-circle:before {
+ content: "\f261";
+}
+.fa-tripadvisor:before {
+ content: "\f262";
+}
+.fa-odnoklassniki:before {
+ content: "\f263";
+}
+.fa-odnoklassniki-square:before {
+ content: "\f264";
+}
+.fa-get-pocket:before {
+ content: "\f265";
+}
+.fa-wikipedia-w:before {
+ content: "\f266";
+}
+.fa-safari:before {
+ content: "\f267";
+}
+.fa-chrome:before {
+ content: "\f268";
+}
+.fa-firefox:before {
+ content: "\f269";
+}
+.fa-opera:before {
+ content: "\f26a";
+}
+.fa-internet-explorer:before {
+ content: "\f26b";
+}
+.fa-tv:before,
+.fa-television:before {
+ content: "\f26c";
+}
+.fa-contao:before {
+ content: "\f26d";
+}
+.fa-500px:before {
+ content: "\f26e";
+}
+.fa-amazon:before {
+ content: "\f270";
+}
+.fa-calendar-plus-o:before {
+ content: "\f271";
+}
+.fa-calendar-minus-o:before {
+ content: "\f272";
+}
+.fa-calendar-times-o:before {
+ content: "\f273";
+}
+.fa-calendar-check-o:before {
+ content: "\f274";
+}
+.fa-industry:before {
+ content: "\f275";
+}
+.fa-map-pin:before {
+ content: "\f276";
+}
+.fa-map-signs:before {
+ content: "\f277";
+}
+.fa-map-o:before {
+ content: "\f278";
+}
+.fa-map:before {
+ content: "\f279";
+}
+.fa-commenting:before {
+ content: "\f27a";
+}
+.fa-commenting-o:before {
+ content: "\f27b";
+}
+.fa-houzz:before {
+ content: "\f27c";
+}
+.fa-vimeo:before {
+ content: "\f27d";
+}
+.fa-black-tie:before {
+ content: "\f27e";
+}
+.fa-fonticons:before {
+ content: "\f280";
+}
+.fa-reddit-alien:before {
+ content: "\f281";
+}
+.fa-edge:before {
+ content: "\f282";
+}
+.fa-credit-card-alt:before {
+ content: "\f283";
+}
+.fa-codiepie:before {
+ content: "\f284";
+}
+.fa-modx:before {
+ content: "\f285";
+}
+.fa-fort-awesome:before {
+ content: "\f286";
+}
+.fa-usb:before {
+ content: "\f287";
+}
+.fa-product-hunt:before {
+ content: "\f288";
+}
+.fa-mixcloud:before {
+ content: "\f289";
+}
+.fa-scribd:before {
+ content: "\f28a";
+}
+.fa-pause-circle:before {
+ content: "\f28b";
+}
+.fa-pause-circle-o:before {
+ content: "\f28c";
+}
+.fa-stop-circle:before {
+ content: "\f28d";
+}
+.fa-stop-circle-o:before {
+ content: "\f28e";
+}
+.fa-shopping-bag:before {
+ content: "\f290";
+}
+.fa-shopping-basket:before {
+ content: "\f291";
+}
+.fa-hashtag:before {
+ content: "\f292";
+}
+.fa-bluetooth:before {
+ content: "\f293";
+}
+.fa-bluetooth-b:before {
+ content: "\f294";
+}
+.fa-percent:before {
+ content: "\f295";
+}
+.fa-gitlab:before {
+ content: "\f296";
+}
+.fa-wpbeginner:before {
+ content: "\f297";
+}
+.fa-wpforms:before {
+ content: "\f298";
+}
+.fa-envira:before {
+ content: "\f299";
+}
+.fa-universal-access:before {
+ content: "\f29a";
+}
+.fa-wheelchair-alt:before {
+ content: "\f29b";
+}
+.fa-question-circle-o:before {
+ content: "\f29c";
+}
+.fa-blind:before {
+ content: "\f29d";
+}
+.fa-audio-description:before {
+ content: "\f29e";
+}
+.fa-volume-control-phone:before {
+ content: "\f2a0";
+}
+.fa-braille:before {
+ content: "\f2a1";
+}
+.fa-assistive-listening-systems:before {
+ content: "\f2a2";
+}
+.fa-asl-interpreting:before,
+.fa-american-sign-language-interpreting:before {
+ content: "\f2a3";
+}
+.fa-deafness:before,
+.fa-hard-of-hearing:before,
+.fa-deaf:before {
+ content: "\f2a4";
+}
+.fa-glide:before {
+ content: "\f2a5";
+}
+.fa-glide-g:before {
+ content: "\f2a6";
+}
+.fa-signing:before,
+.fa-sign-language:before {
+ content: "\f2a7";
+}
+.fa-low-vision:before {
+ content: "\f2a8";
+}
+.fa-viadeo:before {
+ content: "\f2a9";
+}
+.fa-viadeo-square:before {
+ content: "\f2aa";
+}
+.fa-snapchat:before {
+ content: "\f2ab";
+}
+.fa-snapchat-ghost:before {
+ content: "\f2ac";
+}
+.fa-snapchat-square:before {
+ content: "\f2ad";
+}
+.fa-pied-piper:before {
+ content: "\f2ae";
+}
+.fa-first-order:before {
+ content: "\f2b0";
+}
+.fa-yoast:before {
+ content: "\f2b1";
+}
+.fa-themeisle:before {
+ content: "\f2b2";
+}
+.fa-google-plus-circle:before,
+.fa-google-plus-official:before {
+ content: "\f2b3";
+}
+.fa-fa:before,
+.fa-font-awesome:before {
+ content: "\f2b4";
+}
+.fa-handshake-o:before {
+ content: "\f2b5";
+}
+.fa-envelope-open:before {
+ content: "\f2b6";
+}
+.fa-envelope-open-o:before {
+ content: "\f2b7";
+}
+.fa-linode:before {
+ content: "\f2b8";
+}
+.fa-address-book:before {
+ content: "\f2b9";
+}
+.fa-address-book-o:before {
+ content: "\f2ba";
+}
+.fa-vcard:before,
+.fa-address-card:before {
+ content: "\f2bb";
+}
+.fa-vcard-o:before,
+.fa-address-card-o:before {
+ content: "\f2bc";
+}
+.fa-user-circle:before {
+ content: "\f2bd";
+}
+.fa-user-circle-o:before {
+ content: "\f2be";
+}
+.fa-user-o:before {
+ content: "\f2c0";
+}
+.fa-id-badge:before {
+ content: "\f2c1";
+}
+.fa-drivers-license:before,
+.fa-id-card:before {
+ content: "\f2c2";
+}
+.fa-drivers-license-o:before,
+.fa-id-card-o:before {
+ content: "\f2c3";
+}
+.fa-quora:before {
+ content: "\f2c4";
+}
+.fa-free-code-camp:before {
+ content: "\f2c5";
+}
+.fa-telegram:before {
+ content: "\f2c6";
+}
+.fa-thermometer-4:before,
+.fa-thermometer:before,
+.fa-thermometer-full:before {
+ content: "\f2c7";
+}
+.fa-thermometer-3:before,
+.fa-thermometer-three-quarters:before {
+ content: "\f2c8";
+}
+.fa-thermometer-2:before,
+.fa-thermometer-half:before {
+ content: "\f2c9";
+}
+.fa-thermometer-1:before,
+.fa-thermometer-quarter:before {
+ content: "\f2ca";
+}
+.fa-thermometer-0:before,
+.fa-thermometer-empty:before {
+ content: "\f2cb";
+}
+.fa-shower:before {
+ content: "\f2cc";
+}
+.fa-bathtub:before,
+.fa-s15:before,
+.fa-bath:before {
+ content: "\f2cd";
+}
+.fa-podcast:before {
+ content: "\f2ce";
+}
+.fa-window-maximize:before {
+ content: "\f2d0";
+}
+.fa-window-minimize:before {
+ content: "\f2d1";
+}
+.fa-window-restore:before {
+ content: "\f2d2";
+}
+.fa-times-rectangle:before,
+.fa-window-close:before {
+ content: "\f2d3";
+}
+.fa-times-rectangle-o:before,
+.fa-window-close-o:before {
+ content: "\f2d4";
+}
+.fa-bandcamp:before {
+ content: "\f2d5";
+}
+.fa-grav:before {
+ content: "\f2d6";
+}
+.fa-etsy:before {
+ content: "\f2d7";
+}
+.fa-imdb:before {
+ content: "\f2d8";
+}
+.fa-ravelry:before {
+ content: "\f2d9";
+}
+.fa-eercast:before {
+ content: "\f2da";
+}
+.fa-microchip:before {
+ content: "\f2db";
+}
+.fa-snowflake-o:before {
+ content: "\f2dc";
+}
+.fa-superpowers:before {
+ content: "\f2dd";
+}
+.fa-wpexplorer:before {
+ content: "\f2de";
+}
+.fa-meetup:before {
+ content: "\f2e0";
+}
+.sr-only {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ border: 0;
+}
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+ position: static;
+ width: auto;
+ height: auto;
+ margin: 0;
+ overflow: visible;
+ clip: auto;
+}
diff --git a/source/libs/font-awesome/css/font-awesome.css.map b/source/libs/font-awesome/css/font-awesome.css.map
new file mode 100644
index 0000000..60763a8
--- /dev/null
+++ b/source/libs/font-awesome/css/font-awesome.css.map
@@ -0,0 +1,7 @@
+{
+"version": 3,
+"mappings": ";;;;;;;AAGA,UAUC;EATC,WAAW,EAAE,aAAa;EAC1B,GAAG,EAAE,+CAAgE;EACrE,GAAG,EAAE,ySAAmG;EAKxG,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;ACTpB,GAAmB;EACjB,OAAO,EAAE,YAAY;EACrB,IAAI,EAAE,uCAAwD;EAC9D,SAAS,EAAE,OAAO;EAClB,cAAc,EAAE,IAAI;EACpB,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;EAClC,SAAS,EAAE,eAAe;;;ACN5B,MAAsB;EACpB,SAAS,EAAE,SAAS;EACpB,WAAW,EAAE,MAAS;EACtB,cAAc,EAAE,IAAI;;AAEtB,MAAsB;EAAE,SAAS,EAAE,GAAG;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;ACVtC,MAAsB;EACpB,KAAK,EAAE,SAAW;EAClB,UAAU,EAAE,MAAM;;ACDpB,MAAsB;EACpB,YAAY,EAAE,CAAC;EACf,WAAW,ECKU,SAAS;EDJ9B,eAAe,EAAE,IAAI;EACrB,WAAK;IAAE,QAAQ,EAAE,QAAQ;;AAE3B,MAAsB;EACpB,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,UAAa;EACnB,KAAK,ECFgB,SAAS;EDG9B,GAAG,EAAE,SAAU;EACf,UAAU,EAAE,MAAM;EAClB,YAAuB;IACrB,IAAI,EAAE,UAA0B;;AEbpC,UAA0B;EACxB,OAAO,EAAE,gBAAgB;EACzB,MAAM,EAAE,iBAA4B;EACpC,aAAa,EAAE,IAAI;;AAGrB,WAAY;EAAE,KAAK,EAAE,KAAK;;AAC1B,UAAW;EAAE,KAAK,EAAE,IAAI;;AAGtB,aAAY;EAAE,YAAY,EAAE,IAAI;AAChC,cAAa;EAAE,WAAW,EAAE,IAAI;;ACXlC,QAAwB;EACtB,iBAAiB,EAAE,0BAA0B;EACrC,SAAS,EAAE,0BAA0B;;AAG/C,SAAyB;EACvB,iBAAiB,EAAE,4BAA4B;EACvC,SAAS,EAAE,4BAA4B;;AAGjD,0BASC;EARC,EAAG;IACD,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;EAEjC,IAAK;IACH,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;AAIrC,kBASC;EARC,EAAG;IACD,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;EAEjC,IAAK;IACH,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;AC5BrC,aAA8B;ECY5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,aAAgB;EAC/B,aAAa,EAAE,aAAgB;EAC3B,SAAS,EAAE,aAAgB;;ADdrC,cAA8B;ECW5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,cAAgB;EAC/B,aAAa,EAAE,cAAgB;EAC3B,SAAS,EAAE,cAAgB;;ADbrC,cAA8B;ECU5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,cAAgB;EAC/B,aAAa,EAAE,cAAgB;EAC3B,SAAS,EAAE,cAAgB;;ADXrC,mBAAmC;ECejC,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,YAAoB;EACnC,aAAa,EAAE,YAAoB;EAC/B,SAAS,EAAE,YAAoB;;ADjBzC,iBAAmC;ECcjC,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,YAAoB;EACnC,aAAa,EAAE,YAAoB;EAC/B,SAAS,EAAE,YAAoB;;ADZzC;;;;uBAIuC;EACrC,MAAM,EAAE,IAAI;;AEfd,SAAyB;EACvB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,MAAM;;AAExB,0BAAyD;EACvD,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;;AAEpB,YAA4B;EAAE,WAAW,EAAE,OAAO;;AAClD,YAA4B;EAAE,SAAS,EAAE,GAAG;;AAC5C,WAA2B;EAAE,KAAK,ELVZ,IAAI;;;;AMN1B,gBAAgC;EAAE,OAAO,ENoQ1B,GAAO;;AMnQtB,gBAAgC;EAAE,OAAO,EN0W1B,GAAO;;AMzWtB,iBAAiC;EAAE,OAAO,ENmb1B,GAAO;;AMlbvB,qBAAqC;EAAE,OAAO,ENmL1B,GAAO;;AMlL3B,gBAAgC;EAAE,OAAO,ENkR1B,GAAO;;AMjRtB,eAA+B;EAAE,OAAO,ENke1B,GAAO;;AMjerB,iBAAiC;EAAE,OAAO,ENse1B,GAAO;;AMrevB,eAA+B;EAAE,OAAO,EN+iB1B,GAAO;;AM9iBrB,eAA+B;EAAE,OAAO,ENyN1B,GAAO;;AMxNrB,mBAAmC;EAAE,OAAO,ENggB1B,GAAO;;AM/fzB,aAA6B;EAAE,OAAO,EN8f1B,GAAO;;AM7fnB,kBAAkC;EAAE,OAAO,EN+f1B,GAAO;;AM9fxB,gBAAgC;EAAE,OAAO,ENoG1B,GAAO;;AMnGtB;;gBAEgC;EAAE,OAAO,ENkgB1B,GAAO;;AMjgBtB,sBAAsC;EAAE,OAAO,ENua1B,GAAO;;AMta5B,uBAAuC;EAAE,OAAO,ENqa1B,GAAO;;AMpa7B,oBAAoC;EAAE,OAAO,EN+X1B,GAAO;;AM9X1B,iBAAiC;EAAE,OAAO,ENsb1B,GAAO;;AMrbvB;cAC8B;EAAE,OAAO,ENwH1B,GAAO;;AMvHpB,kBAAkC;EAAE,OAAO,ENygB1B,GAAO;;AMxgBxB,eAA+B;EAAE,OAAO,ENmQ1B,GAAO;;AMlQrB,iBAAiC;EAAE,OAAO,EN6L1B,GAAO;;AM5LvB,kBAAkC;EAAE,OAAO,EN0G1B,GAAO;;AMzGxB,eAA+B;EAAE,OAAO,EN+Y1B,GAAO;;AM9YrB,mBAAmC;EAAE,OAAO,ENiJ1B,GAAO;;AMhJzB,8BAA8C;EAAE,OAAO,ENI1B,GAAO;;AMHpC,4BAA4C;EAAE,OAAO,ENM1B,GAAO;;AMLlC,gBAAgC;EAAE,OAAO,ENkQ1B,GAAO;;AMjQtB,wBAAwC;EAAE,OAAO,EN4W1B,GAAO;;AM3W9B;iBACiC;EAAE,OAAO,ENmY1B,GAAO;;AMlYvB,kBAAkC;EAAE,OAAO,EN8X1B,GAAO;;AM7XxB,mBAAmC;EAAE,OAAO,ENiS1B,GAAO;;AMhSzB,eAA+B;EAAE,OAAO,ENoS1B,GAAO;;AMnSrB,eAA+B;EAAE,OAAO,ENgM1B,GAAO;;AM/LrB,qBAAqC;EAAE,OAAO,EN+O1B,GAAO;;AM9O3B,qBAAqC;EAAE,OAAO,EN8hB1B,GAAO;;AM7hB3B,sBAAsC;EAAE,OAAO,EN4hB1B,GAAO;;AM3hB5B,oBAAoC;EAAE,OAAO,EN6hB1B,GAAO;;AM5hB1B,iBAAiC;EAAE,OAAO,EN2W1B,GAAO;;AM1WvB,kBAAkC;EAAE,OAAO,ENW1B,GAAO;;AMVxB,cAA8B;EAAE,OAAO,ENod1B,GAAO;;AMndpB,eAA+B;EAAE,OAAO,ENod1B,GAAO;;AMndrB,eAA+B;EAAE,OAAO,EN2B1B,GAAO;;AM1BrB,mBAAmC;EAAE,OAAO,EN2B1B,GAAO;;AM1BzB,gBAAgC;EAAE,OAAO,ENkW1B,GAAO;;AMjWtB,iBAAiC;EAAE,OAAO,ENwC1B,GAAO;;AMvCvB,eAA+B;EAAE,OAAO,EN8L1B,GAAO;;AM7LrB,eAA+B;EAAE,OAAO,ENmB1B,GAAO;;AMlBrB,iBAAiC;EAAE,OAAO,ENoP1B,GAAO;;AMnPvB,sBAAsC;EAAE,OAAO,ENid1B,GAAO;;AMhd5B,qBAAqC;EAAE,OAAO,ENid1B,GAAO;;AMhd3B,qBAAqC;EAAE,OAAO,EN1C1B,GAAO;;AM2C3B,uBAAuC;EAAE,OAAO,EN7C1B,GAAO;;AM8C7B,sBAAsC;EAAE,OAAO,EN3C1B,GAAO;;AM4C5B,wBAAwC;EAAE,OAAO,EN9C1B,GAAO;;AM+C9B,eAA+B;EAAE,OAAO,ENwQ1B,GAAO;;AMvQrB;kBACkC;EAAE,OAAO,ENmT1B,GAAO;;AMlTxB,iBAAiC;EAAE,OAAO,ENmO1B,GAAO;;AMlOvB,uBAAuC;EAAE,OAAO,ENigB1B,GAAO;;AMhgB7B;;oBAEoC;EAAE,OAAO,EN+T1B,GAAO;;AM9T1B,iBAAiC;EAAE,OAAO,ENwT1B,GAAO;;AMvTvB,qBAAqC;EAAE,OAAO,EN+Q1B,GAAO;;AM9Q3B,iBAAiC;EAAE,OAAO,EN5D1B,GAAO;;AM6DvB,eAA+B;EAAE,OAAO,EN8c1B,GAAO;;AM7crB;0BAC0C;EAAE,OAAO,ENqT1B,GAAO;;AMpThC,yBAAyC;EAAE,OAAO,ENuX1B,GAAO;;AMtX/B,yBAAyC;EAAE,OAAO,EN0C1B,GAAO;;AMzC/B,iBAAiC;EAAE,OAAO,ENjC1B,GAAO;;AMkCvB,wBAAwC;EAAE,OAAO,ENma1B,GAAO;;AMla9B,wBAAwC;EAAE,OAAO,EN4H1B,GAAO;;AM3H9B,mBAAmC;EAAE,OAAO,EN7B1B,GAAO;;AM8BzB,eAA+B;EAAE,OAAO,EN0T1B,GAAO;;AMzTrB,gBAAgC;EAAE,OAAO,ENwS1B,GAAO;;AMvStB,eAA+B;EAAE,OAAO,ENia1B,GAAO;;AMharB,kBAAkC;EAAE,OAAO,ENgK1B,GAAO;;AM/JxB,uBAAuC;EAAE,OAAO,ENuH1B,GAAO;;AMtH7B,uBAAuC;EAAE,OAAO,EN4Z1B,GAAO;;AM3Z7B,gBAAgC;EAAE,OAAO,EN4F1B,GAAO;;AM3FtB,uBAAuC;EAAE,OAAO,ENoC1B,GAAO;;AMnC7B,wBAAwC;EAAE,OAAO,ENoC1B,GAAO;;AMnC9B,sBAAsC;EAAE,OAAO,ENsT1B,GAAO;;AMrT5B,uBAAuC;EAAE,OAAO,ENyQ1B,GAAO;;AMxQ7B,uBAAuC;EAAE,OAAO,ENwb1B,GAAO;;AMvb7B,uBAAuC;EAAE,OAAO,ENsB1B,GAAO;;AMrB7B,0BAA0C;EAAE,OAAO,EN2T1B,GAAO;;AM1ThC,sBAAsC;EAAE,OAAO,ENsM1B,GAAO;;AMrM5B,qBAAqC;EAAE,OAAO,EN6D1B,GAAO;;AM5D3B,yBAAyC;EAAE,OAAO,ENob1B,GAAO;;AMnb/B,yBAAyC;EAAE,OAAO,ENkB1B,GAAO;;AMjB/B,cAA8B;EAAE,OAAO,EN/C1B,GAAO;;AMgDpB,qBAAqC;EAAE,OAAO,EN3D1B,GAAO;;AM4D3B,sBAAsC;EAAE,OAAO,EN3D1B,GAAO;;AM4D5B,mBAAmC;EAAE,OAAO,EN3D1B,GAAO;;AM4DzB,qBAAqC;EAAE,OAAO,EN/D1B,GAAO;;AMgE3B;gBACgC;EAAE,OAAO,ENqV1B,GAAO;;AMpVtB,iBAAiC;EAAE,OAAO,ENuF1B,GAAO;;AMtFvB,mBAAmC;EAAE,OAAO,EN4C1B,GAAO;;AM3CzB,eAA+B;EAAE,OAAO,ENmS1B,GAAO;;AMlSrB,gBAAgC;EAAE,OAAO,ENsP1B,GAAO;;AMrPtB,mBAAmC;EAAE,OAAO,EN9D1B,GAAO;;AM+DzB,6BAA6C;EAAE,OAAO,ENgF1B,GAAO;;AM/EnC,eAA+B;EAAE,OAAO,EN+I1B,GAAO;;AM9IrB,eAA+B;EAAE,OAAO,ENoM1B,GAAO;;AMnMrB,eAA+B;EAAE,OAAO,ENmH1B,GAAO;;AMlHrB,cAA8B;EAAE,OAAO,ENiF1B,GAAO;;AMhFpB,oBAAoC;EAAE,OAAO,ENiF1B,GAAO;;AMhF1B;+BAC+C;EAAE,OAAO,EN0E1B,GAAO;;AMzErC,gBAAgC;EAAE,OAAO,ENmR1B,GAAO;;AMlRtB,mBAAmC;EAAE,OAAO,EN/B1B,GAAO;;AMgCzB,iBAAiC;EAAE,OAAO,ENoS1B,GAAO;;AMnSvB,kBAAkC;EAAE,OAAO,ENwB1B,GAAO;;AMvBxB,iBAAiC;EAAE,OAAO,ENqN1B,GAAO;;AMpNvB,qBAAqC;EAAE,OAAO,ENE1B,GAAO;;AMD3B,uBAAuC;EAAE,OAAO,ENF1B,GAAO;;AMG7B,kBAAkC;EAAE,OAAO,EN2S1B,GAAO;;AM1SxB,wBAAwC;EAAE,OAAO,ENyU1B,GAAO;;AMxU9B,iBAAiC;EAAE,OAAO,EN8G1B,GAAO;;AM7GvB,sBAAsC;EAAE,OAAO,EN+G1B,GAAO;;AM9G5B,mBAAmC;EAAE,OAAO,ENnF1B,GAAO;;AMoFzB,mBAAmC;EAAE,OAAO,ENrF1B,GAAO;;AMsFzB;oBACoC;EAAE,OAAO,EN/E1B,GAAO;;AMgF1B,yBAAyC;EAAE,OAAO,ENua1B,GAAO;;AMta/B,0BAA0C;EAAE,OAAO,ENmE1B,GAAO;;AMlEhC,uBAAuC;EAAE,OAAO,EN5C1B,GAAO;;AM6C7B,cAA8B;EAAE,OAAO,ENqK1B,GAAO;;AMpKpB;eAC+B;EAAE,OAAO,ENK1B,GAAO;;AMJrB,mBAAmC;EAAE,OAAO,ENQ1B,GAAO;;AMPzB,sBAAsC;EAAE,OAAO,ENmY1B,GAAO;;AMlY5B,wBAAwC;EAAE,OAAO,ENiY1B,GAAO;;AMhY9B,oBAAoC;EAAE,OAAO,EN2V1B,GAAO;;AM1V1B,kBAAkC;EAAE,OAAO,ENyI1B,GAAO;;AMxIxB,mBAAmC;EAAE,OAAO,ENyT1B,GAAO;;AMxTzB,0BAA0C;EAAE,OAAO,ENiL1B,GAAO;;AMhLhC,qBAAqC;EAAE,OAAO,EN0X1B,GAAO;;AMzX3B,wBAAwC;EAAE,OAAO,EN8C1B,GAAO;;AM7C9B,kBAAkC;EAAE,OAAO,ENoT1B,GAAO;;AMnTxB,iBAAiC;EAAE,OAAO,EN8Y1B,GAAO;;AM7YvB,wBAAwC;EAAE,OAAO,EN6G1B,GAAO;;AM5G9B,iBAAiC;EAAE,OAAO,EN8Z1B,GAAO;;AM7ZvB,kBAAkC;EAAE,OAAO,EN+J1B,GAAO;;AM9JxB,gBAAgC;EAAE,OAAO,ENsO1B,GAAO;;AMrOtB,mBAAmC;EAAE,OAAO,EN2U1B,GAAO;;AM1UzB,qBAAqC;EAAE,OAAO,EN/E1B,GAAO;;AMgF3B,uBAAuC;EAAE,OAAO,ENoO1B,GAAO;;AMnO7B,kBAAkC;EAAE,OAAO,EN8Y1B,GAAO;;AM7YxB;mBACmC;EAAE,OAAO,ENuC1B,GAAO;;AMtCzB,iBAAiC;EAAE,OAAO,ENiG1B,GAAO;;AMhGvB,iBAAiC;EAAE,OAAO,ENiZ1B,GAAO;;AMhZvB,sBAAsC;EAAE,OAAO,ENR1B,GAAO;;AMS5B,cAA8B;EAAE,OAAO,EN4Q1B,GAAO;;AM3QpB,gBAAgC;EAAE,OAAO,ENgH1B,GAAO;;AM/GtB,mBAAmC;EAAE,OAAO,ENnF1B,GAAO;;AMoFzB,eAA+B;EAAE,OAAO,ENzG1B,GAAO;;AM0GrB,sBAAsC;EAAE,OAAO,ENzD1B,GAAO;;AM0D5B,uBAAuC;EAAE,OAAO,EN0G1B,GAAO;;AMzG7B,sBAAsC;EAAE,OAAO,ENwG1B,GAAO;;AMvG5B,oBAAoC;EAAE,OAAO,ENyG1B,GAAO;;AMxG1B,sBAAsC;EAAE,OAAO,ENqG1B,GAAO;;AMpG5B,4BAA4C;EAAE,OAAO,EN5I1B,GAAO;;AM6IlC,6BAA6C;EAAE,OAAO,ENxI1B,GAAO;;AMyInC,0BAA0C;EAAE,OAAO,ENxI1B,GAAO;;AMyIhC,4BAA4C;EAAE,OAAO,ENhJ1B,GAAO;;AMiJlC,gBAAgC;EAAE,OAAO,ENsF1B,GAAO;;AMrFtB,iBAAiC;EAAE,OAAO,ENia1B,GAAO;;AMhavB,gBAAgC;EAAE,OAAO,ENiV1B,GAAO;;AMhVtB,iBAAiC;EAAE,OAAO,ENgD1B,GAAO;;AM/CvB,oBAAoC;EAAE,OAAO,ENvG1B,GAAO;;AMwG1B,qBAAqC;EAAE,OAAO,ENzI1B,GAAO;;AM0I3B;gBACgC;EAAE,OAAO,ENqY1B,GAAO;;AMpYtB;eAC+B;EAAE,OAAO,ENuI1B,GAAO;;AMtIrB,gBAAgC;EAAE,OAAO,ENpD1B,GAAO;;AMqDtB,gBAAgC;EAAE,OAAO,EN+C1B,GAAO;;AM9CtB;mBACmC;EAAE,OAAO,ENwP1B,GAAO;;AMvPzB;kBACkC;EAAE,OAAO,ENkC1B,GAAO;;AMjCxB,oBAAoC;EAAE,OAAO,ENsL1B,GAAO;;AMrL1B;mBACmC;EAAE,OAAO,EN0C1B,GAAO;;AMzCzB,iBAAiC;EAAE,OAAO,ENiS1B,GAAO;;AMhSvB;;eAE+B;EAAE,OAAO,EN9I1B,GAAO;;AM+IrB,kBAAkC;EAAE,OAAO,ENgI1B,GAAO;;AM/HxB,kBAAkC;EAAE,OAAO,EN8H1B,GAAO;;AM7HxB,wBAAwC;EAAE,OAAO,EN4S1B,GAAO;;AM3S9B,oBAAoC;EAAE,OAAO,ENoW1B,GAAO;;AMnW1B,gBAAgC;EAAE,OAAO,ENmT1B,GAAO;;AMlTtB,gBAAgC;EAAE,OAAO,ENkI1B,GAAO;;AMjItB,gBAAgC;EAAE,OAAO,ENuV1B,GAAO;;AMtVtB,oBAAoC;EAAE,OAAO,ENwL1B,GAAO;;AMvL1B,2BAA2C;EAAE,OAAO,ENyL1B,GAAO;;AMxLjC,6BAA6C;EAAE,OAAO,ENyD1B,GAAO;;AMxDnC,sBAAsC;EAAE,OAAO,ENuD1B,GAAO;;AMtD5B,gBAAgC;EAAE,OAAO,ENsJ1B,GAAO;;AMrJtB,qBAAqC;EAAE,OAAO,ENtH1B,GAAO;;AMuH3B,mBAAmC;EAAE,OAAO,ENhH1B,GAAO;;AMiHzB,qBAAqC;EAAE,OAAO,ENvH1B,GAAO;;AMwH3B,sBAAsC;EAAE,OAAO,ENvH1B,GAAO;;AMwH5B,kBAAkC;EAAE,OAAO,ENvE1B,GAAO;;AMwExB;eAC+B;EAAE,OAAO,EN2P1B,GAAO;;AM1PrB;oBACoC;EAAE,OAAO,EN+P1B,GAAO;;AM9P1B;mBACmC;EAAE,OAAO,EN4P1B,GAAO;;AM3PzB,mBAAmC;EAAE,OAAO,ENxC1B,GAAO;;AMyCzB,mBAAmC;EAAE,OAAO,ENkG1B,GAAO;;AMjGzB;eAC+B;EAAE,OAAO,EN8U1B,GAAO;;AM7UrB;gBACgC;EAAE,OAAO,ENqB1B,GAAO;;AMpBtB;qBACqC;EAAE,OAAO,EN2R1B,GAAO;;AM1R3B,oBAAoC;EAAE,OAAO,ENpF1B,GAAO;;AMqF1B,qBAAqC;EAAE,OAAO,ENnF1B,GAAO;;AMoF3B;eAC+B;EAAE,OAAO,ENjK1B,GAAO;;AMkKrB,kBAAkC;EAAE,OAAO,ENkO1B,GAAO;;AMjOxB,mBAAmC;EAAE,OAAO,ENkU1B,GAAO;;AMjUzB;oBACoC;EAAE,OAAO,EN1G1B,GAAO;;AM2G1B,sBAAsC;EAAE,OAAO,ENgF1B,GAAO;;AM/E5B,mBAAmC;EAAE,OAAO,ENnD1B,GAAO;;AMoDzB,yBAAyC;EAAE,OAAO,ENzG1B,GAAO;;AM0G/B,uBAAuC;EAAE,OAAO,ENzG1B,GAAO;;AM0G7B,kBAAkC;EAAE,OAAO,ENsU1B,GAAO;;AMrUxB,sBAAsC;EAAE,OAAO,EN+P1B,GAAO;;AM9P5B,mBAAmC;EAAE,OAAO,ENsQ1B,GAAO;;AMrQzB,iBAAiC;EAAE,OAAO,ENvL1B,GAAO;;AMwLvB,iBAAiC;EAAE,OAAO,ENzG1B,GAAO;;AM0GvB,kBAAkC;EAAE,OAAO,ENtF1B,GAAO;;AMuFxB,sBAAsC;EAAE,OAAO,EN3B1B,GAAO;;AM4B5B,qBAAqC;EAAE,OAAO,ENxK1B,GAAO;;AMyK3B,qBAAqC;EAAE,OAAO,ENkC1B,GAAO;;AMjC3B,oBAAoC;EAAE,OAAO,EN3O1B,GAAO;;AM4O1B,iBAAiC;EAAE,OAAO,ENiG1B,GAAO;;AMhGvB,sBAAsC;EAAE,OAAO,EN/C1B,GAAO;;AMgD5B,eAA+B;EAAE,OAAO,ENpM1B,GAAO;;AMqMrB,mBAAmC;EAAE,OAAO,ENe1B,GAAO;;AMdzB,sBAAsC;EAAE,OAAO,ENgJ1B,GAAO;;AM/I5B,4BAA4C;EAAE,OAAO,EN5O1B,GAAO;;AM6OlC,6BAA6C;EAAE,OAAO,EN5O1B,GAAO;;AM6OnC,0BAA0C;EAAE,OAAO,EN5O1B,GAAO;;AM6OhC,4BAA4C;EAAE,OAAO,ENhP1B,GAAO;;AMiPlC,qBAAqC;EAAE,OAAO,EN5O1B,GAAO;;AM6O3B,sBAAsC;EAAE,OAAO,EN5O1B,GAAO;;AM6O5B,mBAAmC;EAAE,OAAO,EN5O1B,GAAO;;AM6OzB,qBAAqC;EAAE,OAAO,ENhP1B,GAAO;;AMiP3B,kBAAkC;EAAE,OAAO,ENlG1B,GAAO;;AMmGxB,iBAAiC;EAAE,OAAO,ENuC1B,GAAO;;AMtCvB,iBAAiC;EAAE,OAAO,ENoP1B,GAAO;;AMnPvB;iBACiC;EAAE,OAAO,ENyF1B,GAAO;;AMxFvB,mBAAmC;EAAE,OAAO,EN9I1B,GAAO;;AM+IzB,qBAAqC;EAAE,OAAO,EN0I1B,GAAO;;AMzI3B,sBAAsC;EAAE,OAAO,EN0I1B,GAAO;;AMzI5B,kBAAkC;EAAE,OAAO,ENgN1B,GAAO;;AM/MxB,iBAAiC;EAAE,OAAO,ENnJ1B,GAAO;;AMoJvB;gBACgC;EAAE,OAAO,ENkJ1B,GAAO;;AMjJtB,qBAAqC;EAAE,OAAO,ENnB1B,GAAO;;AMoB3B,mBAAmC;EAAE,OAAO,ENxC1B,GAAO;;AMyCzB,wBAAwC;EAAE,OAAO,ENvC1B,GAAO;;AMwC9B,kBAAkC;EAAE,OAAO,EN0L1B,GAAO;;AMzLxB,kBAAkC;EAAE,OAAO,ENpC1B,GAAO;;AMqCxB,gBAAgC;EAAE,OAAO,ENoE1B,GAAO;;AMnEtB,kBAAkC;EAAE,OAAO,ENpC1B,GAAO;;AMqCxB,qBAAqC;EAAE,OAAO,ENkB1B,GAAO;;AMjB3B,iBAAiC;EAAE,OAAO,ENrD1B,GAAO;;AMsDvB,yBAAyC;EAAE,OAAO,ENvD1B,GAAO;;AMwD/B,mBAAmC;EAAE,OAAO,ENuO1B,GAAO;;AMtOzB,eAA+B;EAAE,OAAO,ENtJ1B,GAAO;;AMuJrB;oBACoC;EAAE,OAAO,ENqI1B,GAAO;;AMpI1B;;sBAEsC;EAAE,OAAO,ENuM1B,GAAO;;AMtM5B,yBAAyC;EAAE,OAAO,ENkC1B,GAAO;;AMjC/B,eAA+B;EAAE,OAAO,EN5I1B,GAAO;;AM6IrB,oBAAoC;EAAE,OAAO,EN7J1B,GAAO;;AM8J1B;uBACuC;EAAE,OAAO,EN1L1B,GAAO;;AM2L7B,mBAAmC;EAAE,OAAO,EN4G1B,GAAO;;AM3GzB,eAA+B;EAAE,OAAO,ENT1B,GAAO;;AMUrB,sBAAsC;EAAE,OAAO,ENhH1B,GAAO;;AMiH5B,sBAAsC;EAAE,OAAO,EN8M1B,GAAO;;AM7M5B,oBAAoC;EAAE,OAAO,ENyM1B,GAAO;;AMxM1B,iBAAiC;EAAE,OAAO,ENvH1B,GAAO;;AMwHvB,uBAAuC;EAAE,OAAO,ENmG1B,GAAO;;AMlG7B,qBAAqC;EAAE,OAAO,EN8C1B,GAAO;;AM7C3B,2BAA2C;EAAE,OAAO,EN8C1B,GAAO;;AM7CjC,iBAAiC;EAAE,OAAO,ENgJ1B,GAAO;;AM/IvB,qBAAqC;EAAE,OAAO,EN5N1B,GAAO;;AM6N3B,4BAA4C;EAAE,OAAO,ENjF1B,GAAO;;AMkFlC,iBAAiC;EAAE,OAAO,ENoH1B,GAAO;;AMnHvB,iBAAiC;EAAE,OAAO,ENkC1B,GAAO;;AMjCvB,8BAA8C;EAAE,OAAO,ENlM1B,GAAO;;AMmMpC,+BAA+C;EAAE,OAAO,ENlM1B,GAAO;;AMmMrC,4BAA4C;EAAE,OAAO,ENlM1B,GAAO;;AMmMlC,8BAA8C;EAAE,OAAO,ENtM1B,GAAO;;AMuMpC,gBAAgC;EAAE,OAAO,EN/B1B,GAAO;;AMgCtB,eAA+B;EAAE,OAAO,ENjK1B,GAAO;;AMkKrB,iBAAiC;EAAE,OAAO,EN9S1B,GAAO;;AM+SvB,qBAAqC;EAAE,OAAO,ENmP1B,GAAO;;AMlP3B,mBAAmC;EAAE,OAAO,EN9O1B,GAAO;;AM+OzB,qBAAqC;EAAE,OAAO,EN/I1B,GAAO;;AMgJ3B,qBAAqC;EAAE,OAAO,EN/I1B,GAAO;;AMgJ3B,qBAAqC;EAAE,OAAO,EN4G1B,GAAO;;AM3G3B,sBAAsC;EAAE,OAAO,ENsE1B,GAAO;;AMrE5B,iBAAiC;EAAE,OAAO,EN2M1B,GAAO;;AM1MvB,uBAAuC;EAAE,OAAO,EN6B1B,GAAO;;AM5B7B,yBAAyC;EAAE,OAAO,EN6B1B,GAAO;;AM5B/B,mBAAmC;EAAE,OAAO,ENhB1B,GAAO;;AMiBzB,qBAAqC;EAAE,OAAO,ENlB1B,GAAO;;AMmB3B,uBAAuC;EAAE,OAAO,ENvN1B,GAAO;;AMwN7B,wBAAwC;EAAE,OAAO,ENiD1B,GAAO;;AMhD9B,+BAA+C;EAAE,OAAO,EN3I1B,GAAO;;AM4IrC,uBAAuC;EAAE,OAAO,ENkH1B,GAAO;;AMjH7B,kBAAkC;EAAE,OAAO,EN1L1B,GAAO;;AM2LxB;8BAC8C;EAAE,OAAO,ENjP1B,GAAO;;AMkPpC;4BAC4C;EAAE,OAAO,ENhP1B,GAAO;;AMiPlC;+BAC+C;EAAE,OAAO,ENnP1B,GAAO;;AMoPrC;cAC8B;EAAE,OAAO,EN7J1B,GAAO;;AM8JpB,cAA8B;EAAE,OAAO,EN/F1B,GAAO;;AMgGpB;cAC8B;EAAE,OAAO,EN4N1B,GAAO;;AM3NpB;cAC8B;EAAE,OAAO,ENvD1B,GAAO;;AMwDpB;;;cAG8B;EAAE,OAAO,ENrD1B,GAAO;;AMsDpB;;cAE8B;EAAE,OAAO,EN8E1B,GAAO;;AM7EpB;cAC8B;EAAE,OAAO,ENtD1B,GAAO;;AMuDpB;cAC8B;EAAE,OAAO,ENzR1B,GAAO;;AM0RpB,eAA+B;EAAE,OAAO,ENzJ1B,GAAO;;AM0JrB,oBAAoC;EAAE,OAAO,EN7I1B,GAAO;;AM8I1B,yBAAyC;EAAE,OAAO,EN2G1B,GAAO;;AM1G/B,0BAA0C;EAAE,OAAO,EN2G1B,GAAO;;AM1GhC,0BAA0C;EAAE,OAAO,EN2G1B,GAAO;;AM1GhC,2BAA2C;EAAE,OAAO,EN2G1B,GAAO;;AM1GjC,2BAA2C;EAAE,OAAO,EN8G1B,GAAO;;AM7GjC,4BAA4C;EAAE,OAAO,EN8G1B,GAAO;;AM7GlC,oBAAoC;EAAE,OAAO,ENgK1B,GAAO;;AM/J1B,sBAAsC;EAAE,OAAO,EN4J1B,GAAO;;AM3J5B,yBAAyC;EAAE,OAAO,ENwO1B,GAAO;;AMvO/B,kBAAkC;EAAE,OAAO,ENqO1B,GAAO;;AMpOxB,eAA+B;EAAE,OAAO,EN+N1B,GAAO;;AM9NrB,sBAAsC;EAAE,OAAO,EN+N1B,GAAO;;AM9N5B,uBAAuC;EAAE,OAAO,ENmO1B,GAAO;;AMlO7B,kBAAkC;EAAE,OAAO,ENxM1B,GAAO;;AMyMxB,yBAAyC;EAAE,OAAO,EN+G1B,GAAO;;AM9G/B,oBAAoC;EAAE,OAAO,ENnF1B,GAAO;;AMoF1B,iBAAiC;EAAE,OAAO,EN/I1B,GAAO;;AMgJvB,cAA8B;EAAE,OAAO,ENhX1B,GAAO;;AMiXpB,oBAAoC;EAAE,OAAO,ENxT1B,GAAO;;AMyT1B,2BAA2C;EAAE,OAAO,ENxT1B,GAAO;;AMyTjC,iBAAiC;EAAE,OAAO,ENyK1B,GAAO;;AMxKvB,wBAAwC;EAAE,OAAO,ENyK1B,GAAO;;AMxK9B,0BAA0C;EAAE,OAAO,ENtD1B,GAAO;;AMuDhC,wBAAwC;EAAE,OAAO,ENpD1B,GAAO;;AMqD9B,0BAA0C;EAAE,OAAO,ENvD1B,GAAO;;AMwDhC,2BAA2C;EAAE,OAAO,ENvD1B,GAAO;;AMwDjC,gBAAgC;EAAE,OAAO,ENxW1B,GAAO;;AMyWtB,kBAAkC;EAAE,OAAO,EN0M1B,GAAO;;AMzMxB,kBAAkC;EAAE,OAAO,ENpX1B,GAAO;;AMqXxB,gBAAgC;EAAE,OAAO,ENpE1B,GAAO;;AMqEtB,mBAAmC;EAAE,OAAO,EN1N1B,GAAO;;AM2NzB,gBAAgC;EAAE,OAAO,ENqE1B,GAAO;;AMpEtB,qBAAqC;EAAE,OAAO,ENtJ1B,GAAO;;AMuJ3B,iBAAiC;EAAE,OAAO,ENuJ1B,GAAO;;AMtJvB,iBAAiC;EAAE,OAAO,EN/L1B,GAAO;;AMgMvB,eAA+B;EAAE,OAAO,EN1D1B,GAAO;;AM2DrB;mBACmC;EAAE,OAAO,ENnI1B,GAAO;;AMoIzB,gBAAgC;EAAE,OAAO,EN2G1B,GAAO;;AM1GtB,iBAAiC;EAAE,OAAO,ENxC1B,GAAO;;AMyCvB,kBAAkC;EAAE,OAAO,ENrX1B,GAAO;;AMsXxB,cAA8B;EAAE,OAAO,ENpU1B,GAAO;;AMqUpB,aAA6B;EAAE,OAAO,ENgL1B,GAAO;;AM/KnB,gBAAgC;EAAE,OAAO,ENqL1B,GAAO;;AMpLtB,iBAAiC;EAAE,OAAO,ENa1B,GAAO;;AMZvB,oBAAoC;EAAE,OAAO,ENrC1B,GAAO;;AMsC1B,yBAAyC;EAAE,OAAO,EN8E1B,GAAO;;AM7E/B,+BAA+C;EAAE,OAAO,ENtX1B,GAAO;;AMuXrC,8BAA8C;EAAE,OAAO,ENxX1B,GAAO;;AMyXpC;8BAC8C;EAAE,OAAO,EN3T1B,GAAO;;AM4TpC,uBAAuC;EAAE,OAAO,ENjP1B,GAAO;;AMkP7B,qBAAqC;EAAE,OAAO,EN+K1B,GAAO;;AM9K3B,uBAAuC;EAAE,OAAO,ENmK1B,GAAO;;AMlK7B;cAC8B;EAAE,OAAO,ENoI1B,GAAO;;AMnIpB,wBAAwC;EAAE,OAAO,ENjB1B,GAAO;;AMkB9B,wBAAwC;EAAE,OAAO,EN6D1B,GAAO;;AM5D9B,gBAAgC;EAAE,OAAO,EN2C1B,GAAO;;AM1CtB,0BAA0C;EAAE,OAAO,EN7O1B,GAAO;;AM8OhC,oBAAoC;EAAE,OAAO,EN2K1B,GAAO;;AM1K1B,iBAAiC;EAAE,OAAO,ENvD1B,GAAO;;AMwDvB;;qBAEqC;EAAE,OAAO,ENsI1B,GAAO;;AMrI3B;yBACyC;EAAE,OAAO,ENjK1B,GAAO;;AMkK/B,gBAAgC;EAAE,OAAO,ENwK1B,GAAO;;AMvKtB,iBAAiC;EAAE,OAAO,ENvK1B,GAAO;;AMwKvB,iBAAiC;EAAE,OAAO,ENhB1B,GAAO;;AMiBvB,wBAAwC;EAAE,OAAO,ENhB1B,GAAO;;AMiB9B,6BAA6C;EAAE,OAAO,ENsE1B,GAAO;;AMrEnC,sBAAsC;EAAE,OAAO,ENoE1B,GAAO;;AMnE5B,oBAAoC;EAAE,OAAO,EN7Q1B,GAAO;;AM8Q1B,eAA+B;EAAE,OAAO,EN1Q1B,GAAO;;AM2QrB,qBAAqC;EAAE,OAAO,ENjD1B,GAAO;;AMkD3B,yBAAyC;EAAE,OAAO,ENjD1B,GAAO;;AMkD/B,iBAAiC;EAAE,OAAO,ENvQ1B,GAAO;;AMwQvB,iBAAiC;EAAE,OAAO,EN9I1B,GAAO;;AM+IvB,mBAAmC;EAAE,OAAO,ENzI1B,GAAO;;AM0IzB,cAA8B;EAAE,OAAO,EN9O1B,GAAO;;AM+OpB,mBAAmC;EAAE,OAAO,EN3W1B,GAAO;;AM4WzB,gBAAgC;EAAE,OAAO,EN9T1B,GAAO;;AM+TtB,cAA8B;EAAE,OAAO,ENnE1B,GAAO;;AMoEpB,gBAAgC;EAAE,OAAO,ENoC1B,GAAO;;AMnCtB,eAA+B;EAAE,OAAO,ENjS1B,GAAO;;AMkSrB,gBAAgC;EAAE,OAAO,ENjS1B,GAAO;;AMkStB,kBAAkC;EAAE,OAAO,ENtY1B,GAAO;;AMuYxB,yBAAyC;EAAE,OAAO,ENtY1B,GAAO;;AMuY/B,gBAAgC;EAAE,OAAO,EN2C1B,GAAO;;AM1CtB,uBAAuC;EAAE,OAAO,EN2C1B,GAAO;;AM1C7B,kBAAkC;EAAE,OAAO,ENvC1B,GAAO;;AMwCxB;cAC8B;EAAE,OAAO,EN3W1B,GAAO;;AM4WpB;eAC+B;EAAE,OAAO,EN2D1B,GAAO;;AM1DrB,eAA+B;EAAE,OAAO,ENuF1B,GAAO;;AMtFrB,kBAAkC;EAAE,OAAO,ENwB1B,GAAO;;AMvBxB,qBAAqC;EAAE,OAAO,ENpS1B,GAAO;;AMqS3B,qBAAqC;EAAE,OAAO,ENkB1B,GAAO;;AMjB3B,mBAAmC;EAAE,OAAO,EN1S1B,GAAO;;AM2SzB,qBAAqC;EAAE,OAAO,ENxP1B,GAAO;;AMyP3B,sBAAsC;EAAE,OAAO,ENjP1B,GAAO;;AMkP5B,uBAAuC;EAAE,OAAO,EN9P1B,GAAO;;AM+P7B,4BAA4C;EAAE,OAAO,ENxP1B,GAAO;;AMyPlC;;uBAEuC;EAAE,OAAO,ENjQ1B,GAAO;;AMkQ7B;yBACyC;EAAE,OAAO,ENvQ1B,GAAO;;AMwQ/B;uBACuC;EAAE,OAAO,ENxQ1B,GAAO;;AMyQ7B;uBACuC;EAAE,OAAO,EN7P1B,GAAO;;AM8P7B,sBAAsC;EAAE,OAAO,EN1Q1B,GAAO;;AM2Q5B,eAA+B;EAAE,OAAO,ENsG1B,GAAO;;AMrGrB,kBAAkC;EAAE,OAAO,ENlV1B,GAAO;;AMmVxB,mBAAmC;EAAE,OAAO,ENnL1B,GAAO;;AMoLzB;;;;oBAIoC;EAAE,OAAO,ENxK1B,GAAO;;AMyK1B,yBAAyC;EAAE,OAAO,ENpW1B,GAAO;;AMqW/B;gBACgC;EAAE,OAAO,EN1E1B,GAAO;;AM2EtB;iBACiC;EAAE,OAAO,ENpT1B,GAAO;;AMqTvB,qBAAqC;EAAE,OAAO,EN1O1B,GAAO;;AM2O3B,cAA8B;EAAE,OAAO,EN5O1B,GAAO;;AM6OpB,sBAAsC;EAAE,OAAO,EN7N1B,GAAO;;AM8N5B,wBAAwC;EAAE,OAAO,ENwB1B,GAAO;;AMvB9B,aAA6B;EAAE,OAAO,ENzF1B,GAAO;;AM0FnB;iBACiC;EAAE,OAAO,EN2F1B,GAAO;;AM1FvB;sBACsC;EAAE,OAAO,EN9H1B,GAAO;;AM+H5B;wBACwC;EAAE,OAAO,EN/H1B,GAAO;;AMgI9B,kBAAkC;EAAE,OAAO,EN3N1B,GAAO;;AM4NxB;sBACsC;EAAE,OAAO,ENrX1B,GAAO;;AMsX5B,iBAAiC;EAAE,OAAO,ENnO1B,GAAO;;AMoOvB,oBAAoC;EAAE,OAAO,ENlI1B,GAAO;;AMmI1B,kBAAkC;EAAE,OAAO,EN1C1B,GAAO;;AM2CxB,oBAAoC;EAAE,OAAO,EN7D1B,GAAO;;AM8D1B,2BAA2C;EAAE,OAAO,EN7D1B,GAAO;;AM8DjC,eAA+B;EAAE,OAAO,ENpb1B,GAAO;;AMqbrB;mBACmC;EAAE,OAAO,ENzQ1B,GAAO;;AM0QzB,cAA8B;EAAE,OAAO,ENsC1B,GAAO;;AMrCpB,qBAAqC;EAAE,OAAO,EN/b1B,GAAO;;AMgc3B,eAA+B;EAAE,OAAO,ENrH1B,GAAO;;AMsHrB,qBAAqC;EAAE,OAAO,ENlD1B,GAAO;;AMmD3B,iBAAiC;EAAE,OAAO,ENsC1B,GAAO;;AMrCvB,eAA+B;EAAE,OAAO,ENiF1B,GAAO;;AMhFrB,sBAAsC;EAAE,OAAO,ENvJ1B,GAAO;;AMwJ5B,eAA+B;EAAE,OAAO,ENuE1B,GAAO;;AMtErB,qBAAqC;EAAE,OAAO,ENjb1B,GAAO;;AMkb3B,iBAAiC;EAAE,OAAO,EN9I1B,GAAO;;AM+IvB,wBAAwC;EAAE,OAAO,ENhQ1B,GAAO;;AMiQ9B,kBAAkC;EAAE,OAAO,EN9Z1B,GAAO;;AM+ZxB,wBAAwC;EAAE,OAAO,ENla1B,GAAO;;AMma9B,sBAAsC;EAAE,OAAO,ENpa1B,GAAO;;AMqa5B,kBAAkC;EAAE,OAAO,ENta1B,GAAO;;AMuaxB,oBAAoC;EAAE,OAAO,ENpa1B,GAAO;;AMqa1B,oBAAoC;EAAE,OAAO,ENpa1B,GAAO;;AMqa1B,qBAAqC;EAAE,OAAO,ENld1B,GAAO;;AMmd3B,uBAAuC;EAAE,OAAO,ENld1B,GAAO;;AMmd7B,gBAAgC;EAAE,OAAO,ENY1B,GAAO;;AMXtB,oBAAoC;EAAE,OAAO,EN3X1B,GAAO;;AM4X1B,aAA6B;EAAE,OAAO,ENre1B,GAAO;;AMsenB,qBAAqC;EAAE,OAAO,ENjV1B,GAAO;;AMkV3B,sBAAsC;EAAE,OAAO,ENpK1B,GAAO;;AMqK5B,wBAAwC;EAAE,OAAO,ENrd1B,GAAO;;AMsd9B,qBAAqC;EAAE,OAAO,EN3f1B,GAAO;;AM4f3B,oBAAoC;EAAE,OAAO,ENvJ1B,GAAO;;AMwJ1B,qBAAqC;EAAE,OAAO,EN5N1B,GAAO;;AM6N3B,iBAAiC;EAAE,OAAO,EN1O1B,GAAO;;AM2OvB,wBAAwC;EAAE,OAAO,EN1O1B,GAAO;;AM2O9B,qBAAqC;EAAE,OAAO,ENN1B,GAAO;;AMO3B,oBAAoC;EAAE,OAAO,ENN1B,GAAO;;AMO1B,kBAAkC;EAAE,OAAO,EN/d1B,GAAO;;AMgexB,cAA8B;EAAE,OAAO,EN7c1B,GAAO;;AM8cpB,kBAAkC;EAAE,OAAO,EN1P1B,GAAO;;AM2PxB,oBAAoC;EAAE,OAAO,ENhhB1B,GAAO;;AMihB1B,aAA6B;EAAE,OAAO,EN7b1B,GAAO;;AM8bnB;;cAE8B;EAAE,OAAO,ENxQ1B,GAAO;;AMyQpB,mBAAmC;EAAE,OAAO,EN7M1B,GAAO;;AM8MzB,qBAAqC;EAAE,OAAO,ENpd1B,GAAO;;AMqd3B,yBAAyC;EAAE,OAAO,ENnZ1B,GAAO;;AMoZ/B,mBAAmC;EAAE,OAAO,ENxY1B,GAAO;;AMyYzB,mBAAmC;EAAE,OAAO,EN1T1B,GAAO;;AM2TzB,kBAAkC;EAAE,OAAO,ENxP1B,GAAO;;AMyPxB,iBAAiC;EAAE,OAAO,ENrH1B,GAAO;;AMsHvB,uBAAuC;EAAE,OAAO,ENzG1B,GAAO;;AM0G7B,sBAAsC;EAAE,OAAO,ENrG1B,GAAO;;AMsG5B,mBAAmC;EAAE,OAAO,ENpG1B,GAAO;;AMqGzB,oBAAoC;EAAE,OAAO,EN5c1B,GAAO;;AM6c1B,0BAA0C;EAAE,OAAO,EN9c1B,GAAO;;AM+chC,kBAAkC;EAAE,OAAO,EN3Y1B,GAAO;;AM4YxB,eAA+B;EAAE,OAAO,ENhH1B,GAAO;;AMiHrB,sBAAsC;EAAE,OAAO,ENI1B,GAAO;;AMH5B,qBAAqC;EAAE,OAAO,EN5M1B,GAAO;;AM6M3B,sBAAsC;EAAE,OAAO,ENpE1B,GAAO;;AMqE5B,oBAAoC;EAAE,OAAO,ENhS1B,GAAO;;AMiS1B,gBAAgC;EAAE,OAAO,ENG1B,GAAO;;AMFtB,eAA+B;EAAE,OAAO,ENtO1B,GAAO;;AMuOrB,kBAAkC;EAAE,OAAO,EN7N1B,GAAO;;AM8NxB,sBAAsC;EAAE,OAAO,ENhC1B,GAAO;;AMiC5B,0BAA0C;EAAE,OAAO,ENhC1B,GAAO;;AMiChC,uBAAuC;EAAE,OAAO,END1B,GAAO;;AME7B,sBAAsC;EAAE,OAAO,EN1O1B,GAAO;;AM2O5B,qBAAqC;EAAE,OAAO,ENF1B,GAAO;;AMG3B,sBAAsC;EAAE,OAAO,EN3O1B,GAAO;;AM4O5B,wBAAwC;EAAE,OAAO,EN1O1B,GAAO;;AM2O9B,wBAAwC;EAAE,OAAO,EN5O1B,GAAO;;AM6O9B,iBAAiC;EAAE,OAAO,ENvN1B,GAAO;;AMwNvB,4BAA4C;EAAE,OAAO,EN9X1B,GAAO;;AM+XlC,sBAAsC;EAAE,OAAO,ENhM1B,GAAO;;AMiM5B,mBAAmC;EAAE,OAAO,ENI1B,GAAO;;AMHzB,iBAAiC;EAAE,OAAO,EN7I1B,GAAO;;AM8IvB,oBAAoC;EAAE,OAAO,ENjB1B,GAAO;;AMkB1B,qBAAqC;EAAE,OAAO,ENhB1B,GAAO;;AMiB3B;cAC8B;EAAE,OAAO,ENphB1B,GAAO;;AMqhBpB,kBAAkC;EAAE,OAAO,ENd1B,GAAO;;AMexB,gBAAgC;EAAE,OAAO,ENnD1B,GAAO;;AMoDtB,iBAAiC;EAAE,OAAO,ENvF1B,GAAO;;AMwFvB,iBAAiC;EAAE,OAAO,ENrP1B,GAAO",
+"sources": ["../scss/_path.scss","../scss/_core.scss","../scss/_larger.scss","../scss/_fixed-width.scss","../scss/_list.scss","../scss/_variables.scss","../scss/_bordered-pulled.scss","../scss/_animated.scss","../scss/_rotated-flipped.scss","../scss/_mixins.scss","../scss/_stacked.scss","../scss/_icons.scss"],
+"names": [],
+"file": "font-awesome.css"
+}
diff --git a/source/libs/font-awesome-4.6.3/css/font-awesome.min.css b/source/libs/font-awesome/css/font-awesome.min.css
similarity index 76%
rename from source/libs/font-awesome-4.6.3/css/font-awesome.min.css
rename to source/libs/font-awesome/css/font-awesome.min.css
index 9b27f8e..540440c 100644
--- a/source/libs/font-awesome-4.6.3/css/font-awesome.min.css
+++ b/source/libs/font-awesome/css/font-awesome.min.css
@@ -1,4 +1,4 @@
/*!
- * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
+ */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
diff --git a/source/libs/font-awesome/fonts/FontAwesome.otf b/source/libs/font-awesome/fonts/FontAwesome.otf
new file mode 100644
index 0000000..401ec0f
Binary files /dev/null and b/source/libs/font-awesome/fonts/FontAwesome.otf differ
diff --git a/source/libs/font-awesome/fonts/fontawesome-webfont.eot b/source/libs/font-awesome/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000..e9f60ca
Binary files /dev/null and b/source/libs/font-awesome/fonts/fontawesome-webfont.eot differ
diff --git a/source/libs/font-awesome/fonts/fontawesome-webfont.svg b/source/libs/font-awesome/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000..855c845
--- /dev/null
+++ b/source/libs/font-awesome/fonts/fontawesome-webfont.svg
@@ -0,0 +1,2671 @@
+
+
+
+
+Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
+ By ,,,
+Copyright Dave Gandy 2016. All rights reserved.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.ttf b/source/libs/font-awesome/fonts/fontawesome-webfont.ttf
similarity index 75%
rename from source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.ttf
rename to source/libs/font-awesome/fonts/fontawesome-webfont.ttf
index f221e50..35acda2 100644
Binary files a/source/libs/font-awesome-4.6.3/fonts/fontawesome-webfont.ttf and b/source/libs/font-awesome/fonts/fontawesome-webfont.ttf differ
diff --git a/source/libs/font-awesome/fonts/fontawesome-webfont.woff b/source/libs/font-awesome/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000..400014a
Binary files /dev/null and b/source/libs/font-awesome/fonts/fontawesome-webfont.woff differ
diff --git a/source/libs/font-awesome/fonts/fontawesome-webfont.woff2 b/source/libs/font-awesome/fonts/fontawesome-webfont.woff2
new file mode 100644
index 0000000..4d13fc6
Binary files /dev/null and b/source/libs/font-awesome/fonts/fontawesome-webfont.woff2 differ
diff --git a/source/libs/font-awesome-4.6.3/less/animated.less b/source/libs/font-awesome/less/animated.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/animated.less
rename to source/libs/font-awesome/less/animated.less
diff --git a/source/libs/font-awesome-4.6.3/less/bordered-pulled.less b/source/libs/font-awesome/less/bordered-pulled.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/bordered-pulled.less
rename to source/libs/font-awesome/less/bordered-pulled.less
diff --git a/source/libs/font-awesome-4.6.3/less/core.less b/source/libs/font-awesome/less/core.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/core.less
rename to source/libs/font-awesome/less/core.less
diff --git a/source/libs/font-awesome-4.6.3/less/fixed-width.less b/source/libs/font-awesome/less/fixed-width.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/fixed-width.less
rename to source/libs/font-awesome/less/fixed-width.less
diff --git a/source/libs/font-awesome-4.6.3/less/font-awesome.less b/source/libs/font-awesome/less/font-awesome.less
similarity index 87%
rename from source/libs/font-awesome-4.6.3/less/font-awesome.less
rename to source/libs/font-awesome/less/font-awesome.less
index c44e5f4..c3677de 100644
--- a/source/libs/font-awesome-4.6.3/less/font-awesome.less
+++ b/source/libs/font-awesome/less/font-awesome.less
@@ -1,5 +1,5 @@
/*!
- * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
diff --git a/source/libs/font-awesome-4.6.3/less/icons.less b/source/libs/font-awesome/less/icons.less
similarity index 93%
rename from source/libs/font-awesome-4.6.3/less/icons.less
rename to source/libs/font-awesome/less/icons.less
index ba21b22..159d600 100644
--- a/source/libs/font-awesome-4.6.3/less/icons.less
+++ b/source/libs/font-awesome/less/icons.less
@@ -605,6 +605,7 @@
.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }
.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }
.@{fa-css-prefix}-battery-4:before,
+.@{fa-css-prefix}-battery:before,
.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }
.@{fa-css-prefix}-battery-3:before,
.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }
@@ -731,3 +732,58 @@
.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }
.@{fa-css-prefix}-fa:before,
.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }
+.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }
+.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }
+.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }
+.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }
+.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }
+.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }
+.@{fa-css-prefix}-vcard:before,
+.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }
+.@{fa-css-prefix}-vcard-o:before,
+.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }
+.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }
+.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }
+.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }
+.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }
+.@{fa-css-prefix}-drivers-license:before,
+.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }
+.@{fa-css-prefix}-drivers-license-o:before,
+.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }
+.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }
+.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }
+.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }
+.@{fa-css-prefix}-thermometer-4:before,
+.@{fa-css-prefix}-thermometer:before,
+.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }
+.@{fa-css-prefix}-thermometer-3:before,
+.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }
+.@{fa-css-prefix}-thermometer-2:before,
+.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }
+.@{fa-css-prefix}-thermometer-1:before,
+.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }
+.@{fa-css-prefix}-thermometer-0:before,
+.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }
+.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }
+.@{fa-css-prefix}-bathtub:before,
+.@{fa-css-prefix}-s15:before,
+.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }
+.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }
+.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }
+.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }
+.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }
+.@{fa-css-prefix}-times-rectangle:before,
+.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }
+.@{fa-css-prefix}-times-rectangle-o:before,
+.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }
+.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }
+.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }
+.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }
+.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }
+.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }
+.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }
+.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }
+.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }
+.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }
+.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }
+.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }
diff --git a/source/libs/font-awesome-4.6.3/less/larger.less b/source/libs/font-awesome/less/larger.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/larger.less
rename to source/libs/font-awesome/less/larger.less
diff --git a/source/libs/font-awesome-4.6.3/less/list.less b/source/libs/font-awesome/less/list.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/list.less
rename to source/libs/font-awesome/less/list.less
diff --git a/source/libs/font-awesome-4.6.3/less/mixins.less b/source/libs/font-awesome/less/mixins.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/mixins.less
rename to source/libs/font-awesome/less/mixins.less
diff --git a/source/libs/font-awesome-4.6.3/less/path.less b/source/libs/font-awesome/less/path.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/path.less
rename to source/libs/font-awesome/less/path.less
diff --git a/source/libs/font-awesome-4.6.3/less/rotated-flipped.less b/source/libs/font-awesome/less/rotated-flipped.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/rotated-flipped.less
rename to source/libs/font-awesome/less/rotated-flipped.less
diff --git a/source/libs/font-awesome-4.6.3/less/screen-reader.less b/source/libs/font-awesome/less/screen-reader.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/screen-reader.less
rename to source/libs/font-awesome/less/screen-reader.less
diff --git a/source/libs/font-awesome-4.6.3/less/stacked.less b/source/libs/font-awesome/less/stacked.less
similarity index 100%
rename from source/libs/font-awesome-4.6.3/less/stacked.less
rename to source/libs/font-awesome/less/stacked.less
diff --git a/source/libs/font-awesome-4.6.3/less/variables.less b/source/libs/font-awesome/less/variables.less
similarity index 92%
rename from source/libs/font-awesome-4.6.3/less/variables.less
rename to source/libs/font-awesome/less/variables.less
index 2b33819..7ddbbc0 100644
--- a/source/libs/font-awesome-4.6.3/less/variables.less
+++ b/source/libs/font-awesome/less/variables.less
@@ -4,14 +4,18 @@
@fa-font-path: "../fonts";
@fa-font-size-base: 14px;
@fa-line-height-base: 1;
-//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts"; // for referencing Bootstrap CDN font files directly
+//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly
@fa-css-prefix: fa;
-@fa-version: "4.6.3";
+@fa-version: "4.7.0";
@fa-border-color: #eee;
@fa-inverse: #fff;
@fa-li-width: (30em / 14);
@fa-var-500px: "\f26e";
+@fa-var-address-book: "\f2b9";
+@fa-var-address-book-o: "\f2ba";
+@fa-var-address-card: "\f2bb";
+@fa-var-address-card-o: "\f2bc";
@fa-var-adjust: "\f042";
@fa-var-adn: "\f170";
@fa-var-align-center: "\f037";
@@ -60,11 +64,15 @@
@fa-var-backward: "\f04a";
@fa-var-balance-scale: "\f24e";
@fa-var-ban: "\f05e";
+@fa-var-bandcamp: "\f2d5";
@fa-var-bank: "\f19c";
@fa-var-bar-chart: "\f080";
@fa-var-bar-chart-o: "\f080";
@fa-var-barcode: "\f02a";
@fa-var-bars: "\f0c9";
+@fa-var-bath: "\f2cd";
+@fa-var-bathtub: "\f2cd";
+@fa-var-battery: "\f240";
@fa-var-battery-0: "\f244";
@fa-var-battery-1: "\f243";
@fa-var-battery-2: "\f242";
@@ -214,19 +222,25 @@
@fa-var-dot-circle-o: "\f192";
@fa-var-download: "\f019";
@fa-var-dribbble: "\f17d";
+@fa-var-drivers-license: "\f2c2";
+@fa-var-drivers-license-o: "\f2c3";
@fa-var-dropbox: "\f16b";
@fa-var-drupal: "\f1a9";
@fa-var-edge: "\f282";
@fa-var-edit: "\f044";
+@fa-var-eercast: "\f2da";
@fa-var-eject: "\f052";
@fa-var-ellipsis-h: "\f141";
@fa-var-ellipsis-v: "\f142";
@fa-var-empire: "\f1d1";
@fa-var-envelope: "\f0e0";
@fa-var-envelope-o: "\f003";
+@fa-var-envelope-open: "\f2b6";
+@fa-var-envelope-open-o: "\f2b7";
@fa-var-envelope-square: "\f199";
@fa-var-envira: "\f299";
@fa-var-eraser: "\f12d";
+@fa-var-etsy: "\f2d7";
@fa-var-eur: "\f153";
@fa-var-euro: "\f153";
@fa-var-exchange: "\f0ec";
@@ -294,6 +308,7 @@
@fa-var-forumbee: "\f211";
@fa-var-forward: "\f04e";
@fa-var-foursquare: "\f180";
+@fa-var-free-code-camp: "\f2c5";
@fa-var-frown-o: "\f119";
@fa-var-futbol-o: "\f1e3";
@fa-var-gamepad: "\f11b";
@@ -326,6 +341,7 @@
@fa-var-google-wallet: "\f1ee";
@fa-var-graduation-cap: "\f19d";
@fa-var-gratipay: "\f184";
+@fa-var-grav: "\f2d6";
@fa-var-group: "\f0c0";
@fa-var-h-square: "\f0fd";
@fa-var-hacker-news: "\f1d4";
@@ -342,6 +358,7 @@
@fa-var-hand-scissors-o: "\f257";
@fa-var-hand-spock-o: "\f259";
@fa-var-hand-stop-o: "\f256";
+@fa-var-handshake-o: "\f2b5";
@fa-var-hard-of-hearing: "\f2a4";
@fa-var-hashtag: "\f292";
@fa-var-hdd-o: "\f0a0";
@@ -365,8 +382,12 @@
@fa-var-houzz: "\f27c";
@fa-var-html5: "\f13b";
@fa-var-i-cursor: "\f246";
+@fa-var-id-badge: "\f2c1";
+@fa-var-id-card: "\f2c2";
+@fa-var-id-card-o: "\f2c3";
@fa-var-ils: "\f20b";
@fa-var-image: "\f03e";
+@fa-var-imdb: "\f2d8";
@fa-var-inbox: "\f01c";
@fa-var-indent: "\f03c";
@fa-var-industry: "\f275";
@@ -404,6 +425,7 @@
@fa-var-link: "\f0c1";
@fa-var-linkedin: "\f0e1";
@fa-var-linkedin-square: "\f08c";
+@fa-var-linode: "\f2b8";
@fa-var-linux: "\f17c";
@fa-var-list: "\f03a";
@fa-var-list-alt: "\f022";
@@ -436,8 +458,10 @@
@fa-var-meanpath: "\f20c";
@fa-var-medium: "\f23a";
@fa-var-medkit: "\f0fa";
+@fa-var-meetup: "\f2e0";
@fa-var-meh-o: "\f11a";
@fa-var-mercury: "\f223";
+@fa-var-microchip: "\f2db";
@fa-var-microphone: "\f130";
@fa-var-microphone-slash: "\f131";
@fa-var-minus: "\f068";
@@ -502,6 +526,7 @@
@fa-var-plus-circle: "\f055";
@fa-var-plus-square: "\f0fe";
@fa-var-plus-square-o: "\f196";
+@fa-var-podcast: "\f2ce";
@fa-var-power-off: "\f011";
@fa-var-print: "\f02f";
@fa-var-product-hunt: "\f288";
@@ -511,10 +536,12 @@
@fa-var-question: "\f128";
@fa-var-question-circle: "\f059";
@fa-var-question-circle-o: "\f29c";
+@fa-var-quora: "\f2c4";
@fa-var-quote-left: "\f10d";
@fa-var-quote-right: "\f10e";
@fa-var-ra: "\f1d0";
@fa-var-random: "\f074";
+@fa-var-ravelry: "\f2d9";
@fa-var-rebel: "\f1d0";
@fa-var-recycle: "\f1b8";
@fa-var-reddit: "\f1a1";
@@ -541,6 +568,7 @@
@fa-var-rub: "\f158";
@fa-var-ruble: "\f158";
@fa-var-rupee: "\f156";
+@fa-var-s15: "\f2cd";
@fa-var-safari: "\f267";
@fa-var-save: "\f0c7";
@fa-var-scissors: "\f0c4";
@@ -565,6 +593,7 @@
@fa-var-shopping-bag: "\f290";
@fa-var-shopping-basket: "\f291";
@fa-var-shopping-cart: "\f07a";
+@fa-var-shower: "\f2cc";
@fa-var-sign-in: "\f090";
@fa-var-sign-language: "\f2a7";
@fa-var-sign-out: "\f08b";
@@ -581,6 +610,7 @@
@fa-var-snapchat: "\f2ab";
@fa-var-snapchat-ghost: "\f2ac";
@fa-var-snapchat-square: "\f2ad";
+@fa-var-snowflake-o: "\f2dc";
@fa-var-soccer-ball-o: "\f1e3";
@fa-var-sort: "\f0dc";
@fa-var-sort-alpha-asc: "\f15d";
@@ -626,6 +656,7 @@
@fa-var-subway: "\f239";
@fa-var-suitcase: "\f0f2";
@fa-var-sun-o: "\f185";
+@fa-var-superpowers: "\f2dd";
@fa-var-superscript: "\f12b";
@fa-var-support: "\f1cd";
@fa-var-table: "\f0ce";
@@ -635,6 +666,7 @@
@fa-var-tags: "\f02c";
@fa-var-tasks: "\f0ae";
@fa-var-taxi: "\f1ba";
+@fa-var-telegram: "\f2c6";
@fa-var-television: "\f26c";
@fa-var-tencent-weibo: "\f1d5";
@fa-var-terminal: "\f120";
@@ -644,6 +676,17 @@
@fa-var-th-large: "\f009";
@fa-var-th-list: "\f00b";
@fa-var-themeisle: "\f2b2";
+@fa-var-thermometer: "\f2c7";
+@fa-var-thermometer-0: "\f2cb";
+@fa-var-thermometer-1: "\f2ca";
+@fa-var-thermometer-2: "\f2c9";
+@fa-var-thermometer-3: "\f2c8";
+@fa-var-thermometer-4: "\f2c7";
+@fa-var-thermometer-empty: "\f2cb";
+@fa-var-thermometer-full: "\f2c7";
+@fa-var-thermometer-half: "\f2c9";
+@fa-var-thermometer-quarter: "\f2ca";
+@fa-var-thermometer-three-quarters: "\f2c8";
@fa-var-thumb-tack: "\f08d";
@fa-var-thumbs-down: "\f165";
@fa-var-thumbs-o-down: "\f088";
@@ -653,6 +696,8 @@
@fa-var-times: "\f00d";
@fa-var-times-circle: "\f057";
@fa-var-times-circle-o: "\f05c";
+@fa-var-times-rectangle: "\f2d3";
+@fa-var-times-rectangle-o: "\f2d4";
@fa-var-tint: "\f043";
@fa-var-toggle-down: "\f150";
@fa-var-toggle-left: "\f191";
@@ -693,11 +738,16 @@
@fa-var-usb: "\f287";
@fa-var-usd: "\f155";
@fa-var-user: "\f007";
+@fa-var-user-circle: "\f2bd";
+@fa-var-user-circle-o: "\f2be";
@fa-var-user-md: "\f0f0";
+@fa-var-user-o: "\f2c0";
@fa-var-user-plus: "\f234";
@fa-var-user-secret: "\f21b";
@fa-var-user-times: "\f235";
@fa-var-users: "\f0c0";
+@fa-var-vcard: "\f2bb";
+@fa-var-vcard-o: "\f2bc";
@fa-var-venus: "\f221";
@fa-var-venus-double: "\f226";
@fa-var-venus-mars: "\f228";
@@ -722,10 +772,16 @@
@fa-var-wheelchair-alt: "\f29b";
@fa-var-wifi: "\f1eb";
@fa-var-wikipedia-w: "\f266";
+@fa-var-window-close: "\f2d3";
+@fa-var-window-close-o: "\f2d4";
+@fa-var-window-maximize: "\f2d0";
+@fa-var-window-minimize: "\f2d1";
+@fa-var-window-restore: "\f2d2";
@fa-var-windows: "\f17a";
@fa-var-won: "\f159";
@fa-var-wordpress: "\f19a";
@fa-var-wpbeginner: "\f297";
+@fa-var-wpexplorer: "\f2de";
@fa-var-wpforms: "\f298";
@fa-var-wrench: "\f0ad";
@fa-var-xing: "\f168";
diff --git a/source/libs/font-awesome/package.json b/source/libs/font-awesome/package.json
new file mode 100644
index 0000000..86f58db
--- /dev/null
+++ b/source/libs/font-awesome/package.json
@@ -0,0 +1,44 @@
+{
+ "name": "font-awesome",
+ "description": "The iconic font and CSS framework",
+ "version": "4.7.0",
+ "style": "css/font-awesome.css",
+ "keywords": ["font", "awesome", "fontawesome", "icon", "font", "bootstrap"],
+ "homepage": "http://fontawesome.io/",
+ "bugs": {
+ "url" : "http://github.com/FortAwesome/Font-Awesome/issues"
+ },
+ "author": {
+ "name": "Dave Gandy",
+ "email": "dave@fontawesome.io",
+ "web": "http://twitter.com/davegandy"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/FortAwesome/Font-Awesome.git"
+ },
+ "contributors": [
+ {
+ "name": "Brian Talbot",
+ "web": "http://twitter.com/talbs"
+ },
+ {
+ "name": "Travis Chase",
+ "web": "http://twitter.com/supercodepoet"
+ },
+ {
+ "name": "Rob Madole",
+ "web": "http://twitter.com/robmadole"
+ },
+ {
+ "name": "Geremia Taglialatela",
+ "web": "http://twitter.com/gtagliala"
+ }
+ ],
+ "license": "(OFL-1.1 AND MIT)",
+ "dependencies": {
+ },
+ "engines" : {
+ "node" : ">=0.10.3"
+ }
+}
diff --git a/source/libs/font-awesome-4.6.3/scss/_animated.scss b/source/libs/font-awesome/scss/_animated.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_animated.scss
rename to source/libs/font-awesome/scss/_animated.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_bordered-pulled.scss b/source/libs/font-awesome/scss/_bordered-pulled.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_bordered-pulled.scss
rename to source/libs/font-awesome/scss/_bordered-pulled.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_core.scss b/source/libs/font-awesome/scss/_core.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_core.scss
rename to source/libs/font-awesome/scss/_core.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_fixed-width.scss b/source/libs/font-awesome/scss/_fixed-width.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_fixed-width.scss
rename to source/libs/font-awesome/scss/_fixed-width.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_icons.scss b/source/libs/font-awesome/scss/_icons.scss
similarity index 93%
rename from source/libs/font-awesome-4.6.3/scss/_icons.scss
rename to source/libs/font-awesome/scss/_icons.scss
index 2944344..e63e702 100644
--- a/source/libs/font-awesome-4.6.3/scss/_icons.scss
+++ b/source/libs/font-awesome/scss/_icons.scss
@@ -605,6 +605,7 @@
.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; }
.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; }
.#{$fa-css-prefix}-battery-4:before,
+.#{$fa-css-prefix}-battery:before,
.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; }
.#{$fa-css-prefix}-battery-3:before,
.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; }
@@ -731,3 +732,58 @@
.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; }
.#{$fa-css-prefix}-fa:before,
.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; }
+.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; }
+.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; }
+.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; }
+.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; }
+.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; }
+.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; }
+.#{$fa-css-prefix}-vcard:before,
+.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; }
+.#{$fa-css-prefix}-vcard-o:before,
+.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; }
+.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; }
+.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; }
+.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; }
+.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; }
+.#{$fa-css-prefix}-drivers-license:before,
+.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; }
+.#{$fa-css-prefix}-drivers-license-o:before,
+.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; }
+.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; }
+.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; }
+.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; }
+.#{$fa-css-prefix}-thermometer-4:before,
+.#{$fa-css-prefix}-thermometer:before,
+.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; }
+.#{$fa-css-prefix}-thermometer-3:before,
+.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; }
+.#{$fa-css-prefix}-thermometer-2:before,
+.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; }
+.#{$fa-css-prefix}-thermometer-1:before,
+.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; }
+.#{$fa-css-prefix}-thermometer-0:before,
+.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; }
+.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; }
+.#{$fa-css-prefix}-bathtub:before,
+.#{$fa-css-prefix}-s15:before,
+.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; }
+.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; }
+.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; }
+.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; }
+.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; }
+.#{$fa-css-prefix}-times-rectangle:before,
+.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; }
+.#{$fa-css-prefix}-times-rectangle-o:before,
+.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; }
+.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; }
+.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; }
+.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; }
+.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; }
+.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; }
+.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; }
+.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; }
+.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; }
+.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; }
+.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; }
+.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; }
diff --git a/source/libs/font-awesome-4.6.3/scss/_larger.scss b/source/libs/font-awesome/scss/_larger.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_larger.scss
rename to source/libs/font-awesome/scss/_larger.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_list.scss b/source/libs/font-awesome/scss/_list.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_list.scss
rename to source/libs/font-awesome/scss/_list.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_mixins.scss b/source/libs/font-awesome/scss/_mixins.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_mixins.scss
rename to source/libs/font-awesome/scss/_mixins.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_path.scss b/source/libs/font-awesome/scss/_path.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_path.scss
rename to source/libs/font-awesome/scss/_path.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_rotated-flipped.scss b/source/libs/font-awesome/scss/_rotated-flipped.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_rotated-flipped.scss
rename to source/libs/font-awesome/scss/_rotated-flipped.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_screen-reader.scss b/source/libs/font-awesome/scss/_screen-reader.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_screen-reader.scss
rename to source/libs/font-awesome/scss/_screen-reader.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_stacked.scss b/source/libs/font-awesome/scss/_stacked.scss
similarity index 100%
rename from source/libs/font-awesome-4.6.3/scss/_stacked.scss
rename to source/libs/font-awesome/scss/_stacked.scss
diff --git a/source/libs/font-awesome-4.6.3/scss/_variables.scss b/source/libs/font-awesome/scss/_variables.scss
similarity index 92%
rename from source/libs/font-awesome-4.6.3/scss/_variables.scss
rename to source/libs/font-awesome/scss/_variables.scss
index a5a89ef..498fc4a 100644
--- a/source/libs/font-awesome-4.6.3/scss/_variables.scss
+++ b/source/libs/font-awesome/scss/_variables.scss
@@ -4,14 +4,18 @@
$fa-font-path: "../fonts" !default;
$fa-font-size-base: 14px !default;
$fa-line-height-base: 1 !default;
-//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts" !default; // for referencing Bootstrap CDN font files directly
+//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly
$fa-css-prefix: fa !default;
-$fa-version: "4.6.3" !default;
+$fa-version: "4.7.0" !default;
$fa-border-color: #eee !default;
$fa-inverse: #fff !default;
$fa-li-width: (30em / 14) !default;
$fa-var-500px: "\f26e";
+$fa-var-address-book: "\f2b9";
+$fa-var-address-book-o: "\f2ba";
+$fa-var-address-card: "\f2bb";
+$fa-var-address-card-o: "\f2bc";
$fa-var-adjust: "\f042";
$fa-var-adn: "\f170";
$fa-var-align-center: "\f037";
@@ -60,11 +64,15 @@ $fa-var-automobile: "\f1b9";
$fa-var-backward: "\f04a";
$fa-var-balance-scale: "\f24e";
$fa-var-ban: "\f05e";
+$fa-var-bandcamp: "\f2d5";
$fa-var-bank: "\f19c";
$fa-var-bar-chart: "\f080";
$fa-var-bar-chart-o: "\f080";
$fa-var-barcode: "\f02a";
$fa-var-bars: "\f0c9";
+$fa-var-bath: "\f2cd";
+$fa-var-bathtub: "\f2cd";
+$fa-var-battery: "\f240";
$fa-var-battery-0: "\f244";
$fa-var-battery-1: "\f243";
$fa-var-battery-2: "\f242";
@@ -214,19 +222,25 @@ $fa-var-dollar: "\f155";
$fa-var-dot-circle-o: "\f192";
$fa-var-download: "\f019";
$fa-var-dribbble: "\f17d";
+$fa-var-drivers-license: "\f2c2";
+$fa-var-drivers-license-o: "\f2c3";
$fa-var-dropbox: "\f16b";
$fa-var-drupal: "\f1a9";
$fa-var-edge: "\f282";
$fa-var-edit: "\f044";
+$fa-var-eercast: "\f2da";
$fa-var-eject: "\f052";
$fa-var-ellipsis-h: "\f141";
$fa-var-ellipsis-v: "\f142";
$fa-var-empire: "\f1d1";
$fa-var-envelope: "\f0e0";
$fa-var-envelope-o: "\f003";
+$fa-var-envelope-open: "\f2b6";
+$fa-var-envelope-open-o: "\f2b7";
$fa-var-envelope-square: "\f199";
$fa-var-envira: "\f299";
$fa-var-eraser: "\f12d";
+$fa-var-etsy: "\f2d7";
$fa-var-eur: "\f153";
$fa-var-euro: "\f153";
$fa-var-exchange: "\f0ec";
@@ -294,6 +308,7 @@ $fa-var-fort-awesome: "\f286";
$fa-var-forumbee: "\f211";
$fa-var-forward: "\f04e";
$fa-var-foursquare: "\f180";
+$fa-var-free-code-camp: "\f2c5";
$fa-var-frown-o: "\f119";
$fa-var-futbol-o: "\f1e3";
$fa-var-gamepad: "\f11b";
@@ -326,6 +341,7 @@ $fa-var-google-plus-square: "\f0d4";
$fa-var-google-wallet: "\f1ee";
$fa-var-graduation-cap: "\f19d";
$fa-var-gratipay: "\f184";
+$fa-var-grav: "\f2d6";
$fa-var-group: "\f0c0";
$fa-var-h-square: "\f0fd";
$fa-var-hacker-news: "\f1d4";
@@ -342,6 +358,7 @@ $fa-var-hand-rock-o: "\f255";
$fa-var-hand-scissors-o: "\f257";
$fa-var-hand-spock-o: "\f259";
$fa-var-hand-stop-o: "\f256";
+$fa-var-handshake-o: "\f2b5";
$fa-var-hard-of-hearing: "\f2a4";
$fa-var-hashtag: "\f292";
$fa-var-hdd-o: "\f0a0";
@@ -365,8 +382,12 @@ $fa-var-hourglass-start: "\f251";
$fa-var-houzz: "\f27c";
$fa-var-html5: "\f13b";
$fa-var-i-cursor: "\f246";
+$fa-var-id-badge: "\f2c1";
+$fa-var-id-card: "\f2c2";
+$fa-var-id-card-o: "\f2c3";
$fa-var-ils: "\f20b";
$fa-var-image: "\f03e";
+$fa-var-imdb: "\f2d8";
$fa-var-inbox: "\f01c";
$fa-var-indent: "\f03c";
$fa-var-industry: "\f275";
@@ -404,6 +425,7 @@ $fa-var-line-chart: "\f201";
$fa-var-link: "\f0c1";
$fa-var-linkedin: "\f0e1";
$fa-var-linkedin-square: "\f08c";
+$fa-var-linode: "\f2b8";
$fa-var-linux: "\f17c";
$fa-var-list: "\f03a";
$fa-var-list-alt: "\f022";
@@ -436,8 +458,10 @@ $fa-var-maxcdn: "\f136";
$fa-var-meanpath: "\f20c";
$fa-var-medium: "\f23a";
$fa-var-medkit: "\f0fa";
+$fa-var-meetup: "\f2e0";
$fa-var-meh-o: "\f11a";
$fa-var-mercury: "\f223";
+$fa-var-microchip: "\f2db";
$fa-var-microphone: "\f130";
$fa-var-microphone-slash: "\f131";
$fa-var-minus: "\f068";
@@ -502,6 +526,7 @@ $fa-var-plus: "\f067";
$fa-var-plus-circle: "\f055";
$fa-var-plus-square: "\f0fe";
$fa-var-plus-square-o: "\f196";
+$fa-var-podcast: "\f2ce";
$fa-var-power-off: "\f011";
$fa-var-print: "\f02f";
$fa-var-product-hunt: "\f288";
@@ -511,10 +536,12 @@ $fa-var-qrcode: "\f029";
$fa-var-question: "\f128";
$fa-var-question-circle: "\f059";
$fa-var-question-circle-o: "\f29c";
+$fa-var-quora: "\f2c4";
$fa-var-quote-left: "\f10d";
$fa-var-quote-right: "\f10e";
$fa-var-ra: "\f1d0";
$fa-var-random: "\f074";
+$fa-var-ravelry: "\f2d9";
$fa-var-rebel: "\f1d0";
$fa-var-recycle: "\f1b8";
$fa-var-reddit: "\f1a1";
@@ -541,6 +568,7 @@ $fa-var-rss-square: "\f143";
$fa-var-rub: "\f158";
$fa-var-ruble: "\f158";
$fa-var-rupee: "\f156";
+$fa-var-s15: "\f2cd";
$fa-var-safari: "\f267";
$fa-var-save: "\f0c7";
$fa-var-scissors: "\f0c4";
@@ -565,6 +593,7 @@ $fa-var-shirtsinbulk: "\f214";
$fa-var-shopping-bag: "\f290";
$fa-var-shopping-basket: "\f291";
$fa-var-shopping-cart: "\f07a";
+$fa-var-shower: "\f2cc";
$fa-var-sign-in: "\f090";
$fa-var-sign-language: "\f2a7";
$fa-var-sign-out: "\f08b";
@@ -581,6 +610,7 @@ $fa-var-smile-o: "\f118";
$fa-var-snapchat: "\f2ab";
$fa-var-snapchat-ghost: "\f2ac";
$fa-var-snapchat-square: "\f2ad";
+$fa-var-snowflake-o: "\f2dc";
$fa-var-soccer-ball-o: "\f1e3";
$fa-var-sort: "\f0dc";
$fa-var-sort-alpha-asc: "\f15d";
@@ -626,6 +656,7 @@ $fa-var-subscript: "\f12c";
$fa-var-subway: "\f239";
$fa-var-suitcase: "\f0f2";
$fa-var-sun-o: "\f185";
+$fa-var-superpowers: "\f2dd";
$fa-var-superscript: "\f12b";
$fa-var-support: "\f1cd";
$fa-var-table: "\f0ce";
@@ -635,6 +666,7 @@ $fa-var-tag: "\f02b";
$fa-var-tags: "\f02c";
$fa-var-tasks: "\f0ae";
$fa-var-taxi: "\f1ba";
+$fa-var-telegram: "\f2c6";
$fa-var-television: "\f26c";
$fa-var-tencent-weibo: "\f1d5";
$fa-var-terminal: "\f120";
@@ -644,6 +676,17 @@ $fa-var-th: "\f00a";
$fa-var-th-large: "\f009";
$fa-var-th-list: "\f00b";
$fa-var-themeisle: "\f2b2";
+$fa-var-thermometer: "\f2c7";
+$fa-var-thermometer-0: "\f2cb";
+$fa-var-thermometer-1: "\f2ca";
+$fa-var-thermometer-2: "\f2c9";
+$fa-var-thermometer-3: "\f2c8";
+$fa-var-thermometer-4: "\f2c7";
+$fa-var-thermometer-empty: "\f2cb";
+$fa-var-thermometer-full: "\f2c7";
+$fa-var-thermometer-half: "\f2c9";
+$fa-var-thermometer-quarter: "\f2ca";
+$fa-var-thermometer-three-quarters: "\f2c8";
$fa-var-thumb-tack: "\f08d";
$fa-var-thumbs-down: "\f165";
$fa-var-thumbs-o-down: "\f088";
@@ -653,6 +696,8 @@ $fa-var-ticket: "\f145";
$fa-var-times: "\f00d";
$fa-var-times-circle: "\f057";
$fa-var-times-circle-o: "\f05c";
+$fa-var-times-rectangle: "\f2d3";
+$fa-var-times-rectangle-o: "\f2d4";
$fa-var-tint: "\f043";
$fa-var-toggle-down: "\f150";
$fa-var-toggle-left: "\f191";
@@ -693,11 +738,16 @@ $fa-var-upload: "\f093";
$fa-var-usb: "\f287";
$fa-var-usd: "\f155";
$fa-var-user: "\f007";
+$fa-var-user-circle: "\f2bd";
+$fa-var-user-circle-o: "\f2be";
$fa-var-user-md: "\f0f0";
+$fa-var-user-o: "\f2c0";
$fa-var-user-plus: "\f234";
$fa-var-user-secret: "\f21b";
$fa-var-user-times: "\f235";
$fa-var-users: "\f0c0";
+$fa-var-vcard: "\f2bb";
+$fa-var-vcard-o: "\f2bc";
$fa-var-venus: "\f221";
$fa-var-venus-double: "\f226";
$fa-var-venus-mars: "\f228";
@@ -722,10 +772,16 @@ $fa-var-wheelchair: "\f193";
$fa-var-wheelchair-alt: "\f29b";
$fa-var-wifi: "\f1eb";
$fa-var-wikipedia-w: "\f266";
+$fa-var-window-close: "\f2d3";
+$fa-var-window-close-o: "\f2d4";
+$fa-var-window-maximize: "\f2d0";
+$fa-var-window-minimize: "\f2d1";
+$fa-var-window-restore: "\f2d2";
$fa-var-windows: "\f17a";
$fa-var-won: "\f159";
$fa-var-wordpress: "\f19a";
$fa-var-wpbeginner: "\f297";
+$fa-var-wpexplorer: "\f2de";
$fa-var-wpforms: "\f298";
$fa-var-wrench: "\f0ad";
$fa-var-xing: "\f168";
diff --git a/source/libs/font-awesome-4.6.3/scss/font-awesome.scss b/source/libs/font-awesome/scss/font-awesome.scss
similarity index 85%
rename from source/libs/font-awesome-4.6.3/scss/font-awesome.scss
rename to source/libs/font-awesome/scss/font-awesome.scss
index 2308b14..f1c83aa 100644
--- a/source/libs/font-awesome-4.6.3/scss/font-awesome.scss
+++ b/source/libs/font-awesome/scss/font-awesome.scss
@@ -1,5 +1,5 @@
/*!
- * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
diff --git a/source/libs/normalize.min.css b/source/libs/normalize.min.css
deleted file mode 100644
index 64c3c2b..0000000
--- a/source/libs/normalize.min.css
+++ /dev/null
@@ -1 +0,0 @@
-/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */button,hr,input{overflow:visible}audio,canvas,progress,video{display:inline-block}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}
diff --git a/source/libs/spoqa-han-sans-jp/.gitignore b/source/libs/spoqa-han-sans-jp/.gitignore
new file mode 100644
index 0000000..4d28e8c
--- /dev/null
+++ b/source/libs/spoqa-han-sans-jp/.gitignore
@@ -0,0 +1,3 @@
+.DS_STORE
+.idea
+*.iml
diff --git a/source/libs/spoqa-han-sans-jp/LICENSE b/source/libs/spoqa-han-sans-jp/LICENSE
new file mode 100644
index 0000000..e8d499f
--- /dev/null
+++ b/source/libs/spoqa-han-sans-jp/LICENSE
@@ -0,0 +1,96 @@
+Copyright (c) 2015-10-09, Spoqa (spoqa.com),
+with Reserved Font Name Spoqa Han Sans.
+Copyright (c) 2015-10-09, Spoqa (spoqa.com),
+with Reserved Font Name Spoqa Han Sans JP.
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
\ No newline at end of file
diff --git a/source/libs/spoqa-han-sans-jp/README.md b/source/libs/spoqa-han-sans-jp/README.md
new file mode 100644
index 0000000..3314ca2
--- /dev/null
+++ b/source/libs/spoqa-han-sans-jp/README.md
@@ -0,0 +1,22 @@
+Spoqa Han Sans v2.1.1
+=====================
+
+[![npm version](https://badge.fury.io/js/spoqa-han-sans.svg)](https://www.npmjs.com/package/spoqa-han-sans)
+[![Build Status](https://travis-ci.org/spoqa/spoqa-han-sans.svg?branch=master)](https://travis-ci.org/spoqa/spoqa-han-sans)
+[![GitHub release](https://img.shields.io/github/release/spoqa/spoqa-han-sans.svg)](https://github.com/spoqa/spoqa-han-sans)
+
+
+스포카 한 산스는 국문, 영문, 일문, 숫자, 글리프의 어울림이 훌륭합니다.
+가는 굵기(Thin), 보통 굵기(Regular), 두꺼운 굵기(Bold) 세 가지 자족으로,
+디지털 환경에서 언어를 아름답게 표현합니다.
+
+스포카 혼자 쓰기엔 지나치게 산뜻한 스포카 한 산스,
+한글날을 맞이하여 누구나 무료로 쓸 수 있도록 배포합니다.
+
+## 제작 정보
+
+Spoqa Han Sans에 대한 제작 배경 및 미리보기에 대한 정보는 [Spoqa Han Sans Introduction](http://spoqa-han-sans.com/)에서 얻으실 수 있습니다.
+
+## 오픈 소스
+
+Spoqa Han Sans는 Spoqa에서 관리하고 있는 오픈 소스 서체로, [SIL Open Font License](http://scripts.sil.org/OFL)로 배포되고 있습니다. ([프로젝트에 기여한 분들의 목록](https://github.com/spoqa/spoqa-han-sans/graphs/contributors) 참고.)
\ No newline at end of file
diff --git a/source/libs/spoqa-han-sans-jp/css/SpoqaHanSans-jp.css b/source/libs/spoqa-han-sans-jp/css/SpoqaHanSans-jp.css
new file mode 100644
index 0000000..978777e
--- /dev/null
+++ b/source/libs/spoqa-han-sans-jp/css/SpoqaHanSans-jp.css
@@ -0,0 +1,58 @@
+/**
+ * Copyright (c) 2015 Spoqa, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+@font-face {
+ font-family: 'Spoqa Han Sans JP';
+ font-weight: 700;
+ src: local('Spoqa Han Sans JP Bold'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPBold.woff2') format('woff2'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPBold.woff') format('woff'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPBold.ttf') format('truetype');
+}
+
+@font-face {
+ font-family: 'Spoqa Han Sans JP';
+ font-weight: 400;
+ src: local('Spoqa Han Sans JP Regular'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPRegular.woff2') format('woff2'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPRegular.woff') format('woff'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPRegular.ttf') format('truetype');
+}
+
+@font-face {
+ font-family: 'Spoqa Han Sans JP';
+ font-weight: 300;
+ src: local('Spoqa Han Sans JP Light'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPLight.woff2') format('woff2'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPLight.woff') format('woff'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPLight.ttf') format('truetype');
+}
+
+@font-face {
+ font-family: 'Spoqa Han Sans JP';
+ font-weight: 100;
+ src: local('Spoqa Han Sans JP Thin'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPThin.woff2') format('woff2'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPThin.woff') format('woff'),
+ url('../fonts/SpoqaHanSans_JP/SpoqaHanSansJPThin.ttf') format('truetype');
+}
\ No newline at end of file
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/LICENSE b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/LICENSE
new file mode 100644
index 0000000..4b064bc
--- /dev/null
+++ b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/LICENSE
@@ -0,0 +1,96 @@
+Copyright (c) 2015-10-09, Spoqa (spoqa.com),
+with Reserved Font Name Spoqa Han Sans.
+Copyright (c) 2015-10-09, Spoqa (spoqa.com),
+with Reserved Font Name Spoqa Han Sans JP.
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/LICENSE_OFL.txt b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/LICENSE_OFL.txt
new file mode 100644
index 0000000..d952d62
--- /dev/null
+++ b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/LICENSE_OFL.txt
@@ -0,0 +1,92 @@
+This Font Software is licensed under the SIL Open Font License,
+Version 1.1.
+
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font
+creation efforts of academic and linguistic communities, and to
+provide a free and open framework in which fonts may be shared and
+improved in partnership with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply to
+any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software
+components as distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to,
+deleting, or substituting -- in part or in whole -- any of the
+components of the Original Version, by changing formats or by porting
+the Font Software to a new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed,
+modify, redistribute, and sell modified and unmodified copies of the
+Font Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components, in
+Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the
+corresponding Copyright Holder. This restriction only applies to the
+primary font name as presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created using
+the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPBold.woff b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPBold.woff
new file mode 100644
index 0000000..e69de29
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPBold.woff2 b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPBold.woff2
new file mode 100644
index 0000000..e69de29
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPLight.woff b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPLight.woff
new file mode 100644
index 0000000..e69de29
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPLight.woff2 b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPLight.woff2
new file mode 100644
index 0000000..e69de29
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPRegular.woff b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPRegular.woff
new file mode 100644
index 0000000..e69de29
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPRegular.woff2 b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPRegular.woff2
new file mode 100644
index 0000000..e69de29
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPThin.woff b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPThin.woff
new file mode 100644
index 0000000..e69de29
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPThin.woff2 b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/SpoqaHanSansJPThin.woff2
new file mode 100644
index 0000000..e69de29
diff --git a/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/glyphs.txt b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/glyphs.txt
new file mode 100644
index 0000000..5672cb7
--- /dev/null
+++ b/source/libs/spoqa-han-sans-jp/fonts/SpoqaHanSans_JP/glyphs.txt
@@ -0,0 +1,14 @@
+!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`
+abcdefghijklmnopqrstuvwxyz{|}~
+。「」、・ヲァィゥェォャュョッーアイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン゙゚
+01 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\〜∥|…‥‘’“”‹›«»()〔〕[]{}〈〉《》「」『』【】+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇
+02◆□■△▲▽▼※〒→←↑↓〓∈∋⊆⊇⊂⊃∪∩∧∨¬⇒⇔∀∃∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬ʼn♯♭♪†‡¶◯
+030123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ
+abcdefghijklmnopqrstuvwxyz
+04ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん
+05ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ
+06ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω 07АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюя
+08─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂
+16亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭17院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応18押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改19魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱20粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄21機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京22供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈23掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲24検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向25后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込26此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷27察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時28次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周29宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償30勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾31拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾32澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線33繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎34臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只35叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵36帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓37邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到38董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入39如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦40函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美41鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服42福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋43法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満44漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒45諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃46痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯47蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕
+●第2水準漢字(JIS X 0208)
+48弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲49僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨50辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨51咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉52圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩53奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓54屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏55廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚56悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛57戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼58據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼59曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍60棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣61檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾62沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌63漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼64燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱65瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰66癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬67磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐68筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆69紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺70罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋71隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙72茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈73蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙74蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞75襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫76譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊77蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸78遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮79錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞80陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰81顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷82髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈83鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠84堯槇遙瑤凜熙
diff --git a/source/libs/spoqa-han-sans-kr/LICENSE b/source/libs/spoqa-han-sans-kr/LICENSE
new file mode 100644
index 0000000..e8d499f
--- /dev/null
+++ b/source/libs/spoqa-han-sans-kr/LICENSE
@@ -0,0 +1,96 @@
+Copyright (c) 2015-10-09, Spoqa (spoqa.com),
+with Reserved Font Name Spoqa Han Sans.
+Copyright (c) 2015-10-09, Spoqa (spoqa.com),
+with Reserved Font Name Spoqa Han Sans JP.
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
\ No newline at end of file
diff --git a/source/libs/spoqa-han-sans-kr/README.md b/source/libs/spoqa-han-sans-kr/README.md
new file mode 100644
index 0000000..3314ca2
--- /dev/null
+++ b/source/libs/spoqa-han-sans-kr/README.md
@@ -0,0 +1,22 @@
+Spoqa Han Sans v2.1.1
+=====================
+
+[![npm version](https://badge.fury.io/js/spoqa-han-sans.svg)](https://www.npmjs.com/package/spoqa-han-sans)
+[![Build Status](https://travis-ci.org/spoqa/spoqa-han-sans.svg?branch=master)](https://travis-ci.org/spoqa/spoqa-han-sans)
+[![GitHub release](https://img.shields.io/github/release/spoqa/spoqa-han-sans.svg)](https://github.com/spoqa/spoqa-han-sans)
+
+
+스포카 한 산스는 국문, 영문, 일문, 숫자, 글리프의 어울림이 훌륭합니다.
+가는 굵기(Thin), 보통 굵기(Regular), 두꺼운 굵기(Bold) 세 가지 자족으로,
+디지털 환경에서 언어를 아름답게 표현합니다.
+
+스포카 혼자 쓰기엔 지나치게 산뜻한 스포카 한 산스,
+한글날을 맞이하여 누구나 무료로 쓸 수 있도록 배포합니다.
+
+## 제작 정보
+
+Spoqa Han Sans에 대한 제작 배경 및 미리보기에 대한 정보는 [Spoqa Han Sans Introduction](http://spoqa-han-sans.com/)에서 얻으실 수 있습니다.
+
+## 오픈 소스
+
+Spoqa Han Sans는 Spoqa에서 관리하고 있는 오픈 소스 서체로, [SIL Open Font License](http://scripts.sil.org/OFL)로 배포되고 있습니다. ([프로젝트에 기여한 분들의 목록](https://github.com/spoqa/spoqa-han-sans/graphs/contributors) 참고.)
\ No newline at end of file
diff --git a/source/libs/spoqa-han-sans-kr/css/SpoqaHanSans-kr.css b/source/libs/spoqa-han-sans-kr/css/SpoqaHanSans-kr.css
new file mode 100644
index 0000000..28189e5
--- /dev/null
+++ b/source/libs/spoqa-han-sans-kr/css/SpoqaHanSans-kr.css
@@ -0,0 +1,58 @@
+/**
+ * Copyright (c) 2015 Spoqa, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+@font-face {
+ font-family: 'Spoqa Han Sans';
+ font-weight: 700;
+ src: local('Spoqa Han Sans Bold'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansBold.woff2') format('woff2'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansBold.woff') format('woff'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansBold.ttf') format('truetype');
+}
+
+@font-face {
+ font-family: 'Spoqa Han Sans';
+ font-weight: 400;
+ src: local('Spoqa Han Sans Regular'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansRegular.woff2') format('woff2'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansRegular.woff') format('woff'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansRegular.ttf') format('truetype');
+}
+
+@font-face {
+ font-family: 'Spoqa Han Sans';
+ font-weight: 300;
+ src: local('Spoqa Han Sans Light'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansLight.woff2') format('woff2'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansLight.woff') format('woff'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansLight.ttf') format('truetype');
+}
+
+@font-face {
+ font-family: 'Spoqa Han Sans';
+ font-weight: 100;
+ src: local('Spoqa Han Sans Thin'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansThin.woff2') format('woff2'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansThin.woff') format('woff'),
+ url('../fonts/SpoqaHanSans/SpoqaHanSansThin.ttf') format('truetype');
+}
\ No newline at end of file
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/LICENSE b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/LICENSE
new file mode 100644
index 0000000..4b064bc
--- /dev/null
+++ b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/LICENSE
@@ -0,0 +1,96 @@
+Copyright (c) 2015-10-09, Spoqa (spoqa.com),
+with Reserved Font Name Spoqa Han Sans.
+Copyright (c) 2015-10-09, Spoqa (spoqa.com),
+with Reserved Font Name Spoqa Han Sans JP.
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/LICENSE_OFL.txt b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/LICENSE_OFL.txt
new file mode 100644
index 0000000..d952d62
--- /dev/null
+++ b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/LICENSE_OFL.txt
@@ -0,0 +1,92 @@
+This Font Software is licensed under the SIL Open Font License,
+Version 1.1.
+
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font
+creation efforts of academic and linguistic communities, and to
+provide a free and open framework in which fonts may be shared and
+improved in partnership with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply to
+any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software
+components as distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to,
+deleting, or substituting -- in part or in whole -- any of the
+components of the Original Version, by changing formats or by porting
+the Font Software to a new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed,
+modify, redistribute, and sell modified and unmodified copies of the
+Font Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components, in
+Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the
+corresponding Copyright Holder. This restriction only applies to the
+primary font name as presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created using
+the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansBold.woff b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansBold.woff
new file mode 100644
index 0000000..e793d7b
Binary files /dev/null and b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansBold.woff differ
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansBold.woff2 b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansBold.woff2
new file mode 100644
index 0000000..2133aee
Binary files /dev/null and b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansBold.woff2 differ
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansLight.woff b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansLight.woff
new file mode 100644
index 0000000..ee141f0
Binary files /dev/null and b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansLight.woff differ
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansLight.woff2 b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansLight.woff2
new file mode 100644
index 0000000..132260a
Binary files /dev/null and b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansLight.woff2 differ
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansRegular.woff b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansRegular.woff
new file mode 100644
index 0000000..0389d83
Binary files /dev/null and b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansRegular.woff differ
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansRegular.woff2 b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansRegular.woff2
new file mode 100644
index 0000000..4e63efa
Binary files /dev/null and b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansRegular.woff2 differ
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansThin.woff b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansThin.woff
new file mode 100644
index 0000000..4d8d33e
Binary files /dev/null and b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansThin.woff differ
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansThin.woff2 b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansThin.woff2
new file mode 100644
index 0000000..974f44b
Binary files /dev/null and b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/SpoqaHanSansThin.woff2 differ
diff --git a/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/glyphs.txt b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/glyphs.txt
new file mode 100644
index 0000000..abc4196
--- /dev/null
+++ b/source/libs/spoqa-han-sans-kr/fonts/SpoqaHanSans/glyphs.txt
@@ -0,0 +1,7 @@
+ㄱㄲㄳㄴㄵㄶㄷㄸㄹㄺㄻㄼㄽㄾㄿㅀㅁㅂㅃㅄㅅㅆㅇㅈㅉㅊㅋㅌㅍㅎㅏㅐㅑㅒㅓㅔㅕㅖㅗㅘㅙㅚㅛㅜㅝㅞㅟㅠㅡㅢㅣㆍㆎⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ
+ 、。·‥…¨〃‘’“”‹›«»〔〕[]〈〉《》「」『』【】±×÷≠≤≥∞∴°′″℃Å¢£¥♂♀∠⊥⌒∂∇≡≒§※☆★○●◎◇◆ □■△▲▽▼→←↑↓↔〓≪≫√∽∝∵∫∬∈∋⊆⊇⊂⊃∪∩∧∨¬⇒⇔∀∃´˜ˇ˘˝˚˙¸˛¡¿∶∮∑∏¤℉‰◁◀▷▶♤♠♡♥♧♣⊙◈▣◐◑▒▤▥▨▧▦▩♨☏☎☜☞¶†‡↕↗↙↖↘♭♩♪♬㉿㈜ №㏇™㏂㏘℡
+¥ $ ₩₩
+㉠㉡㉢㉣㉤㉥㉦㉧㉨㉩㉪㉫㉬㉭㉮㉯㉰㉱㉲㉳㉴㉵㉶㉷㉸㉹㉺㉻ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢ ⓣⓤⓥⓦⓧⓨⓩ①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮½⅓⅔¼¾⅛⅜⅝⅞
+㈀㈁㈂㈃㈄㈅㈆㈇㈈㈉㈊㈋㈌㈍㈎㈏㈐㈑㈒㈓㈔㈕㈖㈗㈘㈙㈚㈛⒜⒝⒞⒟⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮ ⒯⒰⒱⒲⒳⒴⒵⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽⑾⑿⒀⒁⒂¹²³⁴ⁿ₁₂₃₄
+!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~가각간갇갈갉갊감갑값갓갔강갖갗같갚갛개객갠갤갬갭갯갰갱갸갹갼걀걋걍걔걘걜거걱건걷걸걺검겁것겄겅겆겉겊겋게겐겔겜겝겟겠겡겨격겪견겯결겸겹겻겼경곁계곈곌곕곗고곡곤곧골곪곬곯곰곱곳공곶과곽관괄괆괌괍괏광괘괜괠괩괬괭괴괵괸괼굄굅굇굉교굔굘굡굣구국군굳굴굵굶굻굼굽굿궁궂궈궉권궐궜궝궤궷귀귁귄귈귐귑귓규균귤그극근귿글긁금급긋긍긔기긱긴긷길긺김깁깃깅깆깊까깍깎깐깔깖깜깝깟깠깡깥깨깩깬깰깸깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌껍껏껐껑께껙껜껨껫껭껴껸껼꼇꼈꼍꼐꼬꼭꼰꼲꼴꼼꼽꼿꽁꽂꽃꽈꽉꽐꽜꽝꽤꽥꽹꾀꾄꾈꾐꾑꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋꿍꿎꿔꿜꿨꿩꿰꿱꿴꿸뀀뀁뀄뀌뀐뀔뀜뀝뀨끄끅끈끊끌끎끓끔끕끗끙끝끼끽낀낄낌낍낏낑나낙낚난낟날낡낢남납낫났낭낮낯낱낳내낵낸낼냄냅냇냈냉냐냑냔냘냠냥너넉넋넌널넒넓넘넙넛넜넝넣네넥넨넬넴넵넷넸넹녀녁년녈념녑녔녕녘녜녠노녹논놀놂놈놉놋농높놓놔놘놜놨뇌뇐뇔뇜뇝뇟뇨뇩뇬뇰뇹뇻뇽누눅눈눋눌눔눕눗눙눠눴눼뉘뉜뉠뉨뉩뉴뉵뉼늄늅늉느늑는늘늙늚늠늡늣능늦늪늬늰늴니닉닌닐닒님닙닛닝닢다닥닦단닫달닭닮닯닳담답닷닸당닺닻닿대댁댄댈댐댑댓댔댕댜더덕덖던덛덜덞덟덤덥덧덩덫덮데덱덴델뎀뎁뎃뎄뎅뎌뎐뎔뎠뎡뎨뎬도독돈돋돌돎돐돔돕돗동돛돝돠돤돨돼됐되된될됨됩됫됴두둑둔둘둠둡둣둥둬뒀뒈뒝뒤뒨뒬뒵뒷뒹듀듄듈듐듕드득든듣들듦듬듭듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸땀땁땃땄땅땋때땍땐땔땜땝땟땠땡떠떡떤떨떪떫떰떱떳떴떵떻떼떽뗀뗄뗌뗍뗏뗐뗑뗘뗬또똑똔똘똥똬똴뙈뙤뙨뚜뚝뚠뚤뚫뚬뚱뛔뛰뛴뛸뜀뜁뜅뜨뜩뜬뜯뜰뜸뜹뜻띄띈띌띔띕띠띤띨띰띱띳띵라락란랄람랍랏랐랑랒랖랗래랙랜랠램랩랫랬랭랴략랸럇량러럭런럴럼럽럿렀렁렇레렉렌렐렘렙렛렝려력련렬렴렵렷렸령례롄롑롓로록론롤롬롭롯롱롸롼뢍뢨뢰뢴뢸룀룁룃룅료룐룔룝룟룡루룩룬룰룸룹룻룽뤄뤘뤠뤼뤽륀륄륌륏륑류륙륜률륨륩륫륭르륵른를름릅릇릉릊릍릎리릭린릴림립릿링마막만많맏말맑맒맘맙맛망맞맡맣매맥맨맬맴맵맷맸맹맺먀먁먈먕머먹먼멀멂멈멉멋멍멎멓메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼묀묄묍묏묑묘묜묠묩묫무묵묶문묻물묽묾뭄뭅뭇뭉뭍뭏뭐뭔뭘뭡뭣뭬뮈뮌뮐뮤뮨뮬뮴뮷므믄믈믐믓미믹민믿밀밂밈밉밋밌밍및밑바박밖밗반받발밝밞밟밤밥밧방밭배백밴밸뱀뱁뱃뱄뱅뱉뱌뱍뱐뱝버벅번벋벌벎범법벗벙벚베벡벤벧벨벰벱벳벴벵벼벽변별볍볏볐병볕볘볜보복볶본볼봄봅봇봉봐봔봤봬뵀뵈뵉뵌뵐뵘뵙뵤뵨부북분붇불붉붊붐붑붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브븍븐블븜븝븟비빅빈빌빎빔빕빗빙빚빛빠빡빤빨빪빰빱빳빴빵빻빼빽뺀뺄뺌뺍뺏뺐뺑뺘뺙뺨뻐뻑뻔뻗뻘뻠뻣뻤뻥뻬뼁뼈뼉뼘뼙뼛뼜뼝뽀뽁뽄뽈뽐뽑뽕뾔뾰뿅뿌뿍뿐뿔뿜뿟뿡쀼쁑쁘쁜쁠쁨쁩삐삑삔삘삠삡삣삥사삭삯산삳살삵삶삼삽삿샀상샅새색샌샐샘샙샛샜생샤샥샨샬샴샵샷샹섀섄섈섐섕서석섞섟선섣설섦섧섬섭섯섰성섶세섹센셀셈셉셋셌셍셔셕션셜셤셥셧셨셩셰셴셸솅소속솎손솔솖솜솝솟송솥솨솩솬솰솽쇄쇈쇌쇔쇗쇘쇠쇤쇨쇰쇱쇳쇼쇽숀숄숌숍숏숑수숙순숟술숨숩숫숭숯숱숲숴쉈쉐쉑쉔쉘쉠쉥쉬쉭쉰쉴쉼쉽쉿슁슈슉슐슘슛슝스슥슨슬슭슴습슷승시식신싣실싫심십싯싱싶싸싹싻싼쌀쌈쌉쌌쌍쌓쌔쌕쌘쌜쌤쌥쌨쌩썅써썩썬썰썲썸썹썼썽쎄쎈쎌쏀쏘쏙쏜쏟쏠쏢쏨쏩쏭쏴쏵쏸쐈쐐쐤쐬쐰쐴쐼쐽쑈쑤쑥쑨쑬쑴쑵쑹쒀쒔쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀씁씌씐씔씜씨씩씬씰씸씹씻씽아악안앉않알앍앎앓암압앗았앙앝앞애액앤앨앰앱앳앴앵야약얀얄얇얌얍얏양얕얗얘얜얠얩어억언얹얻얼얽얾엄업없엇었엉엊엌엎에엑엔엘엠엡엣엥여역엮연열엶엷염엽엾엿였영옅옆옇예옌옐옘옙옛옜오옥온올옭옮옰옳옴옵옷옹옻와왁완왈왐왑왓왔왕왜왝왠왬왯왱외왹왼욀욈욉욋욍요욕욘욜욤욥욧용우욱운울욹욺움웁웃웅워웍원월웜웝웠웡웨웩웬웰웸웹웽위윅윈윌윔윕윗윙유육윤율윰윱윳융윷으윽은을읊음읍읏응읒읓읔읕읖읗의읜읠읨읫이익인일읽읾잃임입잇있잉잊잎자작잔잖잗잘잚잠잡잣잤장잦재잭잰잴잼잽잿쟀쟁쟈쟉쟌쟎쟐쟘쟝쟤쟨쟬저적전절젊점접젓정젖제젝젠젤젬젭젯젱져젼졀졈졉졌졍졔조족존졸졺좀좁좃종좆좇좋좌좍좔좝좟좡좨좼좽죄죈죌죔죕죗죙죠죡죤죵주죽준줄줅줆줌줍줏중줘줬줴쥐쥑쥔쥘쥠쥡쥣쥬쥰쥴쥼즈즉즌즐즘즙즛증지직진짇질짊짐집짓징짖짙짚짜짝짠짢짤짧짬짭짯짰짱째짹짼쨀쨈쨉쨋쨌쨍쨔쨘쨩쩌쩍쩐쩔쩜쩝쩟쩠쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌쫍쫏쫑쫓쫘쫙쫠쫬쫴쬈쬐쬔쬘쬠쬡쭁쭈쭉쭌쭐쭘쭙쭝쭤쭸쭹쮜쮸쯔쯤쯧쯩찌찍찐찔찜찝찡찢찧차착찬찮찰참찹찻찼창찾채책챈챌챔챕챗챘챙챠챤챦챨챰챵처척천철첨첩첫첬청체첵첸첼쳄쳅쳇쳉쳐쳔쳤쳬쳰촁초촉촌촐촘촙촛총촤촨촬촹최쵠쵤쵬쵭쵯쵱쵸춈추축춘출춤춥춧충춰췄췌췐취췬췰췸췹췻췽츄츈츌츔츙츠측츤츨츰츱츳층치칙친칟칠칡침칩칫칭카칵칸칼캄캅캇캉캐캑캔캘캠캡캣캤캥캬캭컁커컥컨컫컬컴컵컷컸컹케켁켄켈켐켑켓켕켜켠켤켬켭켯켰켱켸코콕콘콜콤콥콧콩콰콱콴콸쾀쾅쾌쾡쾨쾰쿄쿠쿡쿤쿨쿰쿱쿳쿵쿼퀀퀄퀑퀘퀭퀴퀵퀸퀼큄큅큇큉큐큔큘큠크큭큰클큼큽킁키킥킨킬킴킵킷킹타탁탄탈탉탐탑탓탔탕태택탠탤탬탭탯탰탱탸턍터턱턴털턺텀텁텃텄텅테텍텐텔템텝텟텡텨텬텼톄톈토톡톤톨톰톱톳통톺톼퇀퇘퇴퇸툇툉툐투툭툰툴툼툽툿퉁퉈퉜퉤튀튁튄튈튐튑튕튜튠튤튬튱트특튼튿틀틂틈틉틋틔틘틜틤틥티틱틴틸팀팁팃팅파팍팎판팔팖팜팝팟팠팡팥패팩팬팰팸팹팻팼팽퍄퍅퍼퍽펀펄펌펍펏펐펑페펙펜펠펨펩펫펭펴편펼폄폅폈평폐폘폡폣포폭폰폴폼폽폿퐁퐈퐝푀푄표푠푤푭푯푸푹푼푿풀풂품풉풋풍풔풩퓌퓐퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌핍핏핑하학한할핥함합핫항해핵핸핼햄햅햇했행햐향허헉헌헐헒험헙헛헝헤헥헨헬헴헵헷헹혀혁현혈혐협혓혔형혜혠혤혭호혹혼홀홅홈홉홋홍홑화확환활홧황홰홱홴횃횅회획횐횔횝횟횡효횬횰횹횻후훅훈훌훑훔훗훙훠훤훨훰훵훼훽휀휄휑휘휙휜휠휨휩휫휭휴휵휸휼흄흇흉흐흑흔흖흗흘흙흠흡흣흥흩희흰흴흼흽힁히힉힌힐힘힙힛힝
+갋갣걥겷괐괢굠굥궸귕귬긂긇긓깄깯꺆꺍껓껕꼉꼳꽅꽸꿘뀰뀼낻냗냡냣냬넏넢넫녇녱놁놑놰뇄뇡뇸눍눝뉻늗늧늼닁닏닽댠됭둗둚뒙딮딷똠똡똣똭똰뙇뙜뚧뜳뜽뜾랃랟랲럔럲럳렜렫롣롹뢔뤤맜맟맫먄몱뫠뫴뭥뮊뮹믁믕믜밷뱜뱡볌볻볿봥뵴붠붴뷁븡븨빋빧뺜뽓뾱뿕뿝쀠쁭샏샾섁섿셱솀솁솓쇵숖슌싥싳싿쎔쎠쎤쎵쎼쏼쑝쒐쒬씃씿앋앜얬얭옏옝옦옫왘왭왰욷웇웟웻윾읩읭읻잌잍쟵젇젉좬즒즤짣짲쫃쫒쬲쮓찓찟쵀췍칢칮칰칻캨캰컄켘콛쾃쿈쿽퀌퀜퀠큲킄탇턻톧퇻툶퉷팓팤팯펵퐉핰 핳핻햏햔햣헗헠헡헣헿홥홨횽훕흝힣
diff --git a/source/css/archives.scss b/src/css/archives.css
similarity index 81%
rename from source/css/archives.scss
rename to src/css/archives.css
index b7522e3..b0c005c 100644
--- a/source/css/archives.scss
+++ b/src/css/archives.css
@@ -1,4 +1,4 @@
-@import "variables";
+@import "./variables.css";
.archive-list {
list-style: none;
@@ -14,13 +14,13 @@
}
.archive-list-link {
- color: $black;
+ color: var(--black);
margin-right: 4px;
}
.archive-list-count {
font-size: 14px;
- color: $gray;
+ color: var(--gray);
&:before {
content: '('
}
diff --git a/source/css/article.scss b/src/css/article.css
similarity index 63%
rename from source/css/article.scss
rename to src/css/article.css
index a3cf5e4..78fdd0a 100644
--- a/source/css/article.scss
+++ b/src/css/article.css
@@ -1,49 +1,57 @@
-@import "bourbon";
-@import "variables";
+@import "./variables.css";
.article {
position: relative;
padding: 1rem;
overflow: hidden;
- max-width: $content-width;
+ max-width: var(--content-width);
margin: auto;
- @media #{$mobile} {
+ @media (--mobile) {
padding-top: 0;
}
- // Article common styles
- .article__contents {
- img {
+ /* Article common styles */
+ & .article__contents {
+ & img {
display: block;
- margin: 2rem -1rem;
- @media #{$mobile} {
+ margin: 1rem;
+
+ @media (--mobile) {
width: calc(100% + 2rem);
+ margin-left: -1rem;
+ margin-right: -1rem;
}
- @media #{$desktop} {
+
+ @media (--desktop) {
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
}
- h1, h2, h3, h4, h5, h6 {
- color: $bold-black;
+ & h1,
+ & h2,
+ & h3,
+ & h4,
+ & h5,
+ & h6 {
+ color: var(--bold-black);
margin-top: 3rem;
}
- blockquote {
- background-color: $semi-white;
- padding: $base-margin;
- margin-left: 0;
- margin-right: 0;
- p {
+ & blockquote {
+ background-color: var(--semi-white);
+ padding: var(--base-margin) 1rem;
+ margin-left: -1rem;
+ margin-right: -1rem;
+ & p {
margin: 0;
- + p {
+ & + p {
margin-top: 1rem;
}
}
- code {
+ & code {
background-color: transparent;
padding: 0;
font-style: italic;
@@ -58,93 +66,93 @@
}
}
- cite:before {
+ & cite:before {
content: '-';
margin: 0 0.5rem;
}
- code {
+ & code {
font-family: consolas, monospace;
- background-color: $semi-white;
- color: $secondary-yellow;
+ background-color: var(--semi-white);
+ color: var(--secondary-yellow);
padding: 0.125rem 0.25rem;
border-radius: 2px;
margin-left: 0;
margin-right: 0;
}
- figure.highlight {
- padding: 0 $base-margin;
- margin-left: 0;
- margin-right: 0;
- * {
+ & figure.highlight {
+ padding: 0 1rem;
+ margin-left: -1rem;
+ margin-right: -1rem;
+
+ & * {
font-family: consolas, monospace;
}
- figcaption {
+ & figcaption {
margin-top: 1rem;
- span {
- color: $gray;
+ & span {
+ color: var(--gray);
margin-right: 0.5rem;
}
- a {
+ & a {
float: right;
}
}
- table {
+ & table {
border: 0;
- tr td {
+ & tr td {
padding: 0;
}
}
- .line {
+ & .line {
min-height: 1.5rem;
&.marked {
background-color: rgba(0, 0, 0, 0.3);
}
}
- .gutter {
+ & .gutter {
width: 1rem;
padding-right: 1rem;
- color: $gray;
+ color: var(--gray);
}
}
-
- table {
- border-top: 1px solid $gray;
+ & table {
+ border-top: 1px solid var(--gray);
width: 100%;
text-align: left;
border-collapse: collapse;
- thead tr th{
- border-bottom: 2px solid $semi-white;
+ & thead tr th{
+ border-bottom: 2px solid var(--semi-white);
padding: 0.25rem 0;
}
- tbody tr {
- td {
- border-bottom: 1px solid $semi-white;
+ & tbody tr {
+ & td {
+ border-bottom: 1px solid var(--semi-white);
padding: 0.25rem 0;
}
&:last-child td {
- border-color: $gray;
+ border-color: var(--gray);
}
}
}
- iframe {
+ & iframe {
display: block;
- margin: 1rem 0;
- width: 100%;
+ margin: 1rem -1rem;
+ width: calc(100% + 2rem);
}
- .video-container {
+ & .video-container {
position: relative;
padding-top: 56.25%;
overflow: hidden;
- @media #{$mobile} {
+ @media (--mobile) {
margin: 0 -1rem;
width: calc(100% + 2rem);
}
- iframe {
+ & iframe {
position: absolute;
top: 0;
left: 0;
@@ -154,9 +162,9 @@
}
}
- ul, ol {
+ & ul, & ol {
list-style: none;
- li {
+ & li {
position: relative;
&:before {
position: absolute;
@@ -164,18 +172,18 @@
}
}
- ul {
+ & ul {
padding-left: 1.5rem;
- li:before {
+ & li:before {
content: '•';
left: -1.5rem;
}
}
- ol {
+ & ol {
padding-left: 2rem;
counter-reset: ol-count;
- li:before {
+ & li:before {
left: -2rem;
display: inline-block;
content: counter(ol-count) '.';
@@ -185,22 +193,24 @@
}
}
- // Footnote escape
- // For hexo-footnotes
- // https://github.com/LouisBarranqueiro/hexo-footnotes
- #footnotelist ol {
+ /*
+ * Footnote escape
+ * For hexo-footnotes
+ * https://github.com/LouisBarranqueiro/hexo-footnotes
+ */
+ & #footnotelist ol {
padding-left: 2rem !important;
- li {
- span:first-child {
+ & li {
+ & span:first-child {
display: none !important;
}
- span:nth-child(2) {
+ & span:nth-child(2) {
display: inline !important;
}
}
}
- hr {
+ & hr {
position: relative;
border: 0;
margin: 0;
@@ -223,9 +233,9 @@
.article__image {
display: block;
- margin: $base-margin -1rem;
+ margin: var(--base-margin) -1rem;
width: calc(100% + 2rem);
- @media #{$desktop} {
+ @media (--desktop) {
max-width: 100%;
margin-left: auto;
margin-right: auto;
@@ -234,36 +244,36 @@
.article__meta {
font-size: 14px;
- color: $gray;
+ color: var(--gray);
overflow: hidden;
width: 100%;
}
.article__meta__time {
float: left;
- @media #{$mobile} {
+ @media (--mobile) {
width: 100%;
}
}
.article__meta__categories {
float: right;
- @media #{$mobile} {
+ @media (--mobile) {
float: left;
width: 100%;
}
}
.article__meta__categories__item {
- color: $gray;
+ color: var(--gray);
&:hover {
- color: $primary-sky;
+ color: var(--primary-sky);
}
}
.article__meta__categories__separator {
margin: 0 8px;
- color: $gray;
+ color: var(--gray);
}
.article__tags {
@@ -271,18 +281,19 @@
}
.article__tags__item {
- background-color: $lighted-gray;
- color: $black;
+ background-color: var(--lighted-gray);
+ color: var(--black);
border-radius: 2px;
font-size: 0.875rem;
display: inline-block;
padding: 0 0.5rem;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
- @include transition(background-color 0.3s ease);
+ transition: background-color 0.3s ease;
+
&:hover {
- background-color: $lighted-sky;
- color: $black;
+ background-color: var(--lighted-sky);
+ color: var(--black);
}
}
@@ -290,8 +301,8 @@
position: relative;
padding: 2rem 0 2rem 8rem;
margin-bottom: 2rem;
- border-top: 1px solid $semi-white;
- border-bottom: 1px solid $semi-white;
+ border-top: 1px solid var(--semi-white);
+ border-bottom: 1px solid var(--semi-white);
}
.article__author__image {
@@ -305,10 +316,10 @@
.article__author__link {
font-size: 1.5rem;
- font-weight: $bold-font;
- color: $black;
+ font-weight: var(--bold-font);
+ color: var(--black);
&:hover {
- color: $primary-sky;
+ color: var(--primary-sky);
}
}
@@ -321,7 +332,7 @@
}
.article__author__socials__item {
- color: $gray;
+ color: var(--gray);
font-size: 1.25rem;
margin-right: 0.75rem;
}
@@ -332,10 +343,10 @@
width: 100%;
max-width: 72rem;
box-sizing: border-box;
- @media #{$desktop} {
+ @media (--desktop) {
padding: 0 0.5rem;
margin: 1rem auto;
- h3 {
+ & h3 {
margin-bottom: 0;
}
}
@@ -346,7 +357,7 @@
height: 15rem;
text-align: center;
box-sizing: border-box;
- @media #{$desktop} {
+ @media (--desktop) {
display: inline-block;
width: 33.33%;
padding: 0 0.5rem;
@@ -360,8 +371,10 @@
width: 100%;
height: 100%;
overflow: hidden;
- &:hover .related-posts__item__background {
- @include transform(scale(1.2));
+ &:hover {
+ & .related-posts__item__background {
+ transform: scale(1.2);
+ }
}
}
@@ -370,21 +383,32 @@
background-size: cover;
background-position: 50% 50%;
background-repeat: no-repeat;
- @include position(absolute, 0 0 0 0);
- @include transition(transform 0.3s ease);
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ transition: transform 0.3s ease;
}
.related-posts__item__overlay {
background-color: rgba(0, 0, 0, 0.4);
- @include position(absolute, 0 0 0 0);
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
}
.related-posts__item__title {
font-size: 1.25rem;
line-height: 1.5em;
- font-weight: $bold-font;
- color: $white;
+ font-weight: var(--bold-font);
+ color: var(--white);
padding: 0 1rem;
- @include position(absolute, 50% 0 null 0);
- @include transform(translateY(-50%));
+ position: absolute;
+ top: 50%;
+ right: 0;
+ left: 0;
+ transform: translateY(-50%);
}
diff --git a/source/css/font.css b/src/css/font.css
similarity index 100%
rename from source/css/font.css
rename to src/css/font.css
diff --git a/src/css/footer.css b/src/css/footer.css
new file mode 100644
index 0000000..95b02ed
--- /dev/null
+++ b/src/css/footer.css
@@ -0,0 +1,8 @@
+@import "./variables.css";
+
+.copyright {
+ background-color: var(--lighted-gray);
+ text-align: center;
+ padding: 2rem 0 5rem;
+ margin: 0;
+}
diff --git a/src/css/index.css b/src/css/index.css
new file mode 100644
index 0000000..7104c12
--- /dev/null
+++ b/src/css/index.css
@@ -0,0 +1,14 @@
+/* Third party styles */
+@import "normalize.css";
+
+/* Core styles */
+@import "./font.css";
+@import "./overdose.css";
+@import "./layout.css";
+@import "./menu.css";
+@import "./article.css";
+@import "./sharer.css";
+@import "./post-list.css";
+@import "./pagination.css";
+@import "./widgets.css";
+@import "./footer.css";
diff --git a/src/css/layout.css b/src/css/layout.css
new file mode 100644
index 0000000..c64adb8
--- /dev/null
+++ b/src/css/layout.css
@@ -0,0 +1,23 @@
+@import "./variables.css";
+
+.page-background {
+ z-index: -1;
+ background-color: var(--white);
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+
+.content-outer {
+ margin-top: calc(var(--menu-height) * 2);
+ @media (--desktop) {
+ margin-top: var(--menu-height);
+ }
+}
+
+.content-inner {
+ width: 100%;
+ padding: var(--base-margin) 0;
+}
diff --git a/src/css/menu.css b/src/css/menu.css
new file mode 100644
index 0000000..f60d27e
--- /dev/null
+++ b/src/css/menu.css
@@ -0,0 +1,140 @@
+@import "./variables.css";
+
+:root {
+ --icon-size: 2.5rem;
+ --icon-margin: calc((var(--menu-height) - var(--icon-size)) / 2);
+}
+
+.menu {
+ display:table-row;
+ width: 100%;
+ background-color: var(--white);
+ border-bottom: 1px solid var(--lighted-gray);
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ overflow: hidden;
+ position: absolute;
+ top: 0;
+ z-index: 3;
+ box-sizing: border-box;
+ transition: transform 0.3s ease;
+ @media (--desktop) {
+ position: fixed;
+ }
+}
+
+.menu--hide {
+ @media (--desktop) {
+ transform: translateY(calc(var(--menu-height) * -1));
+ }
+}
+
+.menu-inner {
+ width: 100%;
+ max-width: var(--container-width);
+ margin: auto;
+ padding: 0 1rem;
+ box-sizing: border-box;
+ @media (--mobile) {
+ padding: 0;
+ }
+}
+
+.menu__left-area {
+ float: left;
+ height: var(--menu-height);
+ @media (--mobile) {
+ width: 100%;
+ text-align: center;
+ border-bottom: 1px solid var(--semi-white);
+ & .menu__item {
+ float: none;
+ }
+ }
+}
+
+.menu__right-area {
+ float: right;
+ height: var(--menu-height);
+ @media (--mobile) {
+ width: 100%;
+ overflow-x: auto;
+ white-space: nowrap;
+ padding: 0 1.5rem;
+ box-sizing: border-box;
+ text-align: center;
+ }
+}
+
+.menu__item {
+ position: relative;
+ display: inline-block;
+ float: left;
+ margin-right: var(--base-margin);
+ &:last-child {
+ margin-right: 0;
+ }
+ &:after {
+ content: '';
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ height: 2px;
+ background-color: transparent;
+ transform: translateY(2px);
+ transition:
+ background-color 0.3s ease,
+ transform 0.3s ease;
+ }
+ &:hover {
+ & .menu__item__link {
+ color: var(--gray);
+ }
+ &:after {
+ background-color: var(--gray);
+ transform: translateY(0);
+ }
+ }
+ @media (--mobile) {
+ float: none;
+ }
+}
+
+.menu__item--active .menu__item__link {
+ color: var(--primary-sky);
+}
+
+.menu__item--active:after {
+ background-color: var(--primary-sky);
+ transform: translateY(0);
+}
+
+.menu__item__link {
+ color: var(--darked-gray);
+ font-size: 1rem;
+ display: inline-block;
+ height: var(--menu-height);
+ line-height: var(--menu-height);
+}
+
+.menu__item__link--brand {
+ color: var(--black);
+}
+
+.menu__item__link--brand__image {
+ width: var(--icon-size);
+ height: var(--icon-size);
+ margin: var(--icon-margin) 1rem var(--icon-margin) 0;
+ display: inline-block;
+ float: left;
+}
+
+.menu__item__link--brand__label {
+ height: var(--menu-height);
+ line-height: var(--menu-height);
+ display: inline-block;
+ float: left;
+ font-weight: var(--bold-font);
+}
diff --git a/src/css/overdose.css b/src/css/overdose.css
new file mode 100644
index 0000000..356c648
--- /dev/null
+++ b/src/css/overdose.css
@@ -0,0 +1,40 @@
+@import "./variables.css";
+
+/* Global common styles */
+html {
+ height: 100%;
+ font-size: 14px;
+ @media (--desktop) {
+ font-size: var(--em-base);
+ }
+}
+
+body {
+ display: table;
+ width: 100%;
+ height: 100%;
+ margin: 0;
+ color: var(--black);
+ line-height: 1.5em;
+ -webkit-font-smoothing: antialiased;
+ table-layout: fixed;
+}
+
+a {
+ text-decoration: none;
+ color: var(--primary-sky);
+ transition: color 0.3s ease;
+ &:hover {
+ color: var(--darked-sky);
+ }
+}
+
+hr {
+ margin: var(--base-margin) 0;
+ border: 0;
+ border-bottom: 1px solid var(--lighted-gray);
+}
+
+h1, h2, h3, h4, h5, h6 {
+ font-weight: var(--bold-font);
+}
diff --git a/src/css/pagination.css b/src/css/pagination.css
new file mode 100644
index 0000000..2272af1
--- /dev/null
+++ b/src/css/pagination.css
@@ -0,0 +1,37 @@
+@import "./variables.css";
+
+.pagination {
+ width: 100%;
+ text-align: center;
+ padding: 1rem 0;
+
+ & .current, & a {
+ display: inline-block;
+ height: 1.5rem;
+ line-height: 1.5rem;
+ padding: 0 0.25rem;
+ margin: 0 0.25rem;
+ border-bottom: 2px solid;
+ }
+
+ & .current {
+ color: var(--black);
+ }
+
+ & .space {
+ color: var(--gray);
+ }
+
+ & a {
+ color: var(--gray);
+ border-color: transparent;
+ transition:
+ border-color 0.3s ease,
+ color 0.3s ease;
+
+ &:hover {
+ color: var(--primary-sky);
+ border-color: var(--primary-sky);
+ }
+ }
+}
diff --git a/source/css/post-list.scss b/src/css/post-list.css
similarity index 70%
rename from source/css/post-list.scss
rename to src/css/post-list.css
index 206af44..8af6c38 100644
--- a/source/css/post-list.scss
+++ b/src/css/post-list.css
@@ -1,10 +1,9 @@
-@import "bourbon";
-@import "variables";
+@import "./variables.css";
.post-list {
position: relative;
width: 100%;
- max-width: $content-width;
+ max-width: var(--content-width);
margin: auto;
padding: 0 1rem;
box-sizing: border-box;
@@ -13,7 +12,7 @@
.post-list__item {
overflow: hidden;
padding: 1rem 0;
- border-bottom: 1px solid $semi-white;
+ border-bottom: 1px solid var(--semi-white);
&:last-child {
border: 0;
}
@@ -39,17 +38,23 @@
position: relative;
width: 100%;
padding-top: 75%;
- &:hover .post-list__item__link__background {
- @include transform(scale(1.2));
+ &:hover {
+ & .post-list__item__link__background {
+ transform: scale(1.2);
+ }
}
}
.post-list__item__link__background {
- @include position(absolute, 0 0 0 0);
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
- @include transition(transform 0.3s ease);
+ transition: transform 0.3s ease;
}
.post-list__item__meta {
@@ -57,36 +62,39 @@
}
.post-list__item__meta__link {
- color: $gray;
+ color: var(--gray);
&:hover {
- color: $primary-sky;
+ color: var(--primary-sky);
}
}
.post-list__item__meta__label {
- color: $gray;
+ color: var(--gray);
margin: 0 0.5rem;
}
.post-list__item__title {
margin: 0.5rem 0;
- @media #{$mobile} {
+
+ @media (--mobile) {
height: 1.5rem;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
- a {
- color: $black;
+
+ & a {
+ color: var(--black);
&:hover {
- color: $primary-sky;
+ color: var(--primary-sky);
}
}
}
.post-list__item__description {
margin: 0;
- @media #{$mobile} {
+
+ @media (--mobile) {
height: 1.5rem;
text-overflow: ellipsis;
overflow: hidden;
diff --git a/source/css/profile.scss b/src/css/profile.css
similarity index 71%
rename from source/css/profile.scss
rename to src/css/profile.css
index fc11aa0..dc909be 100644
--- a/source/css/profile.scss
+++ b/src/css/profile.css
@@ -1,8 +1,8 @@
-@import "bourbon";
-@import "variables";
-@import "custom-mixin";
+@import "./variables.css";
-$profile-image-size: 80px;
+:root {
+ --profile-image-size: 80px;
+}
.profile {
position: relative;
@@ -10,8 +10,8 @@ $profile-image-size: 80px;
}
.profile__image {
- width: $profile-image-size;
- height: $profile-image-size;
+ width: var(--profile-image-size);
+ height: var(--profile-image-size);
border-radius: 50%;
display: block;
margin: auto;
@@ -25,13 +25,13 @@ $profile-image-size: 80px;
.profile__meta__author {
font-size: 24px;
- color: $black;
+ color: var(--black);
display: block;
}
.profile__meta__description {
font-size: 14px;
- color: $gray;
+ color: var(--gray);
line-height: 1.4em;
margin-top: 4px;
}
@@ -43,6 +43,6 @@ $profile-image-size: 80px;
.profile__social-links__item {
font-size: 24px;
- color: $gray;
+ color: var(--gray);
margin: 0 12px;
}
diff --git a/source/css/recent-posts.scss b/src/css/recent-posts.css
similarity index 70%
rename from source/css/recent-posts.scss
rename to src/css/recent-posts.css
index 5559219..f44c9a5 100644
--- a/source/css/recent-posts.scss
+++ b/src/css/recent-posts.css
@@ -1,7 +1,8 @@
-@import "bourbon";
-@import "variables";
+@import "./variables.css";
-$post-image-size: 64px;
+:root {
+ --post-image-size: 64px;
+}
.recent-posts {
padding-left: 0;
@@ -9,9 +10,9 @@ $post-image-size: 64px;
.recent-posts__item {
position: relative;
- height: $post-image-size;
+ height: var(--post-image-size);
margin-top: 12px;
- padding-left: $post-image-size;
+ padding-left: var(--post-image-size);
}
.recent-posts__item__image {
@@ -23,15 +24,16 @@ $post-image-size: 64px;
}
.recent-posts__item__image__inner {
- width: $post-image-size;
- height: $post-image-size;
+ width: var(--post-image-size);
+ height: var(--post-image-size);
float: left;
background-size: cover;
background-position: 50% 50%;
display: inline-block;
- @include transition(transform 0.3s ease);
+ transition: transform 0.3s ease;
+
&:hover {
- @include transform(scale(1.5));
+ transform: scale(1.5);
}
}
@@ -44,13 +46,13 @@ $post-image-size: 64px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
- color: $black;
+ color: var(--black);
margin-bottom: 4px;
}
.recent-posts__item__meta__time {
font-size: 14px;
- color: $gray;
+ color: var(--gray);
}
.recent-posts__item__meta__link,
diff --git a/src/css/sharer.css b/src/css/sharer.css
new file mode 100644
index 0000000..ae16864
--- /dev/null
+++ b/src/css/sharer.css
@@ -0,0 +1,61 @@
+@import "./variables.css";
+
+:root {
+ --sharer-height: 3rem;
+
+ --color-facebook: #3B5998;
+ --color-twitter: #00ACED;
+ --color-pinterest: #B5071A;
+ --color-pocket: #EF4056;
+}
+
+.sharer {
+ position: fixed;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ height: var(--sharer-height);
+ background-color: #fff;
+ z-index: 2;
+ border-top: 1px solid var(--lighted-gray);
+ transition: transform 0.3s ease;
+}
+
+.sharer--hide {
+ transform: translateY(var(--sharer-height));
+}
+
+.sharer-inner {
+ padding: 0 1rem;
+ max-width: var(--content-width);
+ margin: auto;
+}
+
+.sharer__right {
+ float: right;
+}
+
+.sharer__item {
+ background: none;
+ border: 0;
+ padding: 0;
+ margin-left: 1.5rem;
+ font-size: 1.5rem;
+ line-height: var(--sharer-height);
+ color: var(--gray);
+ cursor: pointer;
+ transition: color 0.3s ease;
+}
+
+#sharer-facebook:hover {
+ color: var(--color-facebook);
+}
+#sharer-twitter:hover {
+ color: var(--color-twitter);
+}
+#sharer-pinterest:hover {
+ color: var(--color-pinterest);
+}
+#sharer-pocket:hover {
+ color: var(--color-pocket);
+}
diff --git a/src/css/variables.css b/src/css/variables.css
new file mode 100644
index 0000000..4a5153f
--- /dev/null
+++ b/src/css/variables.css
@@ -0,0 +1,27 @@
+:root {
+ /* Colors */
+ --white: #FFF;
+ --semi-white: #F6F6F6;
+ --black: #454545;
+ --bold-black: #222;
+ --gray: #999;
+ --darked-gray: #666;
+ --lighted-gray: #EDEDED;
+ --primary-sky: rgb(89, 171, 227);
+ --darked-sky: color(var(--primary-sky) shade(20%));
+ --lighted-sky: color(var(--primary-sky) tint(20%));
+ --secondary-yellow: #E28F0B;
+
+ /* Pixels */
+ --em-base: 16px;
+
+ --base-margin: 1.5rem;
+ --menu-height: 4rem;
+ --content-width: 45rem;
+ --container-width: 72rem;
+
+ --bold-font: 500;
+
+ @custom-media --mobile only screen and (max-width: 624px);
+ @custom-media --desktop only screen and (min-width: 624px);
+}
\ No newline at end of file
diff --git a/source/css/widgets.scss b/src/css/widgets.css
similarity index 75%
rename from source/css/widgets.scss
rename to src/css/widgets.css
index 5737e8e..197794a 100644
--- a/source/css/widgets.scss
+++ b/src/css/widgets.css
@@ -1,17 +1,16 @@
-@import "bourbon";
-@import "variables";
+@import "./variables.css";
.widgets {
- background-color: $semi-white;
+ background-color: var(--semi-white);
}
.widgets-inner {
width: 100%;
- max-width: $container-width;
+ max-width: var(--container-width);
margin: auto;
box-sizing: border-box;
overflow: hidden;
- @media #{$desktop} {
+ @media (--desktop) {
padding: 0 0.5rem;
text-align: center;
}
@@ -23,7 +22,8 @@
box-sizing: border-box;
margin: 1rem 0;
padding: 0 1rem;
- @media #{$desktop} {
+
+ @media (--desktop) {
width: 33.33%;
padding: 0 0.5rem;
display: inline-block;
@@ -32,13 +32,15 @@
text-align: left;
}
- // Widgets common styles
- ul {
+ /* Widgets common styles */
+ & ul {
padding: 0;
list-style: none;
- ul {
+
+ & ul {
padding-left: 1rem;
- li:before {
+
+ & li:before {
float: left;
padding-right: 0.25rem;
content: '-';
@@ -46,15 +48,15 @@
}
}
- li {
+ & li {
overflow: hidden;
width: 100%;
}
- a {
- color: $darked-gray;
+ & a {
+ color: var(--darked-gray);
&:hover {
- color: $primary-sky;
+ color: var(--primary-sky);
}
}
}
@@ -71,6 +73,7 @@
font-size: 0.75em;
padding-left: 0.5em;
float: left;
+
&:before {
content: '(';
}
diff --git a/yarn.lock b/yarn.lock
new file mode 100644
index 0000000..8cc9d1d
--- /dev/null
+++ b/yarn.lock
@@ -0,0 +1,2524 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+abbrev@1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
+
+ajv@^4.9.1:
+ version "4.11.8"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
+ dependencies:
+ co "^4.6.0"
+ json-stable-stringify "^1.0.1"
+
+align-text@^0.1.1, align-text@^0.1.3:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
+ dependencies:
+ kind-of "^3.0.2"
+ longest "^1.0.1"
+ repeat-string "^1.5.2"
+
+alphanum-sort@^1.0.1, alphanum-sort@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
+
+ansi-regex@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
+
+ansi-regex@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
+
+ansi-styles@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
+
+ansi-styles@^3.1.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
+ dependencies:
+ color-convert "^1.9.0"
+
+anymatch@^1.3.0:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
+ dependencies:
+ micromatch "^2.1.5"
+ normalize-path "^2.0.0"
+
+aproba@^1.0.3:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
+
+are-we-there-yet@~1.1.2:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
+ dependencies:
+ delegates "^1.0.0"
+ readable-stream "^2.0.6"
+
+argparse@^1.0.7:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
+ dependencies:
+ sprintf-js "~1.0.2"
+
+arr-diff@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
+ dependencies:
+ arr-flatten "^1.0.1"
+
+arr-flatten@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
+
+array-union@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
+ dependencies:
+ array-uniq "^1.0.1"
+
+array-uniq@^1.0.1:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
+
+array-unique@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
+
+asn1@~0.2.3:
+ version "0.2.3"
+ resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
+
+assert-plus@1.0.0, assert-plus@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
+
+assert-plus@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
+
+async-each@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
+
+asynckit@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
+
+autoprefixer@^6.3.1:
+ version "6.7.7"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014"
+ dependencies:
+ browserslist "^1.7.6"
+ caniuse-db "^1.0.30000634"
+ normalize-range "^0.1.2"
+ num2fraction "^1.2.2"
+ postcss "^5.2.16"
+ postcss-value-parser "^3.2.3"
+
+autoprefixer@^7.1.1:
+ version "7.1.4"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.1.4.tgz#960847dbaa4016bc8e8e52ec891cbf8f1257a748"
+ dependencies:
+ browserslist "^2.4.0"
+ caniuse-lite "^1.0.30000726"
+ normalize-range "^0.1.2"
+ num2fraction "^1.2.2"
+ postcss "^6.0.11"
+ postcss-value-parser "^3.2.3"
+
+aws-sign2@~0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
+
+aws4@^1.2.1:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
+
+babel-runtime@^6.23.0:
+ version "6.26.0"
+ resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
+ dependencies:
+ core-js "^2.4.0"
+ regenerator-runtime "^0.11.0"
+
+balanced-match@0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.1.0.tgz#b504bd05869b39259dd0c5efc35d843176dccc4a"
+
+balanced-match@^0.4.2:
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
+
+balanced-match@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
+
+bcrypt-pbkdf@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
+ dependencies:
+ tweetnacl "^0.14.3"
+
+binary-extensions@^1.0.0:
+ version "1.10.0"
+ resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0"
+
+block-stream@*:
+ version "0.0.9"
+ resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
+ dependencies:
+ inherits "~2.0.0"
+
+boom@2.x.x:
+ version "2.10.1"
+ resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
+ dependencies:
+ hoek "2.x.x"
+
+brace-expansion@^1.1.7:
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
+ dependencies:
+ balanced-match "^1.0.0"
+ concat-map "0.0.1"
+
+braces@^1.8.2:
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
+ dependencies:
+ expand-range "^1.8.1"
+ preserve "^0.2.0"
+ repeat-element "^1.1.2"
+
+browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6:
+ version "1.7.7"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9"
+ dependencies:
+ caniuse-db "^1.0.30000639"
+ electron-to-chromium "^1.2.7"
+
+browserslist@^2.0.0, browserslist@^2.4.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.4.0.tgz#693ee93d01e66468a6348da5498e011f578f87f8"
+ dependencies:
+ caniuse-lite "^1.0.30000718"
+ electron-to-chromium "^1.3.18"
+
+builtin-modules@^1.0.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
+
+camelcase@^1.0.2:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
+
+camelcase@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
+
+caniuse-api@^1.5.2:
+ version "1.6.1"
+ resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c"
+ dependencies:
+ browserslist "^1.3.6"
+ caniuse-db "^1.0.30000529"
+ lodash.memoize "^4.1.2"
+ lodash.uniq "^4.5.0"
+
+caniuse-api@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-2.0.0.tgz#b1ddb5a5966b16f48dc4998444d4bbc6c7d9d834"
+ dependencies:
+ browserslist "^2.0.0"
+ caniuse-lite "^1.0.0"
+ lodash.memoize "^4.1.2"
+ lodash.uniq "^4.5.0"
+
+caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
+ version "1.0.30000744"
+ resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000744.tgz#00758ff7dd5f7138d34a15608dccf71a59656ffe"
+
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000718, caniuse-lite@^1.0.30000726:
+ version "1.0.30000744"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000744.tgz#860fa5c83ba34fe619397d607f30bb474821671b"
+
+caseless@~0.12.0:
+ version "0.12.0"
+ resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
+
+center-align@^0.1.1:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
+ dependencies:
+ align-text "^0.1.3"
+ lazy-cache "^1.0.3"
+
+chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
+ dependencies:
+ ansi-styles "^2.2.1"
+ escape-string-regexp "^1.0.2"
+ has-ansi "^2.0.0"
+ strip-ansi "^3.0.0"
+ supports-color "^2.0.0"
+
+chalk@^2.0.1, chalk@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e"
+ dependencies:
+ ansi-styles "^3.1.0"
+ escape-string-regexp "^1.0.5"
+ supports-color "^4.0.0"
+
+chokidar@^1.6.1:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
+ dependencies:
+ anymatch "^1.3.0"
+ async-each "^1.0.0"
+ glob-parent "^2.0.0"
+ inherits "^2.0.1"
+ is-binary-path "^1.0.0"
+ is-glob "^2.0.0"
+ path-is-absolute "^1.0.0"
+ readdirp "^2.0.0"
+ optionalDependencies:
+ fsevents "^1.0.0"
+
+ci-info@^1.0.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a"
+
+clap@^1.0.9:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51"
+ dependencies:
+ chalk "^1.1.3"
+
+cli-cursor@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
+ dependencies:
+ restore-cursor "^2.0.0"
+
+cli-spinners@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.1.0.tgz#f1847b168844d917a671eb9d147e3df497c90d06"
+
+cliui@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
+ dependencies:
+ center-align "^0.1.1"
+ right-align "^0.1.1"
+ wordwrap "0.0.2"
+
+cliui@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
+ dependencies:
+ string-width "^1.0.1"
+ strip-ansi "^3.0.1"
+ wrap-ansi "^2.0.0"
+
+clone@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149"
+
+co@^4.6.0:
+ version "4.6.0"
+ resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
+
+coa@~1.0.1:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd"
+ dependencies:
+ q "^1.1.2"
+
+code-point-at@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
+
+color-convert@^1.3.0, color-convert@^1.8.2, color-convert@^1.9.0:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
+ dependencies:
+ color-name "^1.1.1"
+
+color-name@^1.0.0, color-name@^1.1.1:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
+
+color-string@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991"
+ dependencies:
+ color-name "^1.0.0"
+
+color-string@^1.4.0:
+ version "1.5.2"
+ resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.2.tgz#26e45814bc3c9a7cbd6751648a41434514a773a9"
+ dependencies:
+ color-name "^1.0.0"
+ simple-swizzle "^0.2.2"
+
+color@^0.11.0:
+ version "0.11.4"
+ resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764"
+ dependencies:
+ clone "^1.0.2"
+ color-convert "^1.3.0"
+ color-string "^0.3.0"
+
+color@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/color/-/color-1.0.3.tgz#e48e832d85f14ef694fb468811c2d5cfe729b55d"
+ dependencies:
+ color-convert "^1.8.2"
+ color-string "^1.4.0"
+
+colormin@^1.0.5:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133"
+ dependencies:
+ color "^0.11.0"
+ css-color-names "0.0.4"
+ has "^1.0.1"
+
+colors@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
+
+combined-stream@^1.0.5, combined-stream@~1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
+ dependencies:
+ delayed-stream "~1.0.0"
+
+concat-map@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+
+console-control-strings@^1.0.0, console-control-strings@~1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
+
+core-js@^2.4.0:
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b"
+
+core-util-is@1.0.2, core-util-is@~1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
+
+cosmiconfig@^2.1.0, cosmiconfig@^2.1.1:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892"
+ dependencies:
+ is-directory "^0.3.1"
+ js-yaml "^3.4.3"
+ minimist "^1.2.0"
+ object-assign "^4.1.0"
+ os-homedir "^1.0.1"
+ parse-json "^2.2.0"
+ require-from-string "^1.1.0"
+
+cross-spawn@^5.0.1:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
+ dependencies:
+ lru-cache "^4.0.1"
+ shebang-command "^1.2.0"
+ which "^1.2.9"
+
+cryptiles@2.x.x:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
+ dependencies:
+ boom "2.x.x"
+
+css-color-function@^1.3.0:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/css-color-function/-/css-color-function-1.3.2.tgz#4ba3e892fee9794644e6b0e1fd1df7811cd75502"
+ dependencies:
+ balanced-match "0.1.0"
+ color "^0.11.0"
+ debug "^3.1.0"
+ rgb "~0.1.0"
+
+css-color-names@0.0.4:
+ version "0.0.4"
+ resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
+
+css-unit-converter@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996"
+
+cssnano@^3.10.0:
+ version "3.10.0"
+ resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"
+ dependencies:
+ autoprefixer "^6.3.1"
+ decamelize "^1.1.2"
+ defined "^1.0.0"
+ has "^1.0.1"
+ object-assign "^4.0.1"
+ postcss "^5.0.14"
+ postcss-calc "^5.2.0"
+ postcss-colormin "^2.1.8"
+ postcss-convert-values "^2.3.4"
+ postcss-discard-comments "^2.0.4"
+ postcss-discard-duplicates "^2.0.1"
+ postcss-discard-empty "^2.0.1"
+ postcss-discard-overridden "^0.1.1"
+ postcss-discard-unused "^2.2.1"
+ postcss-filter-plugins "^2.0.0"
+ postcss-merge-idents "^2.1.5"
+ postcss-merge-longhand "^2.0.1"
+ postcss-merge-rules "^2.0.3"
+ postcss-minify-font-values "^1.0.2"
+ postcss-minify-gradients "^1.0.1"
+ postcss-minify-params "^1.0.4"
+ postcss-minify-selectors "^2.0.4"
+ postcss-normalize-charset "^1.1.0"
+ postcss-normalize-url "^3.0.7"
+ postcss-ordered-values "^2.1.0"
+ postcss-reduce-idents "^2.2.2"
+ postcss-reduce-initial "^1.0.0"
+ postcss-reduce-transforms "^1.0.3"
+ postcss-svgo "^2.1.1"
+ postcss-unique-selectors "^2.0.2"
+ postcss-value-parser "^3.2.3"
+ postcss-zindex "^2.0.1"
+
+csso@~2.3.1:
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85"
+ dependencies:
+ clap "^1.0.9"
+ source-map "^0.5.3"
+
+dashdash@^1.12.0:
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
+ dependencies:
+ assert-plus "^1.0.0"
+
+debug@^2.2.0:
+ version "2.6.9"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+ dependencies:
+ ms "2.0.0"
+
+debug@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
+ dependencies:
+ ms "2.0.0"
+
+decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
+
+deep-extend@~0.4.0:
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
+
+defined@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
+
+delayed-stream@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
+
+delegates@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
+
+dependency-graph@^0.5.0:
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.5.0.tgz#71edf7945dbba86c1b19ac982b6afb6476b56dd5"
+
+ecc-jsbn@~0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
+ dependencies:
+ jsbn "~0.1.0"
+
+electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.18:
+ version "1.3.24"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.24.tgz#9b7b88bb05ceb9fa016a177833cc2dde388f21b6"
+
+error-ex@^1.2.0:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
+ dependencies:
+ is-arrayish "^0.2.1"
+
+escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+
+esprima@^2.6.0:
+ version "2.7.3"
+ resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
+
+esprima@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
+
+execa@^0.7.0:
+ version "0.7.0"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
+ dependencies:
+ cross-spawn "^5.0.1"
+ get-stream "^3.0.0"
+ is-stream "^1.1.0"
+ npm-run-path "^2.0.0"
+ p-finally "^1.0.0"
+ signal-exit "^3.0.0"
+ strip-eof "^1.0.0"
+
+expand-brackets@^0.1.4:
+ version "0.1.5"
+ resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
+ dependencies:
+ is-posix-bracket "^0.1.0"
+
+expand-range@^1.8.1:
+ version "1.8.2"
+ resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
+ dependencies:
+ fill-range "^2.1.0"
+
+extend@~3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
+
+extglob@^0.3.1:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
+ dependencies:
+ is-extglob "^1.0.0"
+
+extsprintf@1.3.0, extsprintf@^1.2.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
+
+filename-regex@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
+
+fill-range@^2.1.0:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
+ dependencies:
+ is-number "^2.1.0"
+ isobject "^2.0.0"
+ randomatic "^1.1.3"
+ repeat-element "^1.1.2"
+ repeat-string "^1.5.2"
+
+find-up@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
+ dependencies:
+ locate-path "^2.0.0"
+
+flatten@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782"
+
+for-in@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
+
+for-own@^0.1.4:
+ version "0.1.5"
+ resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
+ dependencies:
+ for-in "^1.0.1"
+
+forever-agent@~0.6.1:
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
+
+form-data@~2.1.1:
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
+ dependencies:
+ asynckit "^0.4.0"
+ combined-stream "^1.0.5"
+ mime-types "^2.1.12"
+
+fs-extra@^4.0.1:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.2.tgz#f91704c53d1b461f893452b0c307d9997647ab6b"
+ dependencies:
+ graceful-fs "^4.1.2"
+ jsonfile "^4.0.0"
+ universalify "^0.1.0"
+
+fs.realpath@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+
+fsevents@^1.0.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"
+ dependencies:
+ nan "^2.3.0"
+ node-pre-gyp "^0.6.36"
+
+fstream-ignore@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
+ dependencies:
+ fstream "^1.0.0"
+ inherits "2"
+ minimatch "^3.0.0"
+
+fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
+ dependencies:
+ graceful-fs "^4.1.2"
+ inherits "~2.0.0"
+ mkdirp ">=0.5 0"
+ rimraf "2"
+
+function-bind@^1.0.2:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
+
+gauge@~2.7.3:
+ version "2.7.4"
+ resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
+ dependencies:
+ aproba "^1.0.3"
+ console-control-strings "^1.0.0"
+ has-unicode "^2.0.0"
+ object-assign "^4.1.0"
+ signal-exit "^3.0.0"
+ string-width "^1.0.1"
+ strip-ansi "^3.0.1"
+ wide-align "^1.1.0"
+
+get-caller-file@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
+
+get-stdin@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
+
+get-stream@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
+
+getpass@^0.1.1:
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
+ dependencies:
+ assert-plus "^1.0.0"
+
+glob-base@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
+ dependencies:
+ glob-parent "^2.0.0"
+ is-glob "^2.0.0"
+
+glob-parent@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
+ dependencies:
+ is-glob "^2.0.0"
+
+glob@^7.0.3, glob@^7.0.5:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.0.4"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
+globby@^6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
+ dependencies:
+ array-union "^1.0.1"
+ glob "^7.0.3"
+ object-assign "^4.0.1"
+ pify "^2.0.0"
+ pinkie-promise "^2.0.0"
+
+graceful-fs@^4.1.2, graceful-fs@^4.1.6:
+ version "4.1.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
+
+har-schema@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
+
+har-validator@~4.2.1:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
+ dependencies:
+ ajv "^4.9.1"
+ har-schema "^1.0.5"
+
+has-ansi@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
+ dependencies:
+ ansi-regex "^2.0.0"
+
+has-flag@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
+
+has-flag@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
+
+has-unicode@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
+
+has@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
+ dependencies:
+ function-bind "^1.0.2"
+
+hawk@3.1.3, hawk@~3.1.3:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
+ dependencies:
+ boom "2.x.x"
+ cryptiles "2.x.x"
+ hoek "2.x.x"
+ sntp "1.x.x"
+
+hoek@2.x.x:
+ version "2.16.3"
+ resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
+
+hosted-git-info@^2.1.4:
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
+
+html-comment-regex@^1.1.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e"
+
+http-signature@~1.1.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
+ dependencies:
+ assert-plus "^0.2.0"
+ jsprim "^1.2.2"
+ sshpk "^1.7.0"
+
+husky@^0.14.3:
+ version "0.14.3"
+ resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3"
+ dependencies:
+ is-ci "^1.0.10"
+ normalize-path "^1.0.0"
+ strip-indent "^2.0.0"
+
+indexes-of@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
+
+inflight@^1.0.4:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+ dependencies:
+ once "^1.3.0"
+ wrappy "1"
+
+inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+
+ini@~1.3.0:
+ version "1.3.4"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
+
+invert-kv@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
+
+is-absolute-url@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
+
+is-arrayish@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
+
+is-arrayish@^0.3.1:
+ version "0.3.1"
+ resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.1.tgz#c2dfc386abaa0c3e33c48db3fe87059e69065efd"
+
+is-binary-path@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
+ dependencies:
+ binary-extensions "^1.0.0"
+
+is-buffer@^1.1.5:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
+
+is-builtin-module@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
+ dependencies:
+ builtin-modules "^1.0.0"
+
+is-ci@^1.0.10:
+ version "1.0.10"
+ resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e"
+ dependencies:
+ ci-info "^1.0.0"
+
+is-directory@^0.3.1:
+ version "0.3.1"
+ resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
+
+is-dotfile@^1.0.0:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
+
+is-equal-shallow@^0.1.3:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
+ dependencies:
+ is-primitive "^2.0.0"
+
+is-extendable@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
+
+is-extglob@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
+
+is-fullwidth-code-point@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
+ dependencies:
+ number-is-nan "^1.0.0"
+
+is-fullwidth-code-point@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
+
+is-glob@^2.0.0, is-glob@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
+ dependencies:
+ is-extglob "^1.0.0"
+
+is-number@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
+ dependencies:
+ kind-of "^3.0.2"
+
+is-number@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
+ dependencies:
+ kind-of "^3.0.2"
+
+is-plain-obj@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
+
+is-posix-bracket@^0.1.0:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
+
+is-primitive@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
+
+is-stream@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
+
+is-svg@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9"
+ dependencies:
+ html-comment-regex "^1.1.0"
+
+is-typedarray@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
+
+isarray@1.0.0, isarray@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
+
+isexe@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+
+isnumeric@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/isnumeric/-/isnumeric-0.2.0.tgz#a2347ba360de19e33d0ffd590fddf7755cbf2e64"
+
+isobject@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
+ dependencies:
+ isarray "1.0.0"
+
+isstream@~0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
+
+js-base64@^2.1.9:
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.3.2.tgz#a79a923666372b580f8e27f51845c6f7e8fbfbaf"
+
+js-yaml@^3.4.3:
+ version "3.10.0"
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
+ dependencies:
+ argparse "^1.0.7"
+ esprima "^4.0.0"
+
+js-yaml@~3.7.0:
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
+ dependencies:
+ argparse "^1.0.7"
+ esprima "^2.6.0"
+
+jsbn@~0.1.0:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
+
+json-schema@0.2.3:
+ version "0.2.3"
+ resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
+
+json-stable-stringify@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
+ dependencies:
+ jsonify "~0.0.0"
+
+json-stringify-safe@~5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
+
+jsonfile@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
+ optionalDependencies:
+ graceful-fs "^4.1.6"
+
+jsonify@~0.0.0:
+ version "0.0.0"
+ resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
+
+jsprim@^1.2.2:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
+ dependencies:
+ assert-plus "1.0.0"
+ extsprintf "1.3.0"
+ json-schema "0.2.3"
+ verror "1.10.0"
+
+kind-of@^3.0.2:
+ version "3.2.2"
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
+ dependencies:
+ is-buffer "^1.1.5"
+
+kind-of@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
+ dependencies:
+ is-buffer "^1.1.5"
+
+lazy-cache@^1.0.3:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
+
+lcid@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
+ dependencies:
+ invert-kv "^1.0.0"
+
+load-json-file@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
+ dependencies:
+ graceful-fs "^4.1.2"
+ parse-json "^2.2.0"
+ pify "^2.0.0"
+ strip-bom "^3.0.0"
+
+locate-path@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
+ dependencies:
+ p-locate "^2.0.0"
+ path-exists "^3.0.0"
+
+lodash._reinterpolate@~3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
+
+lodash.memoize@^4.1.2:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
+
+lodash.template@^4.2.4:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0"
+ dependencies:
+ lodash._reinterpolate "~3.0.0"
+ lodash.templatesettings "^4.0.0"
+
+lodash.templatesettings@^4.0.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316"
+ dependencies:
+ lodash._reinterpolate "~3.0.0"
+
+lodash.uniq@^4.5.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
+
+lodash@^4.17.4:
+ version "4.17.4"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
+
+log-symbols@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
+ dependencies:
+ chalk "^1.0.0"
+
+log-symbols@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.1.0.tgz#f35fa60e278832b538dc4dddcbb478a45d3e3be6"
+ dependencies:
+ chalk "^2.0.1"
+
+longest@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
+
+lru-cache@^4.0.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
+ dependencies:
+ pseudomap "^1.0.2"
+ yallist "^2.1.2"
+
+macaddress@^0.2.8:
+ version "0.2.8"
+ resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12"
+
+math-expression-evaluator@^1.2.14:
+ version "1.2.17"
+ resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac"
+
+mem@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
+ dependencies:
+ mimic-fn "^1.0.0"
+
+micromatch@^2.1.5:
+ version "2.3.11"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
+ dependencies:
+ arr-diff "^2.0.0"
+ array-unique "^0.2.1"
+ braces "^1.8.2"
+ expand-brackets "^0.1.4"
+ extglob "^0.3.1"
+ filename-regex "^2.0.0"
+ is-extglob "^1.0.0"
+ is-glob "^2.0.1"
+ kind-of "^3.0.2"
+ normalize-path "^2.0.1"
+ object.omit "^2.0.0"
+ parse-glob "^3.0.4"
+ regex-cache "^0.4.2"
+
+mime-db@~1.30.0:
+ version "1.30.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
+
+mime-types@^2.1.12, mime-types@~2.1.7:
+ version "2.1.17"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
+ dependencies:
+ mime-db "~1.30.0"
+
+mimic-fn@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
+
+minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
+ dependencies:
+ brace-expansion "^1.1.7"
+
+minimist@0.0.8:
+ version "0.0.8"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
+
+minimist@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
+
+"mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.1:
+ version "0.5.1"
+ resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
+ dependencies:
+ minimist "0.0.8"
+
+ms@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+
+nan@^2.3.0:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46"
+
+node-pre-gyp@^0.6.36:
+ version "0.6.38"
+ resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d"
+ dependencies:
+ hawk "3.1.3"
+ mkdirp "^0.5.1"
+ nopt "^4.0.1"
+ npmlog "^4.0.2"
+ rc "^1.1.7"
+ request "2.81.0"
+ rimraf "^2.6.1"
+ semver "^5.3.0"
+ tar "^2.2.1"
+ tar-pack "^3.4.0"
+
+nopt@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
+ dependencies:
+ abbrev "1"
+ osenv "^0.1.4"
+
+normalize-package-data@^2.3.2:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
+ dependencies:
+ hosted-git-info "^2.1.4"
+ is-builtin-module "^1.0.0"
+ semver "2 || 3 || 4 || 5"
+ validate-npm-package-license "^3.0.1"
+
+normalize-path@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379"
+
+normalize-path@^2.0.0, normalize-path@^2.0.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
+ dependencies:
+ remove-trailing-separator "^1.0.1"
+
+normalize-range@^0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
+
+normalize-url@^1.4.0:
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
+ dependencies:
+ object-assign "^4.0.1"
+ prepend-http "^1.0.0"
+ query-string "^4.1.0"
+ sort-keys "^1.0.0"
+
+normalize.css@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-7.0.0.tgz#abfb1dd82470674e0322b53ceb1aaf412938e4bf"
+
+npm-run-path@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
+ dependencies:
+ path-key "^2.0.0"
+
+npmlog@^4.0.2:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
+ dependencies:
+ are-we-there-yet "~1.1.2"
+ console-control-strings "~1.1.0"
+ gauge "~2.7.3"
+ set-blocking "~2.0.0"
+
+num2fraction@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
+
+number-is-nan@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
+
+oauth-sign@~0.8.1:
+ version "0.8.2"
+ resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
+
+object-assign@^4.0.1, object-assign@^4.1.0:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+
+object.omit@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
+ dependencies:
+ for-own "^0.1.4"
+ is-extendable "^0.1.1"
+
+once@^1.3.0, once@^1.3.3:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+ dependencies:
+ wrappy "1"
+
+onecolor@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/onecolor/-/onecolor-3.0.4.tgz#75a46f80da6c7aaa5b4daae17a47198bd9652494"
+
+onetime@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
+ dependencies:
+ mimic-fn "^1.0.0"
+
+ora@^1.1.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/ora/-/ora-1.3.0.tgz#80078dd2b92a934af66a3ad72a5b910694ede51a"
+ dependencies:
+ chalk "^1.1.1"
+ cli-cursor "^2.1.0"
+ cli-spinners "^1.0.0"
+ log-symbols "^1.0.2"
+
+os-homedir@^1.0.0, os-homedir@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
+
+os-locale@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
+ dependencies:
+ execa "^0.7.0"
+ lcid "^1.0.0"
+ mem "^1.1.0"
+
+os-tmpdir@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
+
+osenv@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
+ dependencies:
+ os-homedir "^1.0.0"
+ os-tmpdir "^1.0.0"
+
+p-finally@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
+
+p-limit@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
+
+p-locate@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
+ dependencies:
+ p-limit "^1.1.0"
+
+parse-glob@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
+ dependencies:
+ glob-base "^0.3.0"
+ is-dotfile "^1.0.0"
+ is-extglob "^1.0.0"
+ is-glob "^2.0.0"
+
+parse-json@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
+ dependencies:
+ error-ex "^1.2.0"
+
+path-exists@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
+
+path-is-absolute@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+
+path-key@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
+
+path-parse@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
+
+path-type@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
+ dependencies:
+ pify "^2.0.0"
+
+performance-now@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
+
+pify@^2.0.0, pify@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
+
+pinkie-promise@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
+ dependencies:
+ pinkie "^2.0.0"
+
+pinkie@^2.0.0:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
+
+pixrem@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/pixrem/-/pixrem-4.0.1.tgz#2da4a1de6ec4423c5fc3794e930b81d4490ec686"
+ dependencies:
+ browserslist "^2.0.0"
+ postcss "^6.0.0"
+ reduce-css-calc "^1.2.7"
+
+pleeease-filters@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/pleeease-filters/-/pleeease-filters-4.0.0.tgz#6632b2fb05648d2758d865384fbced79e1ccaec7"
+ dependencies:
+ onecolor "^3.0.4"
+ postcss "^6.0.1"
+
+postcss-apply@^0.8.0:
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/postcss-apply/-/postcss-apply-0.8.0.tgz#14e544bbb5cb6f1c1e048857965d79ae066b1343"
+ dependencies:
+ babel-runtime "^6.23.0"
+ balanced-match "^0.4.2"
+ postcss "^6.0.0"
+
+postcss-attribute-case-insensitive@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-2.0.0.tgz#94dc422c8f90997f16bd33a3654bbbec084963b4"
+ dependencies:
+ postcss "^6.0.0"
+ postcss-selector-parser "^2.2.3"
+
+postcss-calc@^5.2.0:
+ version "5.3.1"
+ resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e"
+ dependencies:
+ postcss "^5.0.2"
+ postcss-message-helpers "^2.0.0"
+ reduce-css-calc "^1.2.6"
+
+postcss-calc@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-6.0.0.tgz#b681b279c6d24fbe0e33ed9045803705445d613b"
+ dependencies:
+ css-unit-converter "^1.1.1"
+ postcss "^6.0.0"
+ postcss-selector-parser "^2.2.2"
+ reduce-css-calc "^2.0.0"
+
+postcss-cli@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-4.1.1.tgz#b94bd8fffbb7ac1f62f2607e78fc9397f7f63a5d"
+ dependencies:
+ chalk "^2.1.0"
+ chokidar "^1.6.1"
+ dependency-graph "^0.5.0"
+ fs-extra "^4.0.1"
+ get-stdin "^5.0.1"
+ globby "^6.1.0"
+ ora "^1.1.0"
+ postcss "^6.0.1"
+ postcss-load-config "^1.1.0"
+ postcss-reporter "^5.0.0"
+ pretty-hrtime "^1.0.3"
+ read-cache "^1.0.0"
+ yargs "^8.0.1"
+
+postcss-color-function@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-color-function/-/postcss-color-function-4.0.0.tgz#7e0106f4f6a1ecb1ad5b3a8553ace5e828aae187"
+ dependencies:
+ css-color-function "^1.3.0"
+ postcss "^6.0.1"
+ postcss-message-helpers "^2.0.0"
+ postcss-value-parser "^3.3.0"
+
+postcss-color-gray@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-color-gray/-/postcss-color-gray-4.0.0.tgz#681bf305097dd66bfef0e1e6282d5d99b5acc95d"
+ dependencies:
+ color "^1.0.3"
+ postcss "^6.0.1"
+ postcss-message-helpers "^2.0.0"
+ reduce-function-call "^1.0.2"
+
+postcss-color-hex-alpha@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-3.0.0.tgz#1e53e6c8acb237955e8fd08b7ecdb1b8b8309f95"
+ dependencies:
+ color "^1.0.3"
+ postcss "^6.0.1"
+ postcss-message-helpers "^2.0.0"
+
+postcss-color-hsl@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-color-hsl/-/postcss-color-hsl-2.0.0.tgz#12703666fa310430e3f30a454dac1386317d5844"
+ dependencies:
+ postcss "^6.0.1"
+ postcss-value-parser "^3.3.0"
+ units-css "^0.4.0"
+
+postcss-color-hwb@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-color-hwb/-/postcss-color-hwb-3.0.0.tgz#3402b19ef4d8497540c1fb5072be9863ca95571e"
+ dependencies:
+ color "^1.0.3"
+ postcss "^6.0.1"
+ postcss-message-helpers "^2.0.0"
+ reduce-function-call "^1.0.2"
+
+postcss-color-rebeccapurple@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-3.0.0.tgz#eebaf03d363b4300b96792bd3081c19ed66513d3"
+ dependencies:
+ postcss "^6.0.1"
+ postcss-value-parser "^3.3.0"
+
+postcss-color-rgb@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-color-rgb/-/postcss-color-rgb-2.0.0.tgz#14539c8a7131494b482e0dd1cc265ff6514b5263"
+ dependencies:
+ postcss "^6.0.1"
+ postcss-value-parser "^3.3.0"
+
+postcss-color-rgba-fallback@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-color-rgba-fallback/-/postcss-color-rgba-fallback-3.0.0.tgz#37d5c9353a07a09270912a82606bb42a0d702c04"
+ dependencies:
+ postcss "^6.0.6"
+ postcss-value-parser "^3.3.0"
+ rgb-hex "^2.1.0"
+
+postcss-colormin@^2.1.8:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b"
+ dependencies:
+ colormin "^1.0.5"
+ postcss "^5.0.13"
+ postcss-value-parser "^3.2.3"
+
+postcss-convert-values@^2.3.4:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d"
+ dependencies:
+ postcss "^5.0.11"
+ postcss-value-parser "^3.1.2"
+
+postcss-cssnext@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/postcss-cssnext/-/postcss-cssnext-3.0.2.tgz#63b77adb0b8a4c1d5ec32cd345539535a3417d48"
+ dependencies:
+ autoprefixer "^7.1.1"
+ caniuse-api "^2.0.0"
+ chalk "^2.0.1"
+ pixrem "^4.0.0"
+ pleeease-filters "^4.0.0"
+ postcss "^6.0.5"
+ postcss-apply "^0.8.0"
+ postcss-attribute-case-insensitive "^2.0.0"
+ postcss-calc "^6.0.0"
+ postcss-color-function "^4.0.0"
+ postcss-color-gray "^4.0.0"
+ postcss-color-hex-alpha "^3.0.0"
+ postcss-color-hsl "^2.0.0"
+ postcss-color-hwb "^3.0.0"
+ postcss-color-rebeccapurple "^3.0.0"
+ postcss-color-rgb "^2.0.0"
+ postcss-color-rgba-fallback "^3.0.0"
+ postcss-custom-media "^6.0.0"
+ postcss-custom-properties "^6.1.0"
+ postcss-custom-selectors "^4.0.1"
+ postcss-font-family-system-ui "^2.0.1"
+ postcss-font-variant "^3.0.0"
+ postcss-image-set-polyfill "^0.3.5"
+ postcss-initial "^2.0.0"
+ postcss-media-minmax "^3.0.0"
+ postcss-nesting "^4.0.1"
+ postcss-pseudo-class-any-link "^4.0.0"
+ postcss-pseudoelements "^5.0.0"
+ postcss-replace-overflow-wrap "^2.0.0"
+ postcss-selector-matches "^3.0.1"
+ postcss-selector-not "^3.0.1"
+
+postcss-custom-media@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-6.0.0.tgz#be532784110ecb295044fb5395a18006eb21a737"
+ dependencies:
+ postcss "^6.0.1"
+
+postcss-custom-properties@^6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-6.1.0.tgz#9caf1151ac41b1e9e64d3a2ff9ece996ca18977d"
+ dependencies:
+ balanced-match "^1.0.0"
+ postcss "^6.0.3"
+
+postcss-custom-selectors@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-4.0.1.tgz#781382f94c52e727ef5ca4776ea2adf49a611382"
+ dependencies:
+ postcss "^6.0.1"
+ postcss-selector-matches "^3.0.0"
+
+postcss-discard-comments@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d"
+ dependencies:
+ postcss "^5.0.14"
+
+postcss-discard-duplicates@^2.0.1:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932"
+ dependencies:
+ postcss "^5.0.4"
+
+postcss-discard-empty@^2.0.1:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5"
+ dependencies:
+ postcss "^5.0.14"
+
+postcss-discard-overridden@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58"
+ dependencies:
+ postcss "^5.0.16"
+
+postcss-discard-unused@^2.2.1:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433"
+ dependencies:
+ postcss "^5.0.14"
+ uniqs "^2.0.0"
+
+postcss-filter-plugins@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c"
+ dependencies:
+ postcss "^5.0.4"
+ uniqid "^4.0.0"
+
+postcss-font-family-system-ui@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-font-family-system-ui/-/postcss-font-family-system-ui-2.0.1.tgz#318a075fdcb84b864aa823a51935ef0a5872e911"
+ dependencies:
+ lodash "^4.17.4"
+ postcss "^6.0.1"
+ postcss-value-parser "^3.3.0"
+
+postcss-font-variant@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-3.0.0.tgz#08ccc88f6050ba82ed8ef2cc76c0c6a6b41f183e"
+ dependencies:
+ postcss "^6.0.1"
+
+postcss-image-set-polyfill@^0.3.5:
+ version "0.3.5"
+ resolved "https://registry.yarnpkg.com/postcss-image-set-polyfill/-/postcss-image-set-polyfill-0.3.5.tgz#0f193413700cf1f82bd39066ef016d65a4a18181"
+ dependencies:
+ postcss "^6.0.1"
+ postcss-media-query-parser "^0.2.3"
+
+postcss-import@^10.0.0:
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-10.0.0.tgz#4c85c97b099136cc5ea0240dc1dfdbfde4e2ebbe"
+ dependencies:
+ object-assign "^4.0.1"
+ postcss "^6.0.1"
+ postcss-value-parser "^3.2.3"
+ read-cache "^1.0.0"
+ resolve "^1.1.7"
+
+postcss-initial@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-2.0.0.tgz#72715f7336e0bb79351d99ee65c4a253a8441ba4"
+ dependencies:
+ lodash.template "^4.2.4"
+ postcss "^6.0.1"
+
+postcss-load-config@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a"
+ dependencies:
+ cosmiconfig "^2.1.0"
+ object-assign "^4.1.0"
+ postcss-load-options "^1.2.0"
+ postcss-load-plugins "^2.3.0"
+
+postcss-load-options@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c"
+ dependencies:
+ cosmiconfig "^2.1.0"
+ object-assign "^4.1.0"
+
+postcss-load-plugins@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92"
+ dependencies:
+ cosmiconfig "^2.1.1"
+ object-assign "^4.1.0"
+
+postcss-media-minmax@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-3.0.0.tgz#675256037a43ef40bc4f0760bfd06d4dc69d48d2"
+ dependencies:
+ postcss "^6.0.1"
+
+postcss-media-query-parser@^0.2.3:
+ version "0.2.3"
+ resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244"
+
+postcss-merge-idents@^2.1.5:
+ version "2.1.7"
+ resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270"
+ dependencies:
+ has "^1.0.1"
+ postcss "^5.0.10"
+ postcss-value-parser "^3.1.1"
+
+postcss-merge-longhand@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658"
+ dependencies:
+ postcss "^5.0.4"
+
+postcss-merge-rules@^2.0.3:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721"
+ dependencies:
+ browserslist "^1.5.2"
+ caniuse-api "^1.5.2"
+ postcss "^5.0.4"
+ postcss-selector-parser "^2.2.2"
+ vendors "^1.0.0"
+
+postcss-message-helpers@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e"
+
+postcss-minify-font-values@^1.0.2:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69"
+ dependencies:
+ object-assign "^4.0.1"
+ postcss "^5.0.4"
+ postcss-value-parser "^3.0.2"
+
+postcss-minify-gradients@^1.0.1:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1"
+ dependencies:
+ postcss "^5.0.12"
+ postcss-value-parser "^3.3.0"
+
+postcss-minify-params@^1.0.4:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3"
+ dependencies:
+ alphanum-sort "^1.0.1"
+ postcss "^5.0.2"
+ postcss-value-parser "^3.0.2"
+ uniqs "^2.0.0"
+
+postcss-minify-selectors@^2.0.4:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf"
+ dependencies:
+ alphanum-sort "^1.0.2"
+ has "^1.0.1"
+ postcss "^5.0.14"
+ postcss-selector-parser "^2.0.0"
+
+postcss-nesting@^4.0.1:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-4.2.1.tgz#0483bce338b3f0828ced90ff530b29b98b00300d"
+ dependencies:
+ postcss "^6.0.11"
+
+postcss-normalize-charset@^1.1.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1"
+ dependencies:
+ postcss "^5.0.5"
+
+postcss-normalize-url@^3.0.7:
+ version "3.0.8"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222"
+ dependencies:
+ is-absolute-url "^2.0.0"
+ normalize-url "^1.4.0"
+ postcss "^5.0.14"
+ postcss-value-parser "^3.2.3"
+
+postcss-ordered-values@^2.1.0:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d"
+ dependencies:
+ postcss "^5.0.4"
+ postcss-value-parser "^3.0.1"
+
+postcss-pseudo-class-any-link@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-4.0.0.tgz#9152a0613d3450720513e8892854bae42d0ee68e"
+ dependencies:
+ postcss "^6.0.1"
+ postcss-selector-parser "^2.2.3"
+
+postcss-pseudoelements@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-pseudoelements/-/postcss-pseudoelements-5.0.0.tgz#eef194e8d524645ca520a949e95e518e812402cb"
+ dependencies:
+ postcss "^6.0.0"
+
+postcss-reduce-idents@^2.2.2:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3"
+ dependencies:
+ postcss "^5.0.4"
+ postcss-value-parser "^3.0.2"
+
+postcss-reduce-initial@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea"
+ dependencies:
+ postcss "^5.0.4"
+
+postcss-reduce-transforms@^1.0.3:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1"
+ dependencies:
+ has "^1.0.1"
+ postcss "^5.0.8"
+ postcss-value-parser "^3.0.1"
+
+postcss-replace-overflow-wrap@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-2.0.0.tgz#794db6faa54f8db100854392a93af45768b4e25b"
+ dependencies:
+ postcss "^6.0.1"
+
+postcss-reporter@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-5.0.0.tgz#a14177fd1342829d291653f2786efd67110332c3"
+ dependencies:
+ chalk "^2.0.1"
+ lodash "^4.17.4"
+ log-symbols "^2.0.0"
+ postcss "^6.0.8"
+
+postcss-selector-matches@^3.0.0, postcss-selector-matches@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-selector-matches/-/postcss-selector-matches-3.0.1.tgz#e5634011e13950881861bbdd58c2d0111ffc96ab"
+ dependencies:
+ balanced-match "^0.4.2"
+ postcss "^6.0.1"
+
+postcss-selector-not@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-3.0.1.tgz#2e4db2f0965336c01e7cec7db6c60dff767335d9"
+ dependencies:
+ balanced-match "^0.4.2"
+ postcss "^6.0.1"
+
+postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2, postcss-selector-parser@^2.2.3:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90"
+ dependencies:
+ flatten "^1.0.2"
+ indexes-of "^1.0.1"
+ uniq "^1.0.1"
+
+postcss-svgo@^2.1.1:
+ version "2.1.6"
+ resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d"
+ dependencies:
+ is-svg "^2.0.0"
+ postcss "^5.0.14"
+ postcss-value-parser "^3.2.3"
+ svgo "^0.7.0"
+
+postcss-unique-selectors@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d"
+ dependencies:
+ alphanum-sort "^1.0.1"
+ postcss "^5.0.4"
+ uniqs "^2.0.0"
+
+postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"
+
+postcss-zindex@^2.0.1:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22"
+ dependencies:
+ has "^1.0.1"
+ postcss "^5.0.4"
+ uniqs "^2.0.0"
+
+postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.8, postcss@^5.2.16:
+ version "5.2.18"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
+ dependencies:
+ chalk "^1.1.3"
+ js-base64 "^2.1.9"
+ source-map "^0.5.6"
+ supports-color "^3.2.3"
+
+postcss@^6.0.0, postcss@^6.0.1, postcss@^6.0.11, postcss@^6.0.3, postcss@^6.0.5, postcss@^6.0.6, postcss@^6.0.8:
+ version "6.0.13"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.13.tgz#b9ecab4ee00c89db3ec931145bd9590bbf3f125f"
+ dependencies:
+ chalk "^2.1.0"
+ source-map "^0.6.1"
+ supports-color "^4.4.0"
+
+prepend-http@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
+
+preserve@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
+
+pretty-hrtime@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
+
+process-nextick-args@~1.0.6:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
+
+pseudomap@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
+
+punycode@^1.4.1:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
+
+q@^1.1.2:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1"
+
+qs@~6.4.0:
+ version "6.4.0"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
+
+query-string@^4.1.0:
+ version "4.3.4"
+ resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
+ dependencies:
+ object-assign "^4.1.0"
+ strict-uri-encode "^1.0.0"
+
+randomatic@^1.1.3:
+ version "1.1.7"
+ resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
+ dependencies:
+ is-number "^3.0.0"
+ kind-of "^4.0.0"
+
+rc@^1.1.7:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
+ dependencies:
+ deep-extend "~0.4.0"
+ ini "~1.3.0"
+ minimist "^1.2.0"
+ strip-json-comments "~2.0.1"
+
+read-cache@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774"
+ dependencies:
+ pify "^2.3.0"
+
+read-pkg-up@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
+ dependencies:
+ find-up "^2.0.0"
+ read-pkg "^2.0.0"
+
+read-pkg@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
+ dependencies:
+ load-json-file "^2.0.0"
+ normalize-package-data "^2.3.2"
+ path-type "^2.0.0"
+
+readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4:
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.3"
+ isarray "~1.0.0"
+ process-nextick-args "~1.0.6"
+ safe-buffer "~5.1.1"
+ string_decoder "~1.0.3"
+ util-deprecate "~1.0.1"
+
+readdirp@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
+ dependencies:
+ graceful-fs "^4.1.2"
+ minimatch "^3.0.2"
+ readable-stream "^2.0.2"
+ set-immediate-shim "^1.0.1"
+
+reduce-css-calc@^1.2.6, reduce-css-calc@^1.2.7:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716"
+ dependencies:
+ balanced-match "^0.4.2"
+ math-expression-evaluator "^1.2.14"
+ reduce-function-call "^1.0.1"
+
+reduce-css-calc@^2.0.0:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.0.5.tgz#33c97838c5d4c711a5c14ef85ce4fde41483f7bd"
+ dependencies:
+ css-unit-converter "^1.1.1"
+ postcss-value-parser "^3.3.0"
+
+reduce-function-call@^1.0.1, reduce-function-call@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99"
+ dependencies:
+ balanced-match "^0.4.2"
+
+regenerator-runtime@^0.11.0:
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
+
+regex-cache@^0.4.2:
+ version "0.4.4"
+ resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
+ dependencies:
+ is-equal-shallow "^0.1.3"
+
+remove-trailing-separator@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
+
+repeat-element@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
+
+repeat-string@^1.5.2:
+ version "1.6.1"
+ resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
+
+request@2.81.0:
+ version "2.81.0"
+ resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
+ dependencies:
+ aws-sign2 "~0.6.0"
+ aws4 "^1.2.1"
+ caseless "~0.12.0"
+ combined-stream "~1.0.5"
+ extend "~3.0.0"
+ forever-agent "~0.6.1"
+ form-data "~2.1.1"
+ har-validator "~4.2.1"
+ hawk "~3.1.3"
+ http-signature "~1.1.0"
+ is-typedarray "~1.0.0"
+ isstream "~0.1.2"
+ json-stringify-safe "~5.0.1"
+ mime-types "~2.1.7"
+ oauth-sign "~0.8.1"
+ performance-now "^0.2.0"
+ qs "~6.4.0"
+ safe-buffer "^5.0.1"
+ stringstream "~0.0.4"
+ tough-cookie "~2.3.0"
+ tunnel-agent "^0.6.0"
+ uuid "^3.0.0"
+
+require-directory@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
+
+require-from-string@^1.1.0:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418"
+
+require-main-filename@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
+
+resolve@^1.1.7:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86"
+ dependencies:
+ path-parse "^1.0.5"
+
+restore-cursor@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
+ dependencies:
+ onetime "^2.0.0"
+ signal-exit "^3.0.2"
+
+rgb-hex@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/rgb-hex/-/rgb-hex-2.1.0.tgz#c773c5fe2268a25578d92539a82a7a5ce53beda6"
+
+rgb@~0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/rgb/-/rgb-0.1.0.tgz#be27b291e8feffeac1bd99729721bfa40fc037b5"
+
+right-align@^0.1.1:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
+ dependencies:
+ align-text "^0.1.1"
+
+rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1:
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
+ dependencies:
+ glob "^7.0.5"
+
+safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
+
+sax@~1.2.1:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
+
+"semver@2 || 3 || 4 || 5", semver@^5.3.0:
+ version "5.4.1"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
+
+set-blocking@^2.0.0, set-blocking@~2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
+
+set-immediate-shim@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
+
+shebang-command@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
+ dependencies:
+ shebang-regex "^1.0.0"
+
+shebang-regex@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
+
+signal-exit@^3.0.0, signal-exit@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
+
+simple-swizzle@^0.2.2:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
+ dependencies:
+ is-arrayish "^0.3.1"
+
+sntp@1.x.x:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
+ dependencies:
+ hoek "2.x.x"
+
+sort-keys@^1.0.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
+ dependencies:
+ is-plain-obj "^1.0.0"
+
+source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1:
+ version "0.5.7"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
+
+source-map@^0.6.1:
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+
+spdx-correct@~1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
+ dependencies:
+ spdx-license-ids "^1.0.2"
+
+spdx-expression-parse@~1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
+
+spdx-license-ids@^1.0.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
+
+sprintf-js@~1.0.2:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
+
+sshpk@^1.7.0:
+ version "1.13.1"
+ resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
+ dependencies:
+ asn1 "~0.2.3"
+ assert-plus "^1.0.0"
+ dashdash "^1.12.0"
+ getpass "^0.1.1"
+ optionalDependencies:
+ bcrypt-pbkdf "^1.0.0"
+ ecc-jsbn "~0.1.1"
+ jsbn "~0.1.0"
+ tweetnacl "~0.14.0"
+
+strict-uri-encode@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
+
+string-width@^1.0.1, string-width@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
+ dependencies:
+ code-point-at "^1.0.0"
+ is-fullwidth-code-point "^1.0.0"
+ strip-ansi "^3.0.0"
+
+string-width@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
+ dependencies:
+ is-fullwidth-code-point "^2.0.0"
+ strip-ansi "^4.0.0"
+
+string_decoder@~1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
+ dependencies:
+ safe-buffer "~5.1.0"
+
+stringstream@~0.0.4:
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
+
+strip-ansi@^3.0.0, strip-ansi@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
+ dependencies:
+ ansi-regex "^2.0.0"
+
+strip-ansi@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
+ dependencies:
+ ansi-regex "^3.0.0"
+
+strip-bom@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
+
+strip-eof@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
+
+strip-indent@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
+
+strip-json-comments@~2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
+
+supports-color@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
+
+supports-color@^3.2.3:
+ version "3.2.3"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
+ dependencies:
+ has-flag "^1.0.0"
+
+supports-color@^4.0.0, supports-color@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e"
+ dependencies:
+ has-flag "^2.0.0"
+
+svgo@^0.7.0:
+ version "0.7.2"
+ resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5"
+ dependencies:
+ coa "~1.0.1"
+ colors "~1.1.2"
+ csso "~2.3.1"
+ js-yaml "~3.7.0"
+ mkdirp "~0.5.1"
+ sax "~1.2.1"
+ whet.extend "~0.9.9"
+
+tar-pack@^3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
+ dependencies:
+ debug "^2.2.0"
+ fstream "^1.0.10"
+ fstream-ignore "^1.0.5"
+ once "^1.3.3"
+ readable-stream "^2.1.4"
+ rimraf "^2.5.1"
+ tar "^2.2.1"
+ uid-number "^0.0.6"
+
+tar@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
+ dependencies:
+ block-stream "*"
+ fstream "^1.0.2"
+ inherits "2"
+
+tough-cookie@~2.3.0:
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
+ dependencies:
+ punycode "^1.4.1"
+
+tunnel-agent@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
+ dependencies:
+ safe-buffer "^5.0.1"
+
+tweetnacl@^0.14.3, tweetnacl@~0.14.0:
+ version "0.14.5"
+ resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
+
+uglify-js@^2.7.3:
+ version "2.8.29"
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
+ dependencies:
+ source-map "~0.5.1"
+ yargs "~3.10.0"
+ optionalDependencies:
+ uglify-to-browserify "~1.0.0"
+
+uglify-to-browserify@~1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
+
+uid-number@^0.0.6:
+ version "0.0.6"
+ resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
+
+uniq@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
+
+uniqid@^4.0.0:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1"
+ dependencies:
+ macaddress "^0.2.8"
+
+uniqs@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
+
+units-css@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/units-css/-/units-css-0.4.0.tgz#d6228653a51983d7c16ff28f8b9dc3b1ffed3a07"
+ dependencies:
+ isnumeric "^0.2.0"
+ viewport-dimensions "^0.2.0"
+
+universalify@^0.1.0:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7"
+
+util-deprecate@~1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+
+uuid@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
+
+validate-npm-package-license@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
+ dependencies:
+ spdx-correct "~1.0.0"
+ spdx-expression-parse "~1.0.0"
+
+vendors@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22"
+
+verror@1.10.0:
+ version "1.10.0"
+ resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
+ dependencies:
+ assert-plus "^1.0.0"
+ core-util-is "1.0.2"
+ extsprintf "^1.2.0"
+
+viewport-dimensions@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/viewport-dimensions/-/viewport-dimensions-0.2.0.tgz#de740747db5387fd1725f5175e91bac76afdf36c"
+
+whet.extend@~0.9.9:
+ version "0.9.9"
+ resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1"
+
+which-module@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
+
+which@^1.2.9:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
+ dependencies:
+ isexe "^2.0.0"
+
+wide-align@^1.1.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
+ dependencies:
+ string-width "^1.0.2"
+
+window-size@0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
+
+wordwrap@0.0.2:
+ version "0.0.2"
+ resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
+
+wrap-ansi@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
+ dependencies:
+ string-width "^1.0.1"
+ strip-ansi "^3.0.1"
+
+wrappy@1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+
+y18n@^3.2.1:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
+
+yallist@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
+
+yargs-parser@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
+ dependencies:
+ camelcase "^4.1.0"
+
+yargs@^8.0.1:
+ version "8.0.2"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
+ dependencies:
+ camelcase "^4.1.0"
+ cliui "^3.2.0"
+ decamelize "^1.1.1"
+ get-caller-file "^1.0.1"
+ os-locale "^2.0.0"
+ read-pkg-up "^2.0.0"
+ require-directory "^2.1.1"
+ require-main-filename "^1.0.1"
+ set-blocking "^2.0.0"
+ string-width "^2.0.0"
+ which-module "^2.0.0"
+ y18n "^3.2.1"
+ yargs-parser "^7.0.0"
+
+yargs@~3.10.0:
+ version "3.10.0"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
+ dependencies:
+ camelcase "^1.0.2"
+ cliui "^2.1.0"
+ decamelize "^1.0.0"
+ window-size "0.1.0"