diff --git a/2020/05/03/hexo-install-and-deploy/index.html b/2020/05/03/hexo-install-and-deploy/index.html index a9cfc8d73f3832e9f70c20de37ffaa0182711e4a..b594a68f0fb9fbbed1181f090cfe6c358a891f60 100644 --- a/2020/05/03/hexo-install-and-deploy/index.html +++ b/2020/05/03/hexo-install-and-deploy/index.html @@ -18,4 +18,4 @@ localStorage.setItem('comments_active', commentClass); }); } - \ No newline at end of file + \ No newline at end of file diff --git a/2020/05/06/hexo-config/index.html b/2020/05/06/hexo-config/index.html index 4df0cac7d146ce61676ea36a9353ee487d88a6f3..c331079b9b046b48174a3574d7bcb0ae94b970ca 100644 --- a/2020/05/06/hexo-config/index.html +++ b/2020/05/06/hexo-config/index.html @@ -1,4 +1,4 @@ -Hexo博客Next主题美化 | Alderaan的博客
0%

Hexo博客Next主题美化

​ 本文主要说明在Hexo博客nexT主题下如何进行美化,具体对应效果可通过本博客页面进行查看。

  • Hexo version: 4.2.0
  • nexT version:7.8.0

更改nexT主题为中文

​ 在站点配置文件中的Site配置进行如下修改:

1
language: zh-CN # 简体中文

更改头像

​ 将头像图片放在/blog/themes/next/source/images/下,然后在主题配置文件下搜索avatar.gif,修改为要替换的头像图片名称。

1
2
# Replace the default image and set the url here.
url: /images/avatar.jpg # 头像图片名称 这里我的图片成名为avatar.jpg

更改头像显示框为圆形

​ 在/blog/themes/next/source/css/_common/outline/sidebar文件夹下编辑sidebar-author.styl文件,做出如下修改:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.site-author-image {
border: $site-author-image-border-width solid $site-author-image-border-color;
display: block;
margin: 0 auto;
max-width: $site-author-image-width;
padding: 2px;

/* 头像圆形 */
border-radius: 50%; # 新增
transition: 2s all; # 新增

if (hexo-config('avatar.rounded')) {
border-radius: 50%;
}
}

更改博客标题和作者名称

​ 在站点配置文件中的Site配置进行如下修改:

1
2
3
4
5
6
7
8
# Site
title: Alderaan的博客 # 博客名称
subtitle: ''
description: ''
keywords:
author: Alderaan # 作者名称
language: zh-CN
timezone: ''

文章开启版权说明

​ 新版nexT已增加版权说明模块,只需要在文章开头设置copyright: true即可,也可以修改~/scaffolds/post.md 文件,设置新建文章自动开启 copyright:

1
2
3
4
5
---
title: {{ title }}
date: {{ date }}
copyright: true # 设置默认开启版权说明
---

添加「标签」页面

新建「标签」页面,并在菜单中显示「标签」链接。「标签」页面将展示站点的所有标签,若你的所有文章都未包含标签,此页面将是空的。 底下代码是一篇包含标签的文章的例子:

1
2
3
4
5
title: 标签测试文章
tags:
- Testing
- Another Tag
---

请参阅官方 Hexo 的分类与标签文档,了解如何为文章添加标签或者分类。

在终端窗口下,定位到 Hexo 站点目录下。使用 hexo new page 新建一个页面,命名为 tags

1
2
$ cd your-hexo-site
$ hexo new page tags

注意:如果有集成评论服务,页面也会带有评论。 若需要关闭的话,请添加字段 comments 并将值设置为 false,如:

禁用评论示例

1
2
3
4
5
title: 标签
date: 2014-12-22 12:39:04
type: "tags"
comments: false
---

添加「分类」页面

​ 新建「分类」页面,并在菜单中显示「分类」链接。「分类」页面将展示站点的所有分类,若你的所有文章都未包含分类,此页面将是空的。 底下代码是一篇包含分类的文章的例子:

1
2
3
title: 分类测试文章
categories: Testing
---

​ 请参阅官方 Hexo 的分类与标签文档,了解如何为文章添加标签或者分类。

1
2
$ cd your-hexo-site
$ hexo new page categories

注意:如果有集成评论服务,页面也会带有评论。 若需要关闭的话,请添加字段 comments 并将值设置为 false,如:

​ 禁用评论示例

1
2
3
4
5
title: 分类
date: 2014-12-22 12:39:04
type: "categories"
comments: false
---

开启网站计数

​ 在主题配置文件中搜索busuanzi_count,做出如下修改:

1
2
3
4
5
6
7
8
9
10
# Show Views / Visitors of the website / page with busuanzi.
# Get more information on http://ibruce.info/2015/04/04/busuanzi
busuanzi_count:
enable: true # 更改为true开启计数
total_visitors: true
total_visitors_icon: fa fa-user
total_views: true
total_views_icon: fa fa-eye
post_views: true
post_views_icon: fa fa-eye

开启文章底部标签图标显示

​ 在主题配置文件中搜索tag_icon,做出如下修改:

1
2
# Use icon instead of the symbol # to indicate the tag at the bottom of the post
tag_icon: true # 更改为true开启图标显示,默认为'#'号

添加Live2D宠物

​ 首先在博客目录下执行:

1
2
3
#cmd 进入博客根目录
#安装 hexo-helper-live2d
npm install hexo-helper-live2d -save

​ 在站点配置文件尾部新增:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Live2d
live2d:
enable: true
scriptFrom: local
pluginRootPath: live2dw/
pluginJsPath: lib/
pluginModelPath: assets/
model:
use: live2d-widget-model-hijiki
display:
position: right
width: 150
height: 300
mobile:
show: false

npm安装需要的宠物文件

1
npm install {packagename}

​ 如本博客宠物名为hijiki, 则为 npm install live2d-widget-model-hijiki,其他宠物包点击live2d-widget-models。详细内容可参考hexo-helper-live2d


Hexo博客Next主题美化 | Alderaan的博客
0%

Hexo博客Next主题美化

​ 本文主要说明在Hexo博客nexT主题下如何进行美化,具体对应效果可通过本博客页面进行查看。

  • Hexo version: 4.2.0
  • nexT version:7.8.0

更改nexT主题为中文

​ 在站点配置文件中的Site配置进行如下修改:

1
language: zh-CN # 简体中文

更改头像

​ 将头像图片放在/blog/themes/next/source/images/下,然后在主题配置文件下搜索avatar.gif,修改为要替换的头像图片名称。

1
2
# Replace the default image and set the url here.
url: /images/avatar.jpg # 头像图片名称 这里我的图片成名为avatar.jpg

更改头像显示框为圆形

​ 在/blog/themes/next/source/css/_common/outline/sidebar文件夹下编辑sidebar-author.styl文件,做出如下修改:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.site-author-image {
border: $site-author-image-border-width solid $site-author-image-border-color;
display: block;
margin: 0 auto;
max-width: $site-author-image-width;
padding: 2px;

/* 头像圆形 */
border-radius: 50%; # 新增
transition: 2s all; # 新增

if (hexo-config('avatar.rounded')) {
border-radius: 50%;
}
}

更改博客标题和作者名称

​ 在站点配置文件中的Site配置进行如下修改:

1
2
3
4
5
6
7
8
# Site
title: Alderaan的博客 # 博客名称
subtitle: ''
description: ''
keywords:
author: Alderaan # 作者名称
language: zh-CN
timezone: ''

文章开启版权说明

​ 新版nexT已增加版权说明模块,只需要在文章开头设置copyright: true即可,也可以修改~/scaffolds/post.md 文件,设置新建文章自动开启 copyright:

1
2
3
4
5
---
title: {{ title }}
date: {{ date }}
copyright: true # 设置默认开启版权说明
---

添加「标签」页面

新建「标签」页面,并在菜单中显示「标签」链接。「标签」页面将展示站点的所有标签,若你的所有文章都未包含标签,此页面将是空的。 底下代码是一篇包含标签的文章的例子:

1
2
3
4
5
title: 标签测试文章
tags:
- Testing
- Another Tag
---

请参阅官方 Hexo 的分类与标签文档,了解如何为文章添加标签或者分类。

在终端窗口下,定位到 Hexo 站点目录下。使用 hexo new page 新建一个页面,命名为 tags

1
2
$ cd your-hexo-site
$ hexo new page tags

注意:如果有集成评论服务,页面也会带有评论。 若需要关闭的话,请添加字段 comments 并将值设置为 false,如:

禁用评论示例

1
2
3
4
5
title: 标签
date: 2014-12-22 12:39:04
type: "tags"
comments: false
---

添加「分类」页面

​ 新建「分类」页面,并在菜单中显示「分类」链接。「分类」页面将展示站点的所有分类,若你的所有文章都未包含分类,此页面将是空的。 底下代码是一篇包含分类的文章的例子:

1
2
3
title: 分类测试文章
categories: Testing
---

​ 请参阅官方 Hexo 的分类与标签文档,了解如何为文章添加标签或者分类。

1
2
$ cd your-hexo-site
$ hexo new page categories

注意:如果有集成评论服务,页面也会带有评论。 若需要关闭的话,请添加字段 comments 并将值设置为 false,如:

​ 禁用评论示例

1
2
3
4
5
title: 分类
date: 2014-12-22 12:39:04
type: "categories"
comments: false
---

开启网站计数

​ 在主题配置文件中搜索busuanzi_count,做出如下修改:

1
2
3
4
5
6
7
8
9
10
# Show Views / Visitors of the website / page with busuanzi.
# Get more information on http://ibruce.info/2015/04/04/busuanzi
busuanzi_count:
enable: true # 更改为true开启计数
total_visitors: true
total_visitors_icon: fa fa-user
total_views: true
total_views_icon: fa fa-eye
post_views: true
post_views_icon: fa fa-eye

开启文章底部标签图标显示

​ 在主题配置文件中搜索tag_icon,做出如下修改:

1
2
# Use icon instead of the symbol # to indicate the tag at the bottom of the post
tag_icon: true # 更改为true开启图标显示,默认为'#'号

添加Live2D宠物

​ 首先在博客目录下执行:

1
2
3
#cmd 进入博客根目录
#安装 hexo-helper-live2d
npm install hexo-helper-live2d -save

​ 在站点配置文件尾部新增:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Live2d
live2d:
enable: true
scriptFrom: local
pluginRootPath: live2dw/
pluginJsPath: lib/
pluginModelPath: assets/
model:
use: live2d-widget-model-hijiki
display:
position: right
width: 150
height: 300
mobile:
show: false

npm安装需要的宠物文件

1
npm install {packagename}

​ 如本博客宠物名为hijiki, 则为 npm install live2d-widget-model-hijiki,其他宠物包点击live2d-widget-models。详细内容可参考hexo-helper-live2d


\ No newline at end of file +
\ No newline at end of file diff --git a/2020/05/07/ssh-to-git-github-com-connection-reset/index.html b/2020/05/07/ssh-to-git-github-com-connection-reset/index.html new file mode 100644 index 0000000000000000000000000000000000000000..46e2096aa28675c039ee12bd9b4de1907fd6f7fd --- /dev/null +++ b/2020/05/07/ssh-to-git-github-com-connection-reset/index.html @@ -0,0 +1,21 @@ +ssh-to-git@github.com-connection-reset | Alderaan的博客
0%
\ No newline at end of file diff --git a/about/index.html b/about/index.html index 76697e599a7325d7ace8dc8c89e8d890e33f0a0b..f852ec52f6b4e9fbec49a5a7075ccc795a392459 100644 --- a/about/index.html +++ b/about/index.html @@ -18,4 +18,4 @@ localStorage.setItem('comments_active', commentClass); }); } - \ No newline at end of file + \ No newline at end of file diff --git a/archives/2020/05/index.html b/archives/2020/05/index.html index 3d061c18d1a858863d708226f1339b87953e74fd..c084208985df0d972f24b3a61eef3447cb0f8977 100644 --- a/archives/2020/05/index.html +++ b/archives/2020/05/index.html @@ -1,4 +1,4 @@ -归档 | Alderaan的博客
0%
嗯..! 目前共计 2 篇日志。 继续努力。
2020
归档 | Alderaan的博客
0%
嗯..! 目前共计 3 篇日志。 继续努力。
2020
\ No newline at end of file +
\ No newline at end of file diff --git a/archives/2020/index.html b/archives/2020/index.html index df0605465e4b67384565788f5d4e2bcc5a07b466..47379f9269027a9d44806ded3945155a726ac237 100644 --- a/archives/2020/index.html +++ b/archives/2020/index.html @@ -1,4 +1,4 @@ -归档 | Alderaan的博客
0%
嗯..! 目前共计 2 篇日志。 继续努力。
2020
归档 | Alderaan的博客
0%
嗯..! 目前共计 3 篇日志。 继续努力。
2020
\ No newline at end of file +
\ No newline at end of file diff --git a/archives/index.html b/archives/index.html index 77d6e41339a42643a68c2425c229a38c83af0ade..fd32cc2751571749e835cdb0286a411a5be5bf95 100644 --- a/archives/index.html +++ b/archives/index.html @@ -1,4 +1,4 @@ -归档 | Alderaan的博客
0%
嗯..! 目前共计 2 篇日志。 继续努力。
2020
归档 | Alderaan的博客
0%
嗯..! 目前共计 3 篇日志。 继续努力。
2020
\ No newline at end of file +
\ No newline at end of file diff --git a/atom.xml b/atom.xml index 0310d0f649c4b93efa501150a637458f53d33470..cf70feb15b02fd4bdf9b2acc2fcc24a9809fca2e 100644 --- a/atom.xml +++ b/atom.xml @@ -6,7 +6,7 @@ - 2020-05-07T03:44:34.073Z + 2020-05-07T05:34:09.938Z https://alderaan.xyz/ @@ -16,6 +16,21 @@ Hexo + + ssh-to-git@github.com-connection-reset + + https://alderaan.xyz/2020/05/07/ssh-to-git-github-com-connection-reset/ + 2020-05-07T05:34:09.000Z + 2020-05-07T05:34:09.938Z + + + + + + + + + Hexo博客Next主题美化 diff --git a/categories/Hexo/index.html b/categories/Hexo/index.html index d32f948bb8419d82fdb68adcfc4bb15c2da3d17a..0dba3179ea22bb7489003db0003eaf390bc1e622 100644 --- a/categories/Hexo/index.html +++ b/categories/Hexo/index.html @@ -18,4 +18,4 @@ localStorage.setItem('comments_active', commentClass); }); } -
\ No newline at end of file +
\ No newline at end of file diff --git a/categories/index.html b/categories/index.html index 0eebec87c2173ee8c61592cdb812226e49afe940..d2e9464db1a59702b4ab78c5bebd05e58d372cb5 100644 --- a/categories/index.html +++ b/categories/index.html @@ -18,4 +18,4 @@ localStorage.setItem('comments_active', commentClass); }); } -
\ No newline at end of file +
\ No newline at end of file diff --git a/css/main.css b/css/main.css index c09dd17fc8c162968d4022120ebb6298d90c5f1f..9b155bcfb0c2c46613b4e061344016806227144c 100644 --- a/css/main.css +++ b/css/main.css @@ -1 +1 @@ -code,h5,kbd,pre,samp{font-size:1em}button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}.table-container,pre,textarea{overflow:auto}p,table{margin:0 0 20px}:root{--body-bg-color:#eee;--content-bg-color:#fff;--card-bg-color:#f5f5f5;--text-color:#555;--blockquote-color:#666;--link-color:#555;--link-hover-color:#222;--brand-color:#fff;--brand-hover-color:#fff;--table-row-odd-bg-color:#f9f9f9;--table-row-hover-bg-color:#f5f5f5;--menu-item-bg-color:#f5f5f5;--btn-default-bg:#fff;--btn-default-color:#555;--btn-default-border-color:#555;--btn-default-hover-bg:#222;--btn-default-hover-color:#fff;--btn-default-hover-border-color:#222}html{line-height:1.15;-webkit-text-size-adjust:100%}details,main{display:block}hr{box-sizing:content-box}a{background:0 0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}.post-body,a,code,span.exturl{overflow-wrap:break-word;word-wrap:break-word}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.btn,body{line-height:2}.post-body,.posts-expand .post-meta,.site-title,body,h1,h2,h3,h4,h5,h6{font-family:Lato,"PingFang SC","Microsoft YaHei",sans-serif}summary{display:list-item}[hidden],template{display:none}::selection{background:#262a30;color:#eee}body,html{height:100%}body{margin:0;background:var(--body-bg-color);color:var(--text-color);font-size:1em}@media (max-width:991px){body{padding-left:0!important;padding-right:0!important}}h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.5;margin:20px 0 15px}h1{font-size:1.5em}h2{font-size:1.375em}h3{font-size:1.25em}h4{font-size:1.125em}.btn,.highlight figcaption,h6,pre code,table{font-size:.875em}a,span.exturl{border-bottom:1px solid #999;color:var(--link-color);outline:0;text-decoration:none;cursor:pointer}a:hover,span.exturl:hover{border-bottom-color:var(--link-hover-color);color:var(--link-hover-color)}iframe,img,video{display:block;margin-left:auto;margin-right:auto;max-width:100%}hr{background-image:repeating-linear-gradient(-45deg,#ddd,#ddd 4px,transparent 4px,transparent 8px);border:0;height:3px;margin:40px 0}blockquote{border-left:4px solid #ddd;color:var(--blockquote-color);margin:0;padding:0 15px}blockquote cite::before{content:'-';padding:0 5px}dt{font-weight:700}dd{margin:0;padding:0}kbd{background-color:#f5f5f5;background-image:linear-gradient(#eee,#fff,#eee);border:1px solid #ccc;border-radius:.2em;box-shadow:.1em .1em .2em rgba(0,0,0,.1);color:#555;font-family:inherit;padding:.1em .3em;white-space:nowrap}table{border-collapse:collapse;border-spacing:0;width:100%}tbody tr:nth-of-type(odd){background:var(--table-row-odd-bg-color)}tbody tr:hover{background:var(--table-row-hover-bg-color)}caption,td,th{font-weight:400;padding:8px;text-align:left;vertical-align:middle}td,th{border:1px solid #ddd;border-bottom:3px solid #ddd}th{font-weight:700;padding-bottom:10px}td{border-bottom-width:1px}.btn{background:var(--btn-default-bg);border:2px solid var(--btn-default-border-color);border-radius:2px;color:var(--btn-default-color);display:inline-block;padding:0 20px;text-decoration:none;transition-property:background-color;transition-delay:0s;transition-duration:.2s;transition-timing-function:ease-in-out}.btn:hover{background:var(--btn-default-hover-bg);border-color:var(--btn-default-hover-border-color);color:var(--btn-default-hover-color)}.btn+.btn{margin:0 0 8px 8px}.btn .fa-fw{text-align:left;width:1.285714285714286em}.toggle{line-height:0}.toggle .toggle-line{background:#fff;display:inline-block;height:2px;left:0;position:relative;top:0;transition:all .4s;vertical-align:top;width:100%}.toggle .toggle-line:not(:first-child){margin-top:3px}.toggle.toggle-arrow .toggle-line-first{left:50%;top:2px;transform:rotate(45deg);width:50%}.toggle.toggle-arrow .toggle-line-middle{left:2px;width:90%}.toggle.toggle-arrow .toggle-line-last{left:50%;top:-2px;transform:rotate(-45deg);width:50%}.toggle.toggle-close .toggle-line-first{transform:rotate(-45deg);top:5px}.toggle.toggle-close .toggle-line-middle{opacity:0}.toggle.toggle-close .toggle-line-last{transform:rotate(45deg);top:-5px}.highlight,pre{background:#f7f7f7;color:#4d4d4c;line-height:1.6;margin:0 auto 20px}code,pre{font-family:consolas,Menlo,monospace,"PingFang SC","Microsoft YaHei"}code{background:#eee;border-radius:3px;color:#555;padding:2px 4px}.highlight ::selection{background:#d6d6d6}.highlight pre{border:0;margin:0;padding:10px 0}.highlight table{border:0;margin:0;width:auto}.highlight td{border:0;padding:0}.highlight figcaption{background:#eff2f3;color:#4d4d4c;display:flex;justify-content:space-between;line-height:1.2;padding:.5em}.highlight figcaption a{color:#4d4d4c}.highlight figcaption a:hover{border-bottom-color:#4d4d4c}.highlight .gutter{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.highlight .gutter pre{background:#eff2f3;color:#869194;padding-left:10px;padding-right:10px;text-align:right}.highlight .code pre{background:#f7f7f7;padding-left:10px;width:100%}.gist table{width:auto}.gist table td{border:0}pre{padding:10px}pre code{background:0 0;color:#4d4d4c;padding:0;text-shadow:none}pre .deletion{background:#fdd}pre .addition{background:#dfd}pre .meta{color:#eab700;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none}pre .comment{color:#8e908c}pre .attribute,pre .css .class,pre .css .id,pre .css .pseudo,pre .html .doctype,pre .name,pre .regexp,pre .ruby .constant,pre .tag,pre .variable,pre .xml .doctype,pre .xml .pi,pre .xml .tag .title{color:#c82829}pre .built_in,pre .builtin-name,pre .command,pre .constant,pre .literal,pre .number,pre .params,pre .preprocessor{color:#f5871f}pre .css .rules .attribute,pre .formula,pre .header,pre .inheritance,pre .ruby .class .title,pre .ruby .symbol,pre .special,pre .string,pre .symbol,pre .value,pre .xml .cdata{color:#718c00}pre .css .hexcolor,pre .title{color:#3e999f}pre .coffeescript .title,pre .function,pre .javascript .title,pre .perl .sub,pre .python .decorator,pre .python .title,pre .ruby .function .title,pre .ruby .title .keyword{color:#4271ae}pre .javascript .function,pre .keyword{color:#8959a8}.blockquote-center{border-left:none;margin:40px 0;padding:0;position:relative;text-align:center}.blockquote-center .fa{display:block;opacity:.6;position:absolute;width:100%}.blockquote-center .fa-quote-left{border-top:1px solid #ccc;text-align:left;top:-20px}.blockquote-center .fa-quote-right{border-bottom:1px solid #ccc;text-align:right;bottom:-20px}.blockquote-center div,.blockquote-center p{text-align:center}.post-body .group-picture img{margin:0 auto;padding:0 3px}.group-picture-row{margin-bottom:6px;overflow:hidden}.group-picture-column{float:left;margin-bottom:10px}.post-body .note,.post-body .tabs{margin-bottom:20px}.post-body .label{color:#555;display:inline;padding:0 2px}.post-body .label.default{background:#f0f0f0}.post-body .label.primary{background:#efe6f7}.post-body .label.info{background:#e5f2f8}.post-body .label.success{background:#e7f4e9}.post-body .label.warning{background:#fcf6e1}.post-body .label.danger{background:#fae8eb}.post-body .tabs,.tabs-comment{display:block;padding-top:10px;position:relative}.post-body .tabs ul.nav-tabs,.tabs-comment ul.nav-tabs{display:flex;flex-wrap:wrap;margin:0 0 -1px;padding:0}.post-body .tabs ul.nav-tabs li.tab,.tabs-comment ul.nav-tabs li.tab{border-bottom:1px solid #ddd;border-left:1px solid transparent;border-right:1px solid transparent;border-top:3px solid transparent;flex-grow:1;list-style-type:none;border-radius:0}@media (max-width:413px){.post-body .tabs ul.nav-tabs,.tabs-comment ul.nav-tabs{display:block;margin-bottom:5px}.post-body .tabs ul.nav-tabs li.tab,.tabs-comment ul.nav-tabs li.tab{border-bottom:1px solid transparent;border-left:3px solid transparent;border-right:1px solid transparent;border-top:1px solid transparent;border-radius:0}}.post-body .tabs ul.nav-tabs li.tab a,.tabs-comment ul.nav-tabs li.tab a{border-bottom:initial;display:block;line-height:1.8;outline:0;padding:.25em .75em;text-align:center;transition-delay:0s;transition-duration:.2s;transition-timing-function:ease-out}.menu-item a,.menu-item span.exturl,.pagination .next,.pagination .page-number,.pagination .prev{transition-property:border-color;transition-delay:0s;transition-duration:.2s;transition-timing-function:ease-in-out}.post-body .tabs ul.nav-tabs li.tab a i,.tabs-comment ul.nav-tabs li.tab a i{width:1.285714285714286em}.post-body .tabs ul.nav-tabs li.tab.active,.tabs-comment ul.nav-tabs li.tab.active{border-bottom:1px solid transparent;border-left:1px solid #ddd;border-right:1px solid #ddd;border-top:3px solid #fc6423}@media (max-width:413px){.post-body .tabs ul.nav-tabs li.tab.active,.tabs-comment ul.nav-tabs li.tab.active{border-bottom:1px solid #ddd;border-left:3px solid #fc6423;border-right:1px solid #ddd;border-top:1px solid #ddd}}.post-body .tabs ul.nav-tabs li.tab.active a,.tabs-comment ul.nav-tabs li.tab.active a{color:var(--link-color);cursor:default}.post-body .tabs .tab-content .tab-pane,.tabs-comment .tab-content .tab-pane{border:1px solid #ddd;border-top:0;padding:20px 20px 0;border-radius:0}.post-body .tabs .tab-content .tab-pane:not(.active),.tabs-comment .tab-content .tab-pane:not(.active){display:none}.post-body .tabs .tab-content .tab-pane.active,.tabs-comment .tab-content .tab-pane.active{display:block}.post-body .tabs .tab-content .tab-pane.active:nth-of-type(1),.tabs-comment .tab-content .tab-pane.active:nth-of-type(1){border-radius:0}@media (max-width:413px){.post-body .tabs .tab-content .tab-pane.active:nth-of-type(1),.tabs-comment .tab-content .tab-pane.active:nth-of-type(1){border-radius:0}}.post-body .note{border-radius:3px;padding:1em;position:relative;border:1px solid #eee;border-left-width:5px}.post-body .note h2,.post-body .note h3,.post-body .note h4,.post-body .note h5,.post-body .note h6{margin-top:0;border-bottom:initial;margin-bottom:0;padding-top:0}.post-body .note blockquote:first-child,.post-body .note img:first-child,.post-body .note ol:first-child,.post-body .note p:first-child,.post-body .note pre:first-child,.post-body .note table:first-child,.post-body .note ul:first-child{margin-top:0}.post-body .note blockquote:last-child,.post-body .note img:last-child,.post-body .note ol:last-child,.post-body .note p:last-child,.post-body .note pre:last-child,.post-body .note table:last-child,.post-body .note ul:last-child{margin-bottom:0}.post-body .note.default{border-left-color:#777}.post-body .note.default h2,.post-body .note.default h3,.post-body .note.default h4,.post-body .note.default h5,.post-body .note.default h6{color:#777}.post-body .note.primary{border-left-color:#6f42c1}.post-body .note.primary h2,.post-body .note.primary h3,.post-body .note.primary h4,.post-body .note.primary h5,.post-body .note.primary h6{color:#6f42c1}.post-body .note.info{border-left-color:#428bca}.post-body .note.info h2,.post-body .note.info h3,.post-body .note.info h4,.post-body .note.info h5,.post-body .note.info h6{color:#428bca}.post-body .note.success{border-left-color:#5cb85c}.post-body .note.success h2,.post-body .note.success h3,.post-body .note.success h4,.post-body .note.success h5,.post-body .note.success h6{color:#5cb85c}.post-body .note.warning{border-left-color:#f0ad4e}.post-body .note.warning h2,.post-body .note.warning h3,.post-body .note.warning h4,.post-body .note.warning h5,.post-body .note.warning h6{color:#f0ad4e}.post-body .note.danger{border-left-color:#d9534f}.post-body .note.danger h2,.post-body .note.danger h3,.post-body .note.danger h4,.post-body .note.danger h5,.post-body .note.danger h6{color:#d9534f}.pagination .next,.pagination .page-number,.pagination .prev,.pagination .space{display:inline-block;margin:0 10px;padding:0 11px;position:relative;top:-1px}@media (max-width:767px){.pagination .next,.pagination .page-number,.pagination .prev,.pagination .space{margin:0 5px}}.pagination{text-align:center}.pagination .next,.pagination .page-number,.pagination .prev{border-bottom:0;border-top:1px solid #eee}.pagination .next:hover,.pagination .page-number:hover,.pagination .prev:hover{border-top-color:#222}.pagination .space{margin:0;padding:0}.pagination .prev{margin-left:0}.pagination .next{margin-right:0}.pagination .page-number.current{background:#ccc;border-top-color:#ccc;color:#fff}@media (max-width:767px){.pagination{border-top:none}.pagination .next,.pagination .page-number,.pagination .prev{border-bottom:1px solid #eee;border-top:0;margin-bottom:10px;padding:0 10px}.pagination .next:hover,.pagination .page-number:hover,.pagination .prev:hover{border-bottom-color:#222}}.comments{overflow:hidden}.comment-button-group{display:flex;flex-wrap:wrap-reverse;justify-content:center;margin:1em 0}.comment-button-group .comment-button{margin:.1em .2em}.comment-button-group .comment-button.active{background:var(--btn-default-hover-bg);border-color:var(--btn-default-hover-border-color);color:var(--btn-default-hover-color)}.comment-position{display:none}.comment-position.active{display:block}.tabs-comment{background:var(--content-bg-color);padding-top:0}.tabs-comment .comments{border:0;box-shadow:none;margin-top:0;padding-top:0}.container{min-height:100%;position:relative}.main-inner{margin:0 auto;width:calc(100% - 20px)}@media (min-width:1200px){.main-inner{width:1160px}}@media (min-width:1600px){.main-inner{width:73%}}@media (max-width:767px){.content-wrap{padding:0 20px}.site-meta{text-align:center}}.header{background:0 0}.header-inner{margin:0 auto}@media (min-width:1200px){.header-inner{width:1160px}}@media (min-width:1600px){.header-inner{width:73%}}.site-brand-container{display:flex;flex-shrink:0;padding:0 10px}.headband{background:#222;height:3px}.site-meta{flex-grow:1;text-align:center}.brand{border-bottom:none;color:var(--brand-color);display:inline-block;line-height:1.375em;position:relative}.brand:hover{color:var(--brand-hover-color)}.site-title{font-size:1.375em;font-weight:400;margin:0}.site-subtitle{color:#ddd;font-size:.8125em}.use-motion .brand{opacity:0}.use-motion .custom-logo-image,.use-motion .site-subtitle,.use-motion .site-title{opacity:0;position:relative;top:-10px}.site-nav-right,.site-nav-toggle{display:none}@media (max-width:767px){.site-nav-right,.site-nav-toggle{display:flex;flex-direction:column;justify-content:center}}.site-nav-right .toggle,.site-nav-toggle .toggle{padding:10px;width:22px}.site-nav-right .toggle .toggle-line,.site-nav-toggle .toggle .toggle-line{border-radius:1px}.site-nav{display:block}@media (max-width:767px){.site-nav{clear:both;display:none}}.site-nav.site-nav-on{display:block}.menu{margin-top:20px;padding-left:0;text-align:center}.menu-item{display:inline-block;list-style:none;margin:0 10px}@media (max-width:767px){.menu-item{display:block;margin-top:10px}.menu-item.menu-item-search{display:none}}.menu-item a,.menu-item span.exturl{border-bottom:0;display:block;font-size:.8125em}@media (hover:none){.menu-item a:hover,.menu-item span.exturl:hover{border-bottom-color:transparent!important}}.menu-item .fa,.menu-item .fab,.menu-item .far,.menu-item .fas{margin-right:8px}.menu-item .badge{display:inline-block;font-weight:700;line-height:1;margin-left:.35em;margin-top:.35em;text-align:center;white-space:nowrap}@media (max-width:767px){.menu-item .badge{float:right;margin-left:0}}.menu .menu-item a:hover,.menu .menu-item span.exturl:hover,.menu-item-active a{background:var(--menu-item-bg-color)}.use-motion .menu-item{opacity:0}.sidebar{bottom:0;top:0}.sidebar-inner{color:#999;padding:18px 10px;text-align:center}.cc-license{margin-top:10px;text-align:center}.cc-license .cc-opacity{border-bottom:none;opacity:.7}.cc-license .cc-opacity:hover{opacity:.9}.cc-license img{display:inline-block}.site-author-image{border:1px solid #eee;display:block;margin:0 auto;max-width:120px;padding:2px;border-radius:50%;transition:2s all}.site-author-name{color:var(--text-color);font-weight:600;margin:0;text-align:center}.site-description{color:#999;font-size:.8125em;margin-top:0;text-align:center}.links-of-author a,.links-of-author span.exturl{border-bottom-color:#555;display:inline-block;font-size:.8125em;margin-bottom:10px;margin-right:10px;vertical-align:middle}.links-of-author a::before,.links-of-author span.exturl::before{background:#8cff3c;border-radius:50%;content:' ';display:inline-block;height:4px;margin-right:3px;vertical-align:middle;width:4px}.sidebar-button a{border-radius:4px;padding:0 15px}.sidebar-button a .fa,.sidebar-button a .fab,.sidebar-button a .far,.sidebar-button a .fas{margin-right:5px}.links-of-blogroll{font-size:.8125em;margin-top:10px}.links-of-blogroll-title{font-size:.875em;font-weight:600;margin-top:0}.links-of-blogroll-list{list-style:none;margin:0;padding:0}#sidebar-dimmer{display:none}@media (max-width:767px){#sidebar-dimmer{background:#000;display:block;height:100%;left:100%;opacity:0;position:fixed;top:0;width:100%;z-index:1100}.sidebar-active+#sidebar-dimmer{opacity:.7;transform:translateX(-100%);transition:opacity .5s}}.back-to-top,.post-toc ol a,.posts-collapse .post-header,.posts-collapse .post-header::before,.posts-expand .post-title-link::before{transition-delay:0s;transition-duration:.2s;transition-timing-function:ease-in-out}.sidebar-nav{margin:0;padding-bottom:20px;padding-left:0}.sidebar-nav li{border-bottom:1px solid transparent;color:var(--text-color);cursor:pointer;display:inline-block;font-size:.875em}.sidebar-nav li.sidebar-nav-overview{margin-left:10px}.sidebar-nav li:hover{color:#fc6423}.sidebar-nav .sidebar-nav-active{border-bottom-color:#fc6423;color:#fc6423}.sidebar-nav .sidebar-nav-active:hover{color:#fc6423}.sidebar-panel{display:none;overflow-x:hidden;overflow-y:auto}.sidebar-panel-active{display:block}.sidebar-toggle{background:#222;bottom:45px;cursor:pointer;height:14px;left:30px;padding:5px;position:fixed;width:14px;z-index:1300}@media (max-width:991px){.sidebar-toggle{left:20px;opacity:.8;display:none}}.sidebar-toggle:hover .toggle-line{background:#fc6423}.post-toc{font-size:.875em}.post-toc ol{list-style:none;margin:0;padding:0 2px 5px 10px;text-align:left}.post-toc ol>ol{padding-left:0}.post-toc ol a{transition-property:all}.post-toc .nav-item{line-height:1.8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.post-toc .nav .active-current>.nav-child,.post-toc .nav .active-current>.nav-child>.nav-item,.post-toc .nav .active>.nav-child,.post-toc .nav .nav-child{display:block}.post-toc .nav .active>a{border-bottom-color:#fc6423;color:#fc6423}.post-toc .nav .active-current>a,.post-toc .nav .active-current>a:hover{color:#fc6423}.site-state{display:flex;justify-content:center;line-height:1.4;margin-top:10px;overflow:hidden;text-align:center;white-space:nowrap}.site-state-item:not(:first-child){border-left:1px solid #eee}.site-state-item a{border-bottom:none}.site-state-item-count{display:block;font-size:1em;font-weight:600;text-align:center}.languages,.powered-by,.theme-info,.with-love{display:inline-block}.site-state-item-name{color:#999;font-size:.8125em}.footer{color:#999;font-size:.875em;padding:20px 0}.footer.footer-fixed{bottom:0;left:0;position:absolute;right:0}.footer-inner{box-sizing:border-box;margin:0 auto;text-align:center;width:calc(100% - 20px)}@media (min-width:1200px){.footer-inner{width:1160px}}@media (min-width:1600px){.footer-inner{width:73%}}.languages{font-size:1.125em;position:relative}.languages .lang-select-label span{margin:0 .5em}.languages .lang-select{height:100%;left:0;opacity:0;position:absolute;top:0;width:100%}.with-love{color:red;margin:0 5px}@-moz-keyframes iconAnimate{0%,100%{transform:scale(1)}10%,30%{transform:scale(.9)}20%,40%,50%,60%,70%,80%{transform:scale(1.1)}}@-webkit-keyframes iconAnimate{0%,100%{transform:scale(1)}10%,30%{transform:scale(.9)}20%,40%,50%,60%,70%,80%{transform:scale(1.1)}}@-o-keyframes iconAnimate{0%,100%{transform:scale(1)}10%,30%{transform:scale(.9)}20%,40%,50%,60%,70%,80%{transform:scale(1.1)}}@keyframes iconAnimate{0%,100%{transform:scale(1)}10%,30%{transform:scale(.9)}20%,40%,50%,60%,70%,80%{transform:scale(1.1)}}.back-to-top{font-size:12px;text-align:center;background:#222;bottom:-100px;box-sizing:border-box;color:#fff;cursor:pointer;opacity:.6;padding:0 6px;position:fixed;transition-property:bottom;z-index:1300;width:24px}.back-to-top span{display:none}.back-to-top:hover{color:#fc6423}.back-to-top.back-to-top-on{bottom:30px}@media (max-width:991px){.back-to-top{left:20px;opacity:.8}}@media (min-width:1200px){.post-body{font-size:1.125em}}.post-body .exturl .fa{font-size:.875em;margin-left:4px}.post-body .figure .caption,.post-body .image-caption{color:#999;font-size:.875em;font-weight:700;line-height:1;margin:-20px auto 15px;text-align:center}.post-sticky-flag{display:inline-block;transform:rotate(30deg)}.post-button{margin-top:40px;text-align:center}.use-motion .collection-header,.use-motion .comments,.use-motion .pagination,.use-motion .post-block,.use-motion .post-body,.use-motion .post-header{opacity:0}.posts-collapse{margin-left:35px;position:relative}@media (max-width:767px){.posts-collapse{margin-left:0;margin-right:0}}.posts-collapse .collection-title{font-size:1.125em;position:relative}.posts-collapse .collection-title::before{background:#999;border:1px solid #fff;border-radius:50%;content:' ';height:10px;left:0;margin-left:-6px;margin-top:-4px;position:absolute;top:50%;width:10px}.posts-collapse .collection-year{font-size:1.5em;font-weight:700;margin:60px 0;position:relative}.posts-collapse .collection-year::before{background:#bbb;border-radius:50%;content:' ';height:8px;left:0;margin-left:-4px;margin-top:-4px;position:absolute;top:50%;width:8px}.posts-collapse .collection-header{display:block;margin:0 0 0 20px}.posts-collapse .collection-header small{color:#bbb;margin-left:5px}.posts-collapse .post-header{border-bottom:1px dashed #ccc;margin:30px 0;padding-left:15px;position:relative;transition-property:border}.posts-collapse .post-header::before,.posts-collapse::before{content:' ';position:absolute;left:0}.posts-collapse .post-header::before{background:#bbb;border:1px solid #fff;border-radius:50%;height:6px;margin-left:-4px;top:.75em;transition-property:background;width:6px}.posts-collapse .post-header:hover{border-bottom-color:#666}.posts-collapse .post-header:hover::before{background:#222}.posts-collapse .post-meta{display:inline;font-size:.75em;margin-right:10px}.posts-collapse .post-title{display:inline}.posts-collapse .post-title a,.posts-collapse .post-title span.exturl{border-bottom:none;color:var(--link-color)}.posts-collapse .post-title .fa-external-link-alt{font-size:.875em;margin-left:5px}.posts-collapse::before{background:#f5f5f5;height:100%;margin-left:-2px;top:1.25em;width:4px}.post-eof{background:#ccc;height:1px;margin:80px auto 60px;text-align:center;width:8%}.post-block:last-of-type .post-eof{display:none}.content{padding-top:40px}@media (min-width:992px){.post-body{text-align:justify}}@media (max-width:991px){.post-body{text-align:justify}}.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{padding-top:10px}.post-body h1 .header-anchor,.post-body h2 .header-anchor,.post-body h3 .header-anchor,.post-body h4 .header-anchor,.post-body h5 .header-anchor,.post-body h6 .header-anchor{border-bottom-style:none;color:#ccc;float:right;margin-left:10px;visibility:hidden}.post-body h1 .header-anchor:hover,.post-body h2 .header-anchor:hover,.post-body h3 .header-anchor:hover,.post-body h4 .header-anchor:hover,.post-body h5 .header-anchor:hover,.post-body h6 .header-anchor:hover{color:inherit}.post-body h1:hover .header-anchor,.post-body h2:hover .header-anchor,.post-body h3:hover .header-anchor,.post-body h4:hover .header-anchor,.post-body h5:hover .header-anchor,.post-body h6:hover .header-anchor{visibility:visible}.post-body iframe,.post-body img,.post-body video{margin-bottom:20px}.post-body .video-container{height:0;margin-bottom:20px;overflow:hidden;padding-top:75%;position:relative;width:100%}.post-body .video-container embed,.post-body .video-container iframe,.post-body .video-container object{height:100%;left:0;margin:0;position:absolute;top:0;width:100%}.post-gallery{align-items:center;display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 1fr;margin-bottom:20px}.post-gallery a{border:0}.post-gallery img{margin:0}.posts-expand .post-header{font-size:1.125em}.posts-expand .post-title{font-size:1.5em;font-weight:400;margin:initial;text-align:center;overflow-wrap:break-word;word-wrap:break-word}.posts-expand .post-title-link{border-bottom:none;color:var(--link-color);display:inline-block;position:relative;vertical-align:top}.posts-expand .post-title-link::before{background:var(--link-color);bottom:0;content:'';height:2px;left:0;position:absolute;transform:scaleX(0);visibility:hidden;width:100%}.posts-expand .post-title-link:hover::before{transform:scaleX(1);visibility:visible}.posts-expand .post-title-link .fa-external-link-alt{font-size:.875em;margin-left:5px}.posts-expand .post-meta{color:#999;font-size:.75em;margin:3px 0 60px;text-align:center}.posts-expand .post-meta .post-description{font-size:.875em;margin-top:2px}.posts-expand .post-meta time{border-bottom:1px dashed #999;cursor:pointer}.post-meta .post-meta-item+.post-meta-item::before{content:'|';margin:0 .5em}.post-meta-divider{margin:0 .5em}.post-meta-item-icon{margin-right:3px}@media (max-width:991px){.post-meta-item-icon{display:inline-block}.post-meta-item-text{display:none}}.post-nav{border-top:1px solid #eee;display:flex;justify-content:space-between;margin-top:15px;padding:10px 5px 0}.post-nav-item{flex:1}.post-nav-item a{border-bottom:none;display:block;font-size:.875em;line-height:1.6;position:relative}.post-nav-item a:active{top:2px}.post-nav-item .fa{font-size:.75em}.post-nav-item:first-child{margin-right:15px}.post-nav-item:first-child .fa{margin-right:5px}.post-nav-item:last-child{margin-left:15px;text-align:right}#qr p,.category-all-page .category-all-title,.event-list .event .event-details::before,.post-tags,.post-widgets,.reward-container,.sidebar-button,.social-like,.tag-cloud,.wp_rating,ul.breadcrumb{text-align:center}.post-nav-item:last-child .fa{margin-left:5px}.rtl.post-body a,.rtl.post-body h1,.rtl.post-body h2,.rtl.post-body h3,.rtl.post-body h4,.rtl.post-body h5,.rtl.post-body h6,.rtl.post-body li,.rtl.post-body ol,.rtl.post-body p,.rtl.post-body ul{direction:rtl;font-family:UKIJ Ekran}.rtl.post-title{font-family:UKIJ Ekran}.post-tags{margin-top:40px}.post-tags a{display:inline-block;font-size:.8125em}.post-tags a:not(:last-child){margin-right:10px}.post-widgets{border-top:1px solid #eee;margin-top:15px}.wp_rating{height:20px;line-height:20px;margin-top:10px;padding-top:6px}.social-like{display:flex;font-size:.875em;justify-content:center}.reward-container{margin:20px auto;padding:10px 0;width:90%}.reward-container button{background:#ff2a2a;border:0;border-radius:5px;color:#fff;cursor:pointer;line-height:2;outline:0;padding:0 15px;vertical-align:text-top}.reward-container button:hover{background:#f55}#qr{padding-top:20px}#qr a{border:0}#qr img{display:inline-block;margin:.8em 2em 0;max-width:100%;width:180px}.post-copyright{background:var(--card-bg-color);border-left:3px solid #ff2a2a;list-style:none;margin:2em 0 0;padding:.5em 1em}.my_post_copyright{width:85%;max-width:45em;margin:2.8em auto 0;padding:.5em 1em;border:1px solid #d3d3d3;font-size:.93rem;line-height:1.6em;word-break:break-all;background:rgba(255,255,255,.4)}.my_post_copyright p{margin:0}.my_post_copyright span{display:inline-block;width:5.2em;color:#333;font-weight:700}.my_post_copyright .raw{margin-left:1em;width:5em}.my_post_copyright a{color:grey;border-bottom:0}.my_post_copyright a:hover{color:#0593d3;text-decoration:underline}.my_post_copyright:hover .fa-clipboard{color:#000}.my_post_copyright .post-url:hover{font-weight:400}.my_post_copyright .copy-path{margin-left:1em;width:1em}@media (max-width:767px){.post-gallery{grid-template-columns:1fr 1fr}.my_post_copyright .copy-path{display:none}}.my_post_copyright .copy-path:hover{color:grey;cursor:pointer}.category-all-page .category-all{margin-top:20px}.category-all-page .category-list{list-style:none;margin:0;padding:0}.category-all-page .category-list-item{margin:5px 10px}.category-all-page .category-list-count{color:#bbb}.category-all-page .category-list-count::before{content:' (';display:inline}.category-all-page .category-list-count::after{content:') ';display:inline}.category-all-page .category-list-child{padding-left:10px}.event-list{padding:0}.event-list hr{background:#222;margin:20px 0 45px}.event-list hr::after{background:#222;color:#fff;content:'NOW';display:inline-block;font-weight:700;padding:0 5px;text-align:right}.event-list .event{background:#222;margin:20px 0;min-height:40px;padding:15px 0 15px 10px}.event-list .event .event-summary{color:#fff;margin:0;padding-bottom:3px}.event-list .event .event-summary::before{animation:dot-flash 1s alternate infinite ease-in-out;color:#fff;content:'\f111';display:inline-block;font-size:10px;margin-right:25px;vertical-align:middle;font-family:'Font Awesome 5 Free';font-weight:900}.event-list .event .event-relative-time{color:#bbb;display:inline-block;font-size:12px;font-weight:400;padding-left:12px}.event-list .event .event-details{color:#fff;display:block;line-height:18px;margin-left:56px;padding-bottom:6px;padding-top:3px;text-indent:-24px}.event-list .event .event-details::before{color:#fff;display:inline-block;margin-right:9px;text-indent:0;width:14px;font-family:'Font Awesome 5 Free';font-weight:900}.event-list .event .event-details.event-location::before{content:'\f041'}.event-list .event .event-details.event-duration::before{content:'\f017'}.event-list .event-past{background:#f5f5f5}.event-list .event-past .event-details,.event-list .event-past .event-summary{color:#bbb;opacity:.9}.event-list .event-past .event-details::before,.event-list .event-past .event-summary::before{animation:none;color:#bbb}@-moz-keyframes dot-flash{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.8)}}@-webkit-keyframes dot-flash{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.8)}}@-o-keyframes dot-flash{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.8)}}@keyframes dot-flash{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.8)}}ul.breadcrumb{font-size:.75em;list-style:none;margin:1em 0;padding:0 2em}ul.breadcrumb li{display:inline}ul.breadcrumb li+li::before{content:'/\00a0';font-weight:400;padding:.5em}ul.breadcrumb li+li:last-child{font-weight:700}.tag-cloud a{display:inline-block;margin:10px}.tag-cloud a:hover{color:var(--link-hover-color)!important}.header{margin:0 auto;position:relative;width:calc(100% - 20px)}@media (min-width:1200px){.header{width:1160px}}@media (min-width:1600px){.header{width:73%}}@media (max-width:991px){.header{width:auto}}.header-inner{background:var(--content-bg-color);border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12);overflow:hidden;padding:0;position:absolute;top:0;width:240px}@media (min-width:1200px){.header-inner{width:240px}}.main-inner{align-items:flex-start;display:flex;justify-content:space-between;flex-direction:row-reverse}@media (max-width:991px){.header-inner{border-radius:initial;position:relative;width:auto}.main-inner{width:auto}}.content-wrap{border-radius:initial;box-sizing:border-box;width:calc(100% - 252px)}@media (max-width:991px){.content-wrap{border-radius:initial;padding:20px;width:100%}}.footer-inner{padding-left:260px}.back-to-top{left:auto;right:30px}.site-brand-container{background:#222}@media (max-width:991px){.back-to-top{right:20px}.footer-inner{padding-left:0;padding-right:0;width:auto}.site-brand-container{box-shadow:0 0 16px rgba(0,0,0,.5)}.custom-logo-image{display:none}}.site-meta{padding:20px 0}.brand{padding:0}.site-subtitle{margin:10px 10px 0}.custom-logo-image{margin-top:20px}.site-nav-right .toggle,.site-nav-toggle .toggle{color:#fff}.site-nav-right .toggle .toggle-line,.site-nav-toggle .toggle .toggle-line{background:#fff}@media (min-width:768px) and (max-width:991px){.site-nav-right,.site-nav-toggle{display:flex;flex-direction:column;justify-content:center}.site-nav{display:none}}.menu .menu-item{display:block;margin:0}.menu .menu-item a,.menu .menu-item span.exturl{padding:5px 20px;position:relative;text-align:left;transition-property:background-color}@media (max-width:991px){.menu .menu-item.menu-item-search{display:none}}.menu .menu-item .badge{background:#ccc;border-radius:10px;color:#fff;float:right;padding:2px 5px;text-shadow:1px 1px 0 rgba(0,0,0,.1);vertical-align:middle}.main-menu .menu-item-active a::after{background:#bbb;border-radius:50%;content:' ';height:6px;margin-top:-3px;position:absolute;right:15px;top:50%;width:6px}.sidebar-inner,.sub-menu{background:var(--content-bg-color)}.sub-menu{margin:0;padding:6px 0}.sub-menu .menu-item{display:inline-block}.sub-menu .menu-item a,.sub-menu .menu-item span.exturl{background:0 0;margin:5px 10px;padding:initial}.sub-menu .menu-item a:hover,.sub-menu .menu-item span.exturl:hover{background:0 0;color:#fc6423}.sub-menu .menu-item-active a{border-bottom-color:#fc6423;color:#fc6423}.sub-menu .menu-item-active a:hover{border-bottom-color:#fc6423}.sidebar{background:var(--body-bg-color);box-shadow:none;margin-top:100%;position:static;width:240px}@media (max-width:991px){.sidebar{display:none}}.sidebar-toggle{display:none}.sidebar-inner{border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12),0 -1px .5px 0 rgba(0,0,0,.09);box-sizing:border-box;color:var(--text-color);width:240px;opacity:0}.sidebar-inner.affix{position:fixed;top:12px}.sidebar-inner.affix-bottom{position:absolute}.site-state-item{padding:0 10px}.sidebar-button{border-bottom:1px dotted #ccc;border-top:1px dotted #ccc;margin-top:10px}.sidebar-button a{border:0;color:#fc6423;display:block}.sidebar-button a:hover{background:0 0;border:0;color:#e34603}.sidebar-button a:hover .fa,.sidebar-button a:hover .fab,.sidebar-button a:hover .far,.sidebar-button a:hover .fas{color:#e34603}.links-of-author{display:flex;flex-wrap:wrap;margin-top:10px;justify-content:center}.links-of-author-item{margin:5px 0 0;width:50%}.comments,.post-block+.post-block{margin-top:12px}.links-of-author-item a,.links-of-author-item span.exturl{box-sizing:border-box;margin-bottom:0;margin-right:0;max-width:216px;overflow:hidden;padding:0 5px;text-overflow:ellipsis;white-space:nowrap;border-bottom:none;display:block;text-decoration:none}.links-of-author-item a::before,.links-of-author-item span.exturl::before,.post-eof{display:none}.links-of-author-item a:hover,.links-of-author-item span.exturl:hover{background:var(--body-bg-color);border-radius:4px}.links-of-author-item .fa,.links-of-author-item .fab,.links-of-author-item .far,.links-of-author-item .fas{margin-right:2px}.links-of-blogroll-item{padding:0}.content-wrap{background:initial;box-shadow:initial;padding:initial}.comments,.post-block{padding:40px;background:var(--content-bg-color)}.post-block{border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12)}.comments,.pagination,.post-block+.post-block{border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12),0 -1px .5px 0 rgba(0,0,0,.09)}.tabs-comment{margin-top:1em}.content{padding-top:initial}.pagination{background:var(--content-bg-color);border-top:initial;margin:12px 0 0;padding:10px 0}.pagination .next,.pagination .page-number,.pagination .prev{margin-bottom:initial;top:initial}.main{padding-bottom:initial}.footer{bottom:auto}.sub-menu{border-bottom:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12)}.sub-menu+.content .post-block{box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12),0 -1px .5px 0 rgba(0,0,0,.09);margin-top:12px}@media (min-width:768px) and (max-width:991px){.sub-menu+.content .post-block{margin-top:10px}}@media (max-width:767px){.sub-menu+.content .post-block{margin-top:8px}}.post-body h1,.post-body h2{border-bottom:1px solid #eee}.post-body h3{border-bottom:1px dotted #eee}@media (min-width:768px) and (max-width:991px){.content-wrap{padding:10px}.posts-expand .post-button{margin-top:20px}.comments,.post-block+.post-block{margin-top:10px}.post-block{border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12),0 -1px .5px 0 rgba(0,0,0,.09);padding:20px}.comments{padding:10px 20px}.pagination{margin:10px 0 0}}@media (max-width:767px){.content-wrap{padding:8px}.posts-expand .post-button{margin:12px 0}.comments,.post-block+.post-block{margin-top:8px}.post-block{border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12),0 -1px .5px 0 rgba(0,0,0,.09);min-height:auto;padding:12px}.comments{padding:10px 12px}.pagination{margin:8px 0 0}} \ No newline at end of file +code,h5,kbd,pre,samp{font-size:1em}button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}.table-container,pre,textarea{overflow:auto}p,table{margin:0 0 20px}:root{--body-bg-color:#eee;--content-bg-color:#fff;--card-bg-color:#f5f5f5;--text-color:#555;--blockquote-color:#666;--link-color:#555;--link-hover-color:#222;--brand-color:#fff;--brand-hover-color:#fff;--table-row-odd-bg-color:#f9f9f9;--table-row-hover-bg-color:#f5f5f5;--menu-item-bg-color:#f5f5f5;--btn-default-bg:#fff;--btn-default-color:#555;--btn-default-border-color:#555;--btn-default-hover-bg:#222;--btn-default-hover-color:#fff;--btn-default-hover-border-color:#222}html{line-height:1.15;-webkit-text-size-adjust:100%}details,main{display:block}hr{box-sizing:content-box}a{background:0 0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}.post-body,a,code,span.exturl{overflow-wrap:break-word;word-wrap:break-word}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.btn,body{line-height:2}.post-body,.posts-expand .post-meta,.site-title,body,h1,h2,h3,h4,h5,h6{font-family:Lato,"PingFang SC","Microsoft YaHei",sans-serif}summary{display:list-item}[hidden],template{display:none}::selection{background:#262a30;color:#eee}body,html{height:100%}body{margin:0;background:var(--body-bg-color);color:var(--text-color);font-size:1em}@media (max-width:991px){body{padding-left:0!important;padding-right:0!important}}h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.5;margin:20px 0 15px}h1{font-size:1.5em}h2{font-size:1.375em}h3{font-size:1.25em}h4{font-size:1.125em}.btn,.highlight figcaption,h6,pre code,table{font-size:.875em}a,span.exturl{border-bottom:1px solid #999;color:var(--link-color);outline:0;text-decoration:none;cursor:pointer}a:hover,span.exturl:hover{border-bottom-color:var(--link-hover-color);color:var(--link-hover-color)}iframe,img,video{display:block;margin-left:auto;margin-right:auto;max-width:100%}hr{background-image:repeating-linear-gradient(-45deg,#ddd,#ddd 4px,transparent 4px,transparent 8px);border:0;height:3px;margin:40px 0}blockquote{border-left:4px solid #ddd;color:var(--blockquote-color);margin:0;padding:0 15px}blockquote cite::before{content:'-';padding:0 5px}dt{font-weight:700}dd{margin:0;padding:0}kbd{background-color:#f5f5f5;background-image:linear-gradient(#eee,#fff,#eee);border:1px solid #ccc;border-radius:.2em;box-shadow:.1em .1em .2em rgba(0,0,0,.1);color:#555;font-family:inherit;padding:.1em .3em;white-space:nowrap}table{border-collapse:collapse;border-spacing:0;width:100%}tbody tr:nth-of-type(odd){background:var(--table-row-odd-bg-color)}tbody tr:hover{background:var(--table-row-hover-bg-color)}caption,td,th{font-weight:400;padding:8px;text-align:left;vertical-align:middle}td,th{border:1px solid #ddd;border-bottom:3px solid #ddd}th{font-weight:700;padding-bottom:10px}td{border-bottom-width:1px}.btn{background:var(--btn-default-bg);border:2px solid var(--btn-default-border-color);border-radius:2px;color:var(--btn-default-color);display:inline-block;padding:0 20px;text-decoration:none;transition-property:background-color;transition-delay:0s;transition-duration:.2s;transition-timing-function:ease-in-out}.btn:hover{background:var(--btn-default-hover-bg);border-color:var(--btn-default-hover-border-color);color:var(--btn-default-hover-color)}.btn+.btn{margin:0 0 8px 8px}.btn .fa-fw{text-align:left;width:1.285714285714286em}.toggle{line-height:0}.toggle .toggle-line{background:#fff;display:inline-block;height:2px;left:0;position:relative;top:0;transition:all .4s;vertical-align:top;width:100%}.toggle .toggle-line:not(:first-child){margin-top:3px}.toggle.toggle-arrow .toggle-line-first{left:50%;top:2px;transform:rotate(45deg);width:50%}.toggle.toggle-arrow .toggle-line-middle{left:2px;width:90%}.toggle.toggle-arrow .toggle-line-last{left:50%;top:-2px;transform:rotate(-45deg);width:50%}.toggle.toggle-close .toggle-line-first{transform:rotate(-45deg);top:5px}.toggle.toggle-close .toggle-line-middle{opacity:0}.toggle.toggle-close .toggle-line-last{transform:rotate(45deg);top:-5px}.highlight,pre{background:#f7f7f7;color:#4d4d4c;line-height:1.6;margin:0 auto 20px}code,pre{font-family:consolas,Menlo,monospace,"PingFang SC","Microsoft YaHei"}code{background:#eee;border-radius:3px;color:#555;padding:2px 4px}.highlight ::selection{background:#d6d6d6}.highlight pre{border:0;margin:0;padding:10px 0}.highlight table{border:0;margin:0;width:auto}.highlight td{border:0;padding:0}.highlight figcaption{background:#eff2f3;color:#4d4d4c;display:flex;justify-content:space-between;line-height:1.2;padding:.5em}.highlight figcaption a{color:#4d4d4c}.highlight figcaption a:hover{border-bottom-color:#4d4d4c}.highlight .gutter{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.highlight .gutter pre{background:#eff2f3;color:#869194;padding-left:10px;padding-right:10px;text-align:right}.highlight .code pre{background:#f7f7f7;padding-left:10px;width:100%}.gist table{width:auto}.gist table td{border:0}pre{padding:10px}pre code{background:0 0;color:#4d4d4c;padding:0;text-shadow:none}pre .deletion{background:#fdd}pre .addition{background:#dfd}pre .meta{color:#eab700;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none}pre .comment{color:#8e908c}pre .attribute,pre .css .class,pre .css .id,pre .css .pseudo,pre .html .doctype,pre .name,pre .regexp,pre .ruby .constant,pre .tag,pre .variable,pre .xml .doctype,pre .xml .pi,pre .xml .tag .title{color:#c82829}pre .built_in,pre .builtin-name,pre .command,pre .constant,pre .literal,pre .number,pre .params,pre .preprocessor{color:#f5871f}pre .css .rules .attribute,pre .formula,pre .header,pre .inheritance,pre .ruby .class .title,pre .ruby .symbol,pre .special,pre .string,pre .symbol,pre .value,pre .xml .cdata{color:#718c00}pre .css .hexcolor,pre .title{color:#3e999f}pre .coffeescript .title,pre .function,pre .javascript .title,pre .perl .sub,pre .python .decorator,pre .python .title,pre .ruby .function .title,pre .ruby .title .keyword{color:#4271ae}pre .javascript .function,pre .keyword{color:#8959a8}.blockquote-center{border-left:none;margin:40px 0;padding:0;position:relative;text-align:center}.blockquote-center .fa{display:block;opacity:.6;position:absolute;width:100%}.blockquote-center .fa-quote-left{border-top:1px solid #ccc;text-align:left;top:-20px}.blockquote-center .fa-quote-right{border-bottom:1px solid #ccc;text-align:right;bottom:-20px}.blockquote-center div,.blockquote-center p{text-align:center}.post-body .group-picture img{margin:0 auto;padding:0 3px}.group-picture-row{margin-bottom:6px;overflow:hidden}.group-picture-column{float:left;margin-bottom:10px}.post-body .note,.post-body .tabs{margin-bottom:20px}.post-body .label{color:#555;display:inline;padding:0 2px}.post-body .label.default{background:#f0f0f0}.post-body .label.primary{background:#efe6f7}.post-body .label.info{background:#e5f2f8}.post-body .label.success{background:#e7f4e9}.post-body .label.warning{background:#fcf6e1}.post-body .label.danger{background:#fae8eb}.post-body .tabs,.tabs-comment{display:block;padding-top:10px;position:relative}.post-body .tabs ul.nav-tabs,.tabs-comment ul.nav-tabs{display:flex;flex-wrap:wrap;margin:0 0 -1px;padding:0}.post-body .tabs ul.nav-tabs li.tab,.tabs-comment ul.nav-tabs li.tab{border-bottom:1px solid #ddd;border-left:1px solid transparent;border-right:1px solid transparent;border-top:3px solid transparent;flex-grow:1;list-style-type:none;border-radius:0}@media (max-width:413px){.post-body .tabs ul.nav-tabs,.tabs-comment ul.nav-tabs{display:block;margin-bottom:5px}.post-body .tabs ul.nav-tabs li.tab,.tabs-comment ul.nav-tabs li.tab{border-bottom:1px solid transparent;border-left:3px solid transparent;border-right:1px solid transparent;border-top:1px solid transparent;border-radius:0}}.post-body .tabs ul.nav-tabs li.tab a,.tabs-comment ul.nav-tabs li.tab a{border-bottom:initial;display:block;line-height:1.8;outline:0;padding:.25em .75em;text-align:center;transition-delay:0s;transition-duration:.2s;transition-timing-function:ease-out}.menu-item a,.menu-item span.exturl,.pagination .next,.pagination .page-number,.pagination .prev{transition-property:border-color;transition-delay:0s;transition-duration:.2s;transition-timing-function:ease-in-out}.post-body .tabs ul.nav-tabs li.tab a i,.tabs-comment ul.nav-tabs li.tab a i{width:1.285714285714286em}.post-body .tabs ul.nav-tabs li.tab.active,.tabs-comment ul.nav-tabs li.tab.active{border-bottom:1px solid transparent;border-left:1px solid #ddd;border-right:1px solid #ddd;border-top:3px solid #fc6423}@media (max-width:413px){.post-body .tabs ul.nav-tabs li.tab.active,.tabs-comment ul.nav-tabs li.tab.active{border-bottom:1px solid #ddd;border-left:3px solid #fc6423;border-right:1px solid #ddd;border-top:1px solid #ddd}}.post-body .tabs ul.nav-tabs li.tab.active a,.tabs-comment ul.nav-tabs li.tab.active a{color:var(--link-color);cursor:default}.post-body .tabs .tab-content .tab-pane,.tabs-comment .tab-content .tab-pane{border:1px solid #ddd;border-top:0;padding:20px 20px 0;border-radius:0}.post-body .tabs .tab-content .tab-pane:not(.active),.tabs-comment .tab-content .tab-pane:not(.active){display:none}.post-body .tabs .tab-content .tab-pane.active,.tabs-comment .tab-content .tab-pane.active{display:block}.post-body .tabs .tab-content .tab-pane.active:nth-of-type(1),.tabs-comment .tab-content .tab-pane.active:nth-of-type(1){border-radius:0}@media (max-width:413px){.post-body .tabs .tab-content .tab-pane.active:nth-of-type(1),.tabs-comment .tab-content .tab-pane.active:nth-of-type(1){border-radius:0}}.post-body .note{border-radius:3px;padding:1em;position:relative;border:1px solid #eee;border-left-width:5px}.post-body .note h2,.post-body .note h3,.post-body .note h4,.post-body .note h5,.post-body .note h6{margin-top:0;border-bottom:initial;margin-bottom:0;padding-top:0}.post-body .note blockquote:first-child,.post-body .note img:first-child,.post-body .note ol:first-child,.post-body .note p:first-child,.post-body .note pre:first-child,.post-body .note table:first-child,.post-body .note ul:first-child{margin-top:0}.post-body .note blockquote:last-child,.post-body .note img:last-child,.post-body .note ol:last-child,.post-body .note p:last-child,.post-body .note pre:last-child,.post-body .note table:last-child,.post-body .note ul:last-child{margin-bottom:0}.post-body .note.default{border-left-color:#777}.post-body .note.default h2,.post-body .note.default h3,.post-body .note.default h4,.post-body .note.default h5,.post-body .note.default h6{color:#777}.post-body .note.primary{border-left-color:#6f42c1}.post-body .note.primary h2,.post-body .note.primary h3,.post-body .note.primary h4,.post-body .note.primary h5,.post-body .note.primary h6{color:#6f42c1}.post-body .note.info{border-left-color:#428bca}.post-body .note.info h2,.post-body .note.info h3,.post-body .note.info h4,.post-body .note.info h5,.post-body .note.info h6{color:#428bca}.post-body .note.success{border-left-color:#5cb85c}.post-body .note.success h2,.post-body .note.success h3,.post-body .note.success h4,.post-body .note.success h5,.post-body .note.success h6{color:#5cb85c}.post-body .note.warning{border-left-color:#f0ad4e}.post-body .note.warning h2,.post-body .note.warning h3,.post-body .note.warning h4,.post-body .note.warning h5,.post-body .note.warning h6{color:#f0ad4e}.post-body .note.danger{border-left-color:#d9534f}.post-body .note.danger h2,.post-body .note.danger h3,.post-body .note.danger h4,.post-body .note.danger h5,.post-body .note.danger h6{color:#d9534f}.pagination .next,.pagination .page-number,.pagination .prev,.pagination .space{display:inline-block;margin:0 10px;padding:0 11px;position:relative;top:-1px}@media (max-width:767px){.pagination .next,.pagination .page-number,.pagination .prev,.pagination .space{margin:0 5px}}.pagination{text-align:center}.pagination .next,.pagination .page-number,.pagination .prev{border-bottom:0;border-top:1px solid #eee}.pagination .next:hover,.pagination .page-number:hover,.pagination .prev:hover{border-top-color:#222}.pagination .space{margin:0;padding:0}.pagination .prev{margin-left:0}.pagination .next{margin-right:0}.pagination .page-number.current{background:#ccc;border-top-color:#ccc;color:#fff}@media (max-width:767px){.pagination{border-top:none}.pagination .next,.pagination .page-number,.pagination .prev{border-bottom:1px solid #eee;border-top:0;margin-bottom:10px;padding:0 10px}.pagination .next:hover,.pagination .page-number:hover,.pagination .prev:hover{border-bottom-color:#222}}.comments{overflow:hidden}.comment-button-group{display:flex;flex-wrap:wrap-reverse;justify-content:center;margin:1em 0}.comment-button-group .comment-button{margin:.1em .2em}.comment-button-group .comment-button.active{background:var(--btn-default-hover-bg);border-color:var(--btn-default-hover-border-color);color:var(--btn-default-hover-color)}.comment-position{display:none}.comment-position.active{display:block}.tabs-comment{background:var(--content-bg-color);padding-top:0}.tabs-comment .comments{border:0;box-shadow:none;margin-top:0;padding-top:0}.container{min-height:100%;position:relative}.main-inner{margin:0 auto;width:calc(100% - 20px)}@media (min-width:1200px){.main-inner{width:1160px}}@media (min-width:1600px){.main-inner{width:73%}}@media (max-width:767px){.content-wrap{padding:0 20px}.site-meta{text-align:center}}.header{background:0 0}.header-inner{margin:0 auto}@media (min-width:1200px){.header-inner{width:1160px}}@media (min-width:1600px){.header-inner{width:73%}}.site-brand-container{display:flex;flex-shrink:0;padding:0 10px}.headband{background:#222;height:3px}.site-meta{flex-grow:1;text-align:center}.brand{border-bottom:none;color:var(--brand-color);display:inline-block;line-height:1.375em;position:relative}.brand:hover{color:var(--brand-hover-color)}.site-title{font-size:1.375em;font-weight:400;margin:0}.site-subtitle{color:#ddd;font-size:.8125em}.use-motion .brand{opacity:0}.use-motion .custom-logo-image,.use-motion .site-subtitle,.use-motion .site-title{opacity:0;position:relative;top:-10px}.site-nav-right,.site-nav-toggle{display:none}@media (max-width:767px){.site-nav-right,.site-nav-toggle{display:flex;flex-direction:column;justify-content:center}}.site-nav-right .toggle,.site-nav-toggle .toggle{padding:10px;width:22px}.site-nav-right .toggle .toggle-line,.site-nav-toggle .toggle .toggle-line{border-radius:1px}.site-nav{display:block}@media (max-width:767px){.site-nav{clear:both;display:none}}.site-nav.site-nav-on{display:block}.menu{margin-top:20px;padding-left:0;text-align:center}.menu-item{display:inline-block;list-style:none;margin:0 10px}@media (max-width:767px){.menu-item{display:block;margin-top:10px}.menu-item.menu-item-search{display:none}}.menu-item a,.menu-item span.exturl{border-bottom:0;display:block;font-size:.8125em}@media (hover:none){.menu-item a:hover,.menu-item span.exturl:hover{border-bottom-color:transparent!important}}.menu-item .fa,.menu-item .fab,.menu-item .far,.menu-item .fas{margin-right:8px}.menu-item .badge{display:inline-block;font-weight:700;line-height:1;margin-left:.35em;margin-top:.35em;text-align:center;white-space:nowrap}@media (max-width:767px){.menu-item .badge{float:right;margin-left:0}}.menu .menu-item a:hover,.menu .menu-item span.exturl:hover,.menu-item-active a{background:var(--menu-item-bg-color)}.use-motion .menu-item{opacity:0}.sidebar{bottom:0;top:0}.sidebar-inner{color:#999;padding:18px 10px;text-align:center}.cc-license{margin-top:10px;text-align:center}.cc-license .cc-opacity{border-bottom:none;opacity:.7}.cc-license .cc-opacity:hover{opacity:.9}.cc-license img{display:inline-block}.site-author-image{border:1px solid #eee;display:block;margin:0 auto;max-width:120px;padding:2px;border-radius:50%;transition:2s all}.site-author-name{color:var(--text-color);font-weight:600;margin:0;text-align:center}.site-description{color:#999;font-size:.8125em;margin-top:0;text-align:center}.links-of-author a,.links-of-author span.exturl{border-bottom-color:#555;display:inline-block;font-size:.8125em;margin-bottom:10px;margin-right:10px;vertical-align:middle}.links-of-author a::before,.links-of-author span.exturl::before{background:#52b836;border-radius:50%;content:' ';display:inline-block;height:4px;margin-right:3px;vertical-align:middle;width:4px}.sidebar-button a{border-radius:4px;padding:0 15px}.sidebar-button a .fa,.sidebar-button a .fab,.sidebar-button a .far,.sidebar-button a .fas{margin-right:5px}.links-of-blogroll{font-size:.8125em;margin-top:10px}.links-of-blogroll-title{font-size:.875em;font-weight:600;margin-top:0}.links-of-blogroll-list{list-style:none;margin:0;padding:0}#sidebar-dimmer{display:none}@media (max-width:767px){#sidebar-dimmer{background:#000;display:block;height:100%;left:100%;opacity:0;position:fixed;top:0;width:100%;z-index:1100}.sidebar-active+#sidebar-dimmer{opacity:.7;transform:translateX(-100%);transition:opacity .5s}}.back-to-top,.post-toc ol a,.posts-collapse .post-header,.posts-collapse .post-header::before,.posts-expand .post-title-link::before{transition-delay:0s;transition-duration:.2s;transition-timing-function:ease-in-out}.sidebar-nav{margin:0;padding-bottom:20px;padding-left:0}.sidebar-nav li{border-bottom:1px solid transparent;color:var(--text-color);cursor:pointer;display:inline-block;font-size:.875em}.sidebar-nav li.sidebar-nav-overview{margin-left:10px}.sidebar-nav li:hover{color:#fc6423}.sidebar-nav .sidebar-nav-active{border-bottom-color:#fc6423;color:#fc6423}.sidebar-nav .sidebar-nav-active:hover{color:#fc6423}.sidebar-panel{display:none;overflow-x:hidden;overflow-y:auto}.sidebar-panel-active{display:block}.sidebar-toggle{background:#222;bottom:45px;cursor:pointer;height:14px;left:30px;padding:5px;position:fixed;width:14px;z-index:1300}@media (max-width:991px){.sidebar-toggle{left:20px;opacity:.8;display:none}}.sidebar-toggle:hover .toggle-line{background:#fc6423}.post-toc{font-size:.875em}.post-toc ol{list-style:none;margin:0;padding:0 2px 5px 10px;text-align:left}.post-toc ol>ol{padding-left:0}.post-toc ol a{transition-property:all}.post-toc .nav-item{line-height:1.8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.post-toc .nav .active-current>.nav-child,.post-toc .nav .active-current>.nav-child>.nav-item,.post-toc .nav .active>.nav-child,.post-toc .nav .nav-child{display:block}.post-toc .nav .active>a{border-bottom-color:#fc6423;color:#fc6423}.post-toc .nav .active-current>a,.post-toc .nav .active-current>a:hover{color:#fc6423}.site-state{display:flex;justify-content:center;line-height:1.4;margin-top:10px;overflow:hidden;text-align:center;white-space:nowrap}.site-state-item:not(:first-child){border-left:1px solid #eee}.site-state-item a{border-bottom:none}.site-state-item-count{display:block;font-size:1em;font-weight:600;text-align:center}.languages,.powered-by,.theme-info,.with-love{display:inline-block}.site-state-item-name{color:#999;font-size:.8125em}.footer{color:#999;font-size:.875em;padding:20px 0}.footer.footer-fixed{bottom:0;left:0;position:absolute;right:0}.footer-inner{box-sizing:border-box;margin:0 auto;text-align:center;width:calc(100% - 20px)}@media (min-width:1200px){.footer-inner{width:1160px}}@media (min-width:1600px){.footer-inner{width:73%}}.languages{font-size:1.125em;position:relative}.languages .lang-select-label span{margin:0 .5em}.languages .lang-select{height:100%;left:0;opacity:0;position:absolute;top:0;width:100%}.with-love{color:red;margin:0 5px}@-moz-keyframes iconAnimate{0%,100%{transform:scale(1)}10%,30%{transform:scale(.9)}20%,40%,50%,60%,70%,80%{transform:scale(1.1)}}@-webkit-keyframes iconAnimate{0%,100%{transform:scale(1)}10%,30%{transform:scale(.9)}20%,40%,50%,60%,70%,80%{transform:scale(1.1)}}@-o-keyframes iconAnimate{0%,100%{transform:scale(1)}10%,30%{transform:scale(.9)}20%,40%,50%,60%,70%,80%{transform:scale(1.1)}}@keyframes iconAnimate{0%,100%{transform:scale(1)}10%,30%{transform:scale(.9)}20%,40%,50%,60%,70%,80%{transform:scale(1.1)}}.back-to-top{font-size:12px;text-align:center;background:#222;bottom:-100px;box-sizing:border-box;color:#fff;cursor:pointer;opacity:.6;padding:0 6px;position:fixed;transition-property:bottom;z-index:1300;width:24px}.back-to-top span{display:none}.back-to-top:hover{color:#fc6423}.back-to-top.back-to-top-on{bottom:30px}@media (max-width:991px){.back-to-top{left:20px;opacity:.8}}@media (min-width:1200px){.post-body{font-size:1.125em}}.post-body .exturl .fa{font-size:.875em;margin-left:4px}.post-body .figure .caption,.post-body .image-caption{color:#999;font-size:.875em;font-weight:700;line-height:1;margin:-20px auto 15px;text-align:center}.post-sticky-flag{display:inline-block;transform:rotate(30deg)}.post-button{margin-top:40px;text-align:center}.use-motion .collection-header,.use-motion .comments,.use-motion .pagination,.use-motion .post-block,.use-motion .post-body,.use-motion .post-header{opacity:0}.posts-collapse{margin-left:35px;position:relative}@media (max-width:767px){.posts-collapse{margin-left:0;margin-right:0}}.posts-collapse .collection-title{font-size:1.125em;position:relative}.posts-collapse .collection-title::before{background:#999;border:1px solid #fff;border-radius:50%;content:' ';height:10px;left:0;margin-left:-6px;margin-top:-4px;position:absolute;top:50%;width:10px}.posts-collapse .collection-year{font-size:1.5em;font-weight:700;margin:60px 0;position:relative}.posts-collapse .collection-year::before{background:#bbb;border-radius:50%;content:' ';height:8px;left:0;margin-left:-4px;margin-top:-4px;position:absolute;top:50%;width:8px}.posts-collapse .collection-header{display:block;margin:0 0 0 20px}.posts-collapse .collection-header small{color:#bbb;margin-left:5px}.posts-collapse .post-header{border-bottom:1px dashed #ccc;margin:30px 0;padding-left:15px;position:relative;transition-property:border}.posts-collapse .post-header::before,.posts-collapse::before{content:' ';position:absolute;left:0}.posts-collapse .post-header::before{background:#bbb;border:1px solid #fff;border-radius:50%;height:6px;margin-left:-4px;top:.75em;transition-property:background;width:6px}.posts-collapse .post-header:hover{border-bottom-color:#666}.posts-collapse .post-header:hover::before{background:#222}.posts-collapse .post-meta{display:inline;font-size:.75em;margin-right:10px}.posts-collapse .post-title{display:inline}.posts-collapse .post-title a,.posts-collapse .post-title span.exturl{border-bottom:none;color:var(--link-color)}.posts-collapse .post-title .fa-external-link-alt{font-size:.875em;margin-left:5px}.posts-collapse::before{background:#f5f5f5;height:100%;margin-left:-2px;top:1.25em;width:4px}.post-eof{background:#ccc;height:1px;margin:80px auto 60px;text-align:center;width:8%}.post-block:last-of-type .post-eof{display:none}.content{padding-top:40px}@media (min-width:992px){.post-body{text-align:justify}}@media (max-width:991px){.post-body{text-align:justify}}.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{padding-top:10px}.post-body h1 .header-anchor,.post-body h2 .header-anchor,.post-body h3 .header-anchor,.post-body h4 .header-anchor,.post-body h5 .header-anchor,.post-body h6 .header-anchor{border-bottom-style:none;color:#ccc;float:right;margin-left:10px;visibility:hidden}.post-body h1 .header-anchor:hover,.post-body h2 .header-anchor:hover,.post-body h3 .header-anchor:hover,.post-body h4 .header-anchor:hover,.post-body h5 .header-anchor:hover,.post-body h6 .header-anchor:hover{color:inherit}.post-body h1:hover .header-anchor,.post-body h2:hover .header-anchor,.post-body h3:hover .header-anchor,.post-body h4:hover .header-anchor,.post-body h5:hover .header-anchor,.post-body h6:hover .header-anchor{visibility:visible}.post-body iframe,.post-body img,.post-body video{margin-bottom:20px}.post-body .video-container{height:0;margin-bottom:20px;overflow:hidden;padding-top:75%;position:relative;width:100%}.post-body .video-container embed,.post-body .video-container iframe,.post-body .video-container object{height:100%;left:0;margin:0;position:absolute;top:0;width:100%}.post-gallery{align-items:center;display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 1fr;margin-bottom:20px}.post-gallery a{border:0}.post-gallery img{margin:0}.posts-expand .post-header{font-size:1.125em}.posts-expand .post-title{font-size:1.5em;font-weight:400;margin:initial;text-align:center;overflow-wrap:break-word;word-wrap:break-word}.posts-expand .post-title-link{border-bottom:none;color:var(--link-color);display:inline-block;position:relative;vertical-align:top}.posts-expand .post-title-link::before{background:var(--link-color);bottom:0;content:'';height:2px;left:0;position:absolute;transform:scaleX(0);visibility:hidden;width:100%}.posts-expand .post-title-link:hover::before{transform:scaleX(1);visibility:visible}.posts-expand .post-title-link .fa-external-link-alt{font-size:.875em;margin-left:5px}.posts-expand .post-meta{color:#999;font-size:.75em;margin:3px 0 60px;text-align:center}.posts-expand .post-meta .post-description{font-size:.875em;margin-top:2px}.posts-expand .post-meta time{border-bottom:1px dashed #999;cursor:pointer}.post-meta .post-meta-item+.post-meta-item::before{content:'|';margin:0 .5em}.post-meta-divider{margin:0 .5em}.post-meta-item-icon{margin-right:3px}@media (max-width:991px){.post-meta-item-icon{display:inline-block}.post-meta-item-text{display:none}}.post-nav{border-top:1px solid #eee;display:flex;justify-content:space-between;margin-top:15px;padding:10px 5px 0}.post-nav-item{flex:1}.post-nav-item a{border-bottom:none;display:block;font-size:.875em;line-height:1.6;position:relative}.post-nav-item a:active{top:2px}.post-nav-item .fa{font-size:.75em}.post-nav-item:first-child{margin-right:15px}.post-nav-item:first-child .fa{margin-right:5px}.post-nav-item:last-child{margin-left:15px;text-align:right}#qr p,.category-all-page .category-all-title,.event-list .event .event-details::before,.post-tags,.post-widgets,.reward-container,.sidebar-button,.social-like,.tag-cloud,.wp_rating,ul.breadcrumb{text-align:center}.post-nav-item:last-child .fa{margin-left:5px}.rtl.post-body a,.rtl.post-body h1,.rtl.post-body h2,.rtl.post-body h3,.rtl.post-body h4,.rtl.post-body h5,.rtl.post-body h6,.rtl.post-body li,.rtl.post-body ol,.rtl.post-body p,.rtl.post-body ul{direction:rtl;font-family:UKIJ Ekran}.rtl.post-title{font-family:UKIJ Ekran}.post-tags{margin-top:40px}.post-tags a{display:inline-block;font-size:.8125em}.post-tags a:not(:last-child){margin-right:10px}.post-widgets{border-top:1px solid #eee;margin-top:15px}.wp_rating{height:20px;line-height:20px;margin-top:10px;padding-top:6px}.social-like{display:flex;font-size:.875em;justify-content:center}.reward-container{margin:20px auto;padding:10px 0;width:90%}.reward-container button{background:#ff2a2a;border:0;border-radius:5px;color:#fff;cursor:pointer;line-height:2;outline:0;padding:0 15px;vertical-align:text-top}.reward-container button:hover{background:#f55}#qr{padding-top:20px}#qr a{border:0}#qr img{display:inline-block;margin:.8em 2em 0;max-width:100%;width:180px}.post-copyright{background:var(--card-bg-color);border-left:3px solid #ff2a2a;list-style:none;margin:2em 0 0;padding:.5em 1em}.my_post_copyright{width:85%;max-width:45em;margin:2.8em auto 0;padding:.5em 1em;border:1px solid #d3d3d3;font-size:.93rem;line-height:1.6em;word-break:break-all;background:rgba(255,255,255,.4)}.my_post_copyright p{margin:0}.my_post_copyright span{display:inline-block;width:5.2em;color:#333;font-weight:700}.my_post_copyright .raw{margin-left:1em;width:5em}.my_post_copyright a{color:grey;border-bottom:0}.my_post_copyright a:hover{color:#0593d3;text-decoration:underline}.my_post_copyright:hover .fa-clipboard{color:#000}.my_post_copyright .post-url:hover{font-weight:400}.my_post_copyright .copy-path{margin-left:1em;width:1em}@media (max-width:767px){.post-gallery{grid-template-columns:1fr 1fr}.my_post_copyright .copy-path{display:none}}.my_post_copyright .copy-path:hover{color:grey;cursor:pointer}.category-all-page .category-all{margin-top:20px}.category-all-page .category-list{list-style:none;margin:0;padding:0}.category-all-page .category-list-item{margin:5px 10px}.category-all-page .category-list-count{color:#bbb}.category-all-page .category-list-count::before{content:' (';display:inline}.category-all-page .category-list-count::after{content:') ';display:inline}.category-all-page .category-list-child{padding-left:10px}.event-list{padding:0}.event-list hr{background:#222;margin:20px 0 45px}.event-list hr::after{background:#222;color:#fff;content:'NOW';display:inline-block;font-weight:700;padding:0 5px;text-align:right}.event-list .event{background:#222;margin:20px 0;min-height:40px;padding:15px 0 15px 10px}.event-list .event .event-summary{color:#fff;margin:0;padding-bottom:3px}.event-list .event .event-summary::before{animation:dot-flash 1s alternate infinite ease-in-out;color:#fff;content:'\f111';display:inline-block;font-size:10px;margin-right:25px;vertical-align:middle;font-family:'Font Awesome 5 Free';font-weight:900}.event-list .event .event-relative-time{color:#bbb;display:inline-block;font-size:12px;font-weight:400;padding-left:12px}.event-list .event .event-details{color:#fff;display:block;line-height:18px;margin-left:56px;padding-bottom:6px;padding-top:3px;text-indent:-24px}.event-list .event .event-details::before{color:#fff;display:inline-block;margin-right:9px;text-indent:0;width:14px;font-family:'Font Awesome 5 Free';font-weight:900}.event-list .event .event-details.event-location::before{content:'\f041'}.event-list .event .event-details.event-duration::before{content:'\f017'}.event-list .event-past{background:#f5f5f5}.event-list .event-past .event-details,.event-list .event-past .event-summary{color:#bbb;opacity:.9}.event-list .event-past .event-details::before,.event-list .event-past .event-summary::before{animation:none;color:#bbb}@-moz-keyframes dot-flash{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.8)}}@-webkit-keyframes dot-flash{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.8)}}@-o-keyframes dot-flash{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.8)}}@keyframes dot-flash{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.8)}}ul.breadcrumb{font-size:.75em;list-style:none;margin:1em 0;padding:0 2em}ul.breadcrumb li{display:inline}ul.breadcrumb li+li::before{content:'/\00a0';font-weight:400;padding:.5em}ul.breadcrumb li+li:last-child{font-weight:700}.tag-cloud a{display:inline-block;margin:10px}.tag-cloud a:hover{color:var(--link-hover-color)!important}.header{margin:0 auto;position:relative;width:calc(100% - 20px)}@media (min-width:1200px){.header{width:1160px}}@media (min-width:1600px){.header{width:73%}}@media (max-width:991px){.header{width:auto}}.header-inner{background:var(--content-bg-color);border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12);overflow:hidden;padding:0;position:absolute;top:0;width:240px}@media (min-width:1200px){.header-inner{width:240px}}.main-inner{align-items:flex-start;display:flex;justify-content:space-between;flex-direction:row-reverse}@media (max-width:991px){.header-inner{border-radius:initial;position:relative;width:auto}.main-inner{width:auto}}.content-wrap{border-radius:initial;box-sizing:border-box;width:calc(100% - 252px)}@media (max-width:991px){.content-wrap{border-radius:initial;padding:20px;width:100%}}.footer-inner{padding-left:260px}.back-to-top{left:auto;right:30px}.site-brand-container{background:#222}@media (max-width:991px){.back-to-top{right:20px}.footer-inner{padding-left:0;padding-right:0;width:auto}.site-brand-container{box-shadow:0 0 16px rgba(0,0,0,.5)}.custom-logo-image{display:none}}.site-meta{padding:20px 0}.brand{padding:0}.site-subtitle{margin:10px 10px 0}.custom-logo-image{margin-top:20px}.site-nav-right .toggle,.site-nav-toggle .toggle{color:#fff}.site-nav-right .toggle .toggle-line,.site-nav-toggle .toggle .toggle-line{background:#fff}@media (min-width:768px) and (max-width:991px){.site-nav-right,.site-nav-toggle{display:flex;flex-direction:column;justify-content:center}.site-nav{display:none}}.menu .menu-item{display:block;margin:0}.menu .menu-item a,.menu .menu-item span.exturl{padding:5px 20px;position:relative;text-align:left;transition-property:background-color}@media (max-width:991px){.menu .menu-item.menu-item-search{display:none}}.menu .menu-item .badge{background:#ccc;border-radius:10px;color:#fff;float:right;padding:2px 5px;text-shadow:1px 1px 0 rgba(0,0,0,.1);vertical-align:middle}.main-menu .menu-item-active a::after{background:#bbb;border-radius:50%;content:' ';height:6px;margin-top:-3px;position:absolute;right:15px;top:50%;width:6px}.sidebar-inner,.sub-menu{background:var(--content-bg-color)}.sub-menu{margin:0;padding:6px 0}.sub-menu .menu-item{display:inline-block}.sub-menu .menu-item a,.sub-menu .menu-item span.exturl{background:0 0;margin:5px 10px;padding:initial}.sub-menu .menu-item a:hover,.sub-menu .menu-item span.exturl:hover{background:0 0;color:#fc6423}.sub-menu .menu-item-active a{border-bottom-color:#fc6423;color:#fc6423}.sub-menu .menu-item-active a:hover{border-bottom-color:#fc6423}.sidebar{background:var(--body-bg-color);box-shadow:none;margin-top:100%;position:static;width:240px}@media (max-width:991px){.sidebar{display:none}}.sidebar-toggle{display:none}.sidebar-inner{border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12),0 -1px .5px 0 rgba(0,0,0,.09);box-sizing:border-box;color:var(--text-color);width:240px;opacity:0}.sidebar-inner.affix{position:fixed;top:12px}.sidebar-inner.affix-bottom{position:absolute}.site-state-item{padding:0 10px}.sidebar-button{border-bottom:1px dotted #ccc;border-top:1px dotted #ccc;margin-top:10px}.sidebar-button a{border:0;color:#fc6423;display:block}.sidebar-button a:hover{background:0 0;border:0;color:#e34603}.sidebar-button a:hover .fa,.sidebar-button a:hover .fab,.sidebar-button a:hover .far,.sidebar-button a:hover .fas{color:#e34603}.links-of-author{display:flex;flex-wrap:wrap;margin-top:10px;justify-content:center}.links-of-author-item{margin:5px 0 0;width:50%}.comments,.post-block+.post-block{margin-top:12px}.links-of-author-item a,.links-of-author-item span.exturl{box-sizing:border-box;margin-bottom:0;margin-right:0;max-width:216px;overflow:hidden;padding:0 5px;text-overflow:ellipsis;white-space:nowrap;border-bottom:none;display:block;text-decoration:none}.links-of-author-item a::before,.links-of-author-item span.exturl::before,.post-eof{display:none}.links-of-author-item a:hover,.links-of-author-item span.exturl:hover{background:var(--body-bg-color);border-radius:4px}.links-of-author-item .fa,.links-of-author-item .fab,.links-of-author-item .far,.links-of-author-item .fas{margin-right:2px}.links-of-blogroll-item{padding:0}.content-wrap{background:initial;box-shadow:initial;padding:initial}.comments,.post-block{padding:40px;background:var(--content-bg-color)}.post-block{border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12)}.comments,.pagination,.post-block+.post-block{border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12),0 -1px .5px 0 rgba(0,0,0,.09)}.tabs-comment{margin-top:1em}.content{padding-top:initial}.pagination{background:var(--content-bg-color);border-top:initial;margin:12px 0 0;padding:10px 0}.pagination .next,.pagination .page-number,.pagination .prev{margin-bottom:initial;top:initial}.main{padding-bottom:initial}.footer{bottom:auto}.sub-menu{border-bottom:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12)}.sub-menu+.content .post-block{box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12),0 -1px .5px 0 rgba(0,0,0,.09);margin-top:12px}@media (min-width:768px) and (max-width:991px){.sub-menu+.content .post-block{margin-top:10px}}@media (max-width:767px){.sub-menu+.content .post-block{margin-top:8px}}.post-body h1,.post-body h2{border-bottom:1px solid #eee}.post-body h3{border-bottom:1px dotted #eee}@media (min-width:768px) and (max-width:991px){.content-wrap{padding:10px}.posts-expand .post-button{margin-top:20px}.comments,.post-block+.post-block{margin-top:10px}.post-block{border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12),0 -1px .5px 0 rgba(0,0,0,.09);padding:20px}.comments{padding:10px 20px}.pagination{margin:10px 0 0}}@media (max-width:767px){.content-wrap{padding:8px}.posts-expand .post-button{margin:12px 0}.comments,.post-block+.post-block{margin-top:8px}.post-block{border-radius:initial;box-shadow:0 2px 2px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.12),0 -1px .5px 0 rgba(0,0,0,.09);min-height:auto;padding:12px}.comments{padding:10px 12px}.pagination{margin:8px 0 0}} \ No newline at end of file diff --git a/index.html b/index.html index ba18ea03d23c94a69c209b6cb23a8149241f4c2f..2b81e4cf252da156b36e173ed07965661fdf0600 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ -Alderaan的博客
0%

​ 本文主要说明在Hexo博客nexT主题下如何进行美化,具体对应效果可通过本博客页面进行查看。

  • Hexo version: 4.2.0
  • nexT version:7.8.0
阅读全文 »

概述

​ 近来发现,之前学习过、实践过的东西,要用的时候经常一时想不起来。习惯性添加进谷歌浏览器的书签,也会因为对方博客文章删除等无法继续看到。特别的是,部署一个东西需要看几个网上资源才可以完成,书签列表越来越长,难以维护。为此,觉得还是很有必要通过写博客的方式进行分类记录,也方便分享经验。本着能折腾就不闲着的宗旨,在网上查阅有关资料后,决定在GitHub上搭建Hexo个人博客,顺便学习使用Markdown

阅读全文 »
Alderaan的博客
0%

​ 本文主要说明在Hexo博客nexT主题下如何进行美化,具体对应效果可通过本博客页面进行查看。

  • Hexo version: 4.2.0
  • nexT version:7.8.0
阅读全文 »

概述

​ 近来发现,之前学习过、实践过的东西,要用的时候经常一时想不起来。习惯性添加进谷歌浏览器的书签,也会因为对方博客文章删除等无法继续看到。特别的是,部署一个东西需要看几个网上资源才可以完成,书签列表越来越长,难以维护。为此,觉得还是很有必要通过写博客的方式进行分类记录,也方便分享经验。本着能折腾就不闲着的宗旨,在网上查阅有关资料后,决定在GitHub上搭建Hexo个人博客,顺便学习使用Markdown

阅读全文 »
\ No newline at end of file +
\ No newline at end of file diff --git a/tags/Github/index.html b/tags/Github/index.html index 9222a473061bfde3d8a74fceed50d75dfa4d0d4b..99a275370faa04dff9d6eeb5ebc24cc133034adb 100644 --- a/tags/Github/index.html +++ b/tags/Github/index.html @@ -18,4 +18,4 @@ localStorage.setItem('comments_active', commentClass); }); } -
\ No newline at end of file +
\ No newline at end of file diff --git a/tags/Hexo/index.html b/tags/Hexo/index.html index fba8a1809640db081710a523bf307a3398e37cee..8d4fa4e7a09ee32d8aa554f312b246c45def535d 100644 --- a/tags/Hexo/index.html +++ b/tags/Hexo/index.html @@ -18,4 +18,4 @@ localStorage.setItem('comments_active', commentClass); }); } -
\ No newline at end of file +
\ No newline at end of file diff --git a/tags/index.html b/tags/index.html index 7acfaccb5e2519d03e387ce9085219644171da2b..b157bdf8efa5d6b511071e99868599d8512f2a23 100644 --- a/tags/index.html +++ b/tags/index.html @@ -18,4 +18,4 @@ localStorage.setItem('comments_active', commentClass); }); } -
\ No newline at end of file +
\ No newline at end of file