├── partials ├── .DS_Store ├── link.hbs ├── aside.hbs ├── footer.hbs ├── pagination.hbs └── comments.hbs ├── screenshoot ├── m1.png ├── m2.png ├── m3.png ├── m4.png ├── pc1.png ├── pc2.png ├── pc3.png └── pc4.png ├── assets ├── css │ ├── .DS_Store │ ├── font-awesome.min.css │ └── app.css ├── img │ └── .DS_Store ├── js │ ├── .DS_Store │ ├── skywalker.js │ ├── zepto.min.js │ └── highlight.min.js └── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ └── source-code-pro │ ├── SourceCodePro-Light.eot │ ├── SourceCodePro-Light.otf │ ├── SourceCodePro-Light.ttf │ ├── SourceCodePro-Regular.eot │ ├── SourceCodePro-Regular.otf │ ├── SourceCodePro-Regular.ttf │ ├── SourceCodePro-Light.ttf.woff │ └── SourceCodePro-Regular.ttf.woff ├── package.json ├── default.hbs ├── README.md ├── index.hbs ├── page.hbs ├── page-about.hbs ├── post.hbs └── page-archives-post.hbs /partials/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/partials/.DS_Store -------------------------------------------------------------------------------- /screenshoot/m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/screenshoot/m1.png -------------------------------------------------------------------------------- /screenshoot/m2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/screenshoot/m2.png -------------------------------------------------------------------------------- /screenshoot/m3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/screenshoot/m3.png -------------------------------------------------------------------------------- /screenshoot/m4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/screenshoot/m4.png -------------------------------------------------------------------------------- /assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/css/.DS_Store -------------------------------------------------------------------------------- /assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/img/.DS_Store -------------------------------------------------------------------------------- /assets/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/js/.DS_Store -------------------------------------------------------------------------------- /screenshoot/pc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/screenshoot/pc1.png -------------------------------------------------------------------------------- /screenshoot/pc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/screenshoot/pc2.png -------------------------------------------------------------------------------- /screenshoot/pc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/screenshoot/pc3.png -------------------------------------------------------------------------------- /screenshoot/pc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/screenshoot/pc4.png -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/fonts/source-code-pro/SourceCodePro-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/source-code-pro/SourceCodePro-Light.eot -------------------------------------------------------------------------------- /assets/fonts/source-code-pro/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/source-code-pro/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /assets/fonts/source-code-pro/SourceCodePro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/source-code-pro/SourceCodePro-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/source-code-pro/SourceCodePro-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/source-code-pro/SourceCodePro-Regular.eot -------------------------------------------------------------------------------- /assets/fonts/source-code-pro/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/source-code-pro/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /assets/fonts/source-code-pro/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/source-code-pro/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/source-code-pro/SourceCodePro-Light.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/source-code-pro/SourceCodePro-Light.ttf.woff -------------------------------------------------------------------------------- /assets/fonts/source-code-pro/SourceCodePro-Regular.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flute/skywalker/HEAD/assets/fonts/source-code-pro/SourceCodePro-Regular.ttf.woff -------------------------------------------------------------------------------- /partials/link.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "skywalker", 3 | "description": "A sample material design theme", 4 | "version": "2.0.0", 5 | "engines": { 6 | "ghost": ">=2.0.0" 7 | }, 8 | "license": "MIT", 9 | "author": { 10 | "email": "service@ldsun.com" 11 | }, 12 | "config": { 13 | "posts_per_page": 10 14 | } 15 | } -------------------------------------------------------------------------------- /partials/aside.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /partials/footer.hbs: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /partials/pagination.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{meta_title}} 9 | {{ghost_head}} 10 | 11 | 12 | 13 | 14 | {{{body}}} 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # skywalker 2 | 3 | 一款material design风格的响应式简约ghost博客主题 4 | 5 | [demo](https://www.ldsun.com) 6 | 7 | ### 安装使用 8 | 9 | 1. 下载主题压缩包,上传至ghost博客的content/themes/skywalker中,解压,重启ghost系统,然后在后台设置启用主题即可。 10 | 2. 也可以在ghost博客的content/themes/skywalker目录下,执行`git clone git@github.com:flute/skywalker.git`,然后重启ghost系统,然后在后台设置启用主题即可。 11 | 3. about、archives页面需在后台新建两个page,设置页面URL,并在Design->Navigation中按照“显示名称-链接”添加两个页面 12 | 13 | ### 主题说明 14 | 15 | * 适配移动端和pc端 16 | * 随机获取bing图库图片作为背景图 https://github.com/flute/img 17 | * 新增ghost博客文章归档页面 18 | * ~~使用disqus作为评论插件,可自行替换~~ 使用畅言作为评论系统,修改样式屏蔽广告。 19 | * 主题采用flexbox布局 20 | * markdown样式与github相同,代码高亮使用highlight.js 21 | 22 | ### Screenshoot 23 | * mobile: 24 | 25 | 26 | 27 | 28 | * pc 29 | 30 | ![mobile](./screenshoot/pc1.png)![mobile](./screenshoot/pc2.png) 31 | ![mobile](./screenshoot/pc3.png)![mobile](./screenshoot/pc4.png) 32 | 33 | 持续更新中,欢迎使用+star/fork。。。 34 | -------------------------------------------------------------------------------- /index.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 |
3 |
4 | {{> aside}} 5 |
6 |
7 | 8 |
9 | 20 |
21 | {{#foreach posts}} 22 |
23 | 24 |
25 |

{{title}}

26 | {{date format="YYYY-MM-DD HH:mm:ss"}} 27 |
28 |
29 |

{{excerpt}}

30 |
31 | {{#if tags}} 32 | 37 | {{/if}} 38 |
39 | {{/foreach}} 40 | {{pagination}} 41 | {{> footer}} 42 |
43 | 44 |
45 |
-------------------------------------------------------------------------------- /page.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 |
3 |
4 | {{> aside}} 5 |
6 |
7 |
8 | 19 |
20 | {{#post}} 21 |
22 |
23 |
24 | {{#if feature_image}} 25 | {{title}} 26 | {{/if}} 27 |

28 | {{title}} 29 |

30 | 31 |
32 |
33 |
34 | {{content}} 35 |
36 |
37 |
38 | {{> footer}} 39 |
40 |
41 | 42 |
43 |
44 | {{/post}} 45 | -------------------------------------------------------------------------------- /page-about.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 |
3 |
4 | {{> aside}} 5 |
6 |
7 |
8 | 19 |
20 | {{#post}} 21 |
22 |
23 |
24 | {{#if feature_image}} 25 | {{title}} 26 | {{/if}} 27 |

28 | {{title}} 29 |

30 | 31 |
32 |
33 |
34 | {{content}} 35 |
36 |
37 |
38 | {{> footer}} 39 |
40 |
41 | 42 |
43 |
44 | {{/post}} 45 | -------------------------------------------------------------------------------- /post.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 |
3 |
4 | 19 |
20 |
21 | 22 |
23 | {{#post}} 24 | 36 | 37 |
38 | 39 |
40 |

{{title}}

41 | {{date format="YYYY-MM-DD HH:mm:ss"}} 42 |
43 | {{content}} 44 |
45 |
46 |
47 |
48 | {{#prev_post}} 49 |
50 |
51 | 52 |
53 | 54 | {{#if feature_image}} 55 | 56 | {{else}} 57 | 58 | {{/if}} 59 | {{title}} 60 |
61 |

{{excerpt}}

62 | 63 |
64 |
65 | {{/prev_post}} 66 | 67 | {{#next_post}} 68 |
69 |
70 | 71 |
72 | {{#if feature_image}} 73 | 74 | {{else}} 75 | 76 | {{/if}} 77 | {{title}} 78 |
79 |

{{excerpt}}

80 | 81 |
82 |
83 | {{/next_post}} 84 | 85 | {{> comments}} 86 |
87 | {{/post}} 88 |
89 | {{> footer}} 90 |
91 |
92 |
-------------------------------------------------------------------------------- /page-archives-post.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 |
3 |
4 | {{> aside}} 5 |
6 |
7 |
8 | 19 |
20 | {{#post}} 21 |
22 |

Archives

23 |
24 |
25 |
26 | {{> footer}} 27 |
28 |
29 | 30 |
31 |
32 | {{/post}} 33 | 34 | 35 | -------------------------------------------------------------------------------- /partials/comments.hbs: -------------------------------------------------------------------------------- 1 | 2 |
3 | 10 | 174 | -------------------------------------------------------------------------------- /assets/js/skywalker.js: -------------------------------------------------------------------------------- 1 | /*! lightense-images v1.0.4 | © Tunghsiao Liu | MIT */ 2 | !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.Lightense=t():e.Lightense=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.i=function(e){return e},t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,n){"use strict";var r=Object.assign||function(e){for(var t=1;t=k.offset&&l()}function u(e){if(k.target=e,k.target.classList.contains("lightense-open"))return l();k.scrollY=y.scrollY,k.background=k.target.getAttribute("data-background")||!1,k.padding=k.target.getAttribute("data-padding")||v.padding;var t=new Image;t.onload=function(){s(this),c(),p()},t.src=k.target.src}function p(){y.addEventListener("keyup",g,!1),y.addEventListener("scroll",d,!1),k.container.addEventListener("click",l,!1)}function f(){y.removeEventListener("keyup",g,!1),y.removeEventListener("scroll",d,!1),k.container.removeEventListener("click",l,!1)}function g(e){e.preventDefault(),27===e.keyCode&&l()}function m(n){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};b=e(n),k=r({},v,o),i(),a(),t(b)}var b,y=window,h=document,v={time:300,padding:40,offset:40,keyboard:!0,cubicBezier:"cubic-bezier(.2, 0, .1, 1)",zIndex:2147483647},k={};return m},a=i();e.exports=a}])}); 3 | 4 | // fullscreen cover 5 | if( $('.page').hasClass('common') && location.pathname === '/' && location.hash !== '#open' ){ 6 | $('.index #menu').addClass('cover') 7 | } 8 | if( $(window).width() >= 768 ){ 9 | $('.index .slidenav').removeClass('slidenav'); 10 | // show/hide slide nav 11 | $('#show-slide-nav').click(function(event) { 12 | if( $('#menu').hasClass('open') ){ 13 | //$('#menu').removeClass('open').css({'opacity':'0','width':'0px'}); 14 | $('#menu').removeClass('open').css({'left':'-240px'}); 15 | $('.slidenav').removeClass('open'); 16 | }else{ 17 | $('#menu').addClass('open').css({'left':'0'}); 18 | $('.slidenav').addClass('open'); 19 | } 20 | 21 | }); 22 | }else{ 23 | $('.contents').css('width', $(window).width()-30 ); 24 | $('.markdown-body').css('max-width', $(window).width() ); 25 | if( $('.page').hasClass('index') || $('.page').hasClass('pages') ){ 26 | $('#show-slide-nav').click(function(event) { 27 | if( $('#menu').hasClass('open') ){ 28 | $('#menu').removeClass('open').css({'left':'-240px'}); 29 | $('.slidenav').addClass('open'); 30 | }else{ 31 | $('#menu').addClass('open').css({'left':'0'}); 32 | $('.slidenav').removeClass('open'); 33 | } 34 | 35 | }); 36 | }else if( $('.page').hasClass('post') ){ 37 | $('#show-slide-nav').click(function(event) { 38 | if( $('#menu').hasClass('open') ){ 39 | $('#menu').removeClass('open').css({'left':'-240px'}); 40 | $('.slidenav').removeClass('open'); 41 | }else{ 42 | $('#menu').addClass('open').css({'left':'0'}); 43 | $('.slidenav').addClass('open'); 44 | } 45 | 46 | }); 47 | } 48 | 49 | } 50 | 51 | if( $(window).width() >= 768 ){ 52 | // close slide nav 53 | $('.closeslide').click(function(){ 54 | $('#menu').removeClass('open').css({'left':'-240px'}); 55 | $('.slidenav').removeClass('open'); 56 | }) 57 | }else{ 58 | if( $('.page').hasClass('index') || $('.page').hasClass('pages') ){ 59 | // close slide nav 60 | $('.closeslide').click(function(){ 61 | $('#menu').removeClass('open').css({'left':'-240px'}); 62 | $('.slidenav').removeClass('open'); 63 | $('#menu').addClass('open'); 64 | }) 65 | }else if( $('.page').hasClass('post') ){ 66 | // close slide nav 67 | $('.closeslide').click(function(){ 68 | $('#menu').removeClass('open').css({'left':'-240px'}); 69 | $('.slidenav').removeClass('open'); 70 | $('#menu').removeClass('open'); 71 | }) 72 | } 73 | 74 | } 75 | 76 | // click avatar show cover 77 | $('.common .avatar img').click(function(){ 78 | if( $('#menu').hasClass('cover') ){ 79 | $('#menu').removeClass('cover') 80 | }else{ 81 | $('#menu').addClass('cover') 82 | } 83 | }) 84 | $('.profile ul.nav li a').click(function(){ 85 | if( $('#menu').hasClass('cover') ){ 86 | $('#menu').removeClass('cover') 87 | } 88 | }) 89 | // post page scroll to fixed header 90 | $('.post main').scroll(function (){ 91 | var sTop = $(".contents").offset().top; 92 | if( $('.post .contents').hasClass('fixtop') ){ 93 | if( sTop >= -10 ){ 94 | $('.post nav').removeClass('fixtop');$('.post .contents').removeClass('fixtop'); 95 | } 96 | }else{ 97 | if( sTop <= 60 ){ 98 | $('.post nav').addClass('fixtop');$('.post .contents').addClass('fixtop'); 99 | } 100 | } 101 | }); 102 | // bing background 103 | if( $('.page').hasClass('post') ){ 104 | $.ajax({ 105 | type: 'GET', 106 | dataType: 'json', 107 | url: 'https://img.ldsun.com/bing/random/3', 108 | success: function(result){ 109 | if( result && result.status ){ 110 | var bg = result.data[0]; 111 | bg = 'url('+bg+')'; 112 | var pre = result.data[1]; 113 | var next = result.data[2]; 114 | //nav-bg 115 | $('.post header.nav-wrapper').css('background',bg+' center center / cover no-repeat'); 116 | //pre/next post 117 | $('.card-pre img').prop('src', pre); 118 | $('.card-next img').prop('src', next); 119 | }else{ 120 | console.log('load img failed...') 121 | } 122 | }, 123 | error: function(err){ 124 | console.error(err); 125 | } 126 | }) 127 | } 128 | 129 | // materail effet 130 | var addRippleEffect = function (e) { 131 | var target = e.target; 132 | var rect = target.getBoundingClientRect(); 133 | var ripple = target.querySelector('.ripple'); 134 | if (!ripple) { 135 | ripple = document.createElement('span'); 136 | ripple.className = 'ripple'; 137 | ripple.style.height = ripple.style.width = Math.max(rect.width, rect.height) + 'px'; 138 | target.appendChild(ripple); 139 | } 140 | ripple.classList.remove('show'); 141 | var top = e.pageY - rect.top - ripple.offsetHeight / 2 - document.body.scrollTop; 142 | var left = e.pageX - rect.left - ripple.offsetWidth / 2 - document.body.scrollLeft; 143 | ripple.style.top = top + 'px'; 144 | ripple.style.left = left + 'px'; 145 | ripple.classList.add('show'); 146 | return false; 147 | } 148 | $('.waves-effect').click(function(e){ 149 | addRippleEffect(e); 150 | }) 151 | 152 | // highlight.js 153 | $(document).ready(function() { 154 | $('pre code').each(function(i, block) { 155 | if( !$(this).hasClass('hljs') ){ 156 | $(this).addClass('hljs') 157 | } 158 | }); 159 | //Lightense('img'); 160 | Lightense('.post-html img', { 161 | time: 300, 162 | padding: 40, 163 | offset: 40, 164 | keyboard: true, 165 | cubicBezier: 'cubic-bezier(.2, 0, .1, 1)', 166 | zIndex: 900 167 | }); 168 | }); 169 | hljs.initHighlightingOnLoad(); -------------------------------------------------------------------------------- /assets/js/zepto.min.js: -------------------------------------------------------------------------------- 1 | /* Zepto v1.2.0 - zepto event ajax form ie - zeptojs.com/license */ 2 | !function(t,e){"function"==typeof define&&define.amd?define(function(){return e(t)}):e(t)}(this,function(t){var e=function(){function $(t){return null==t?String(t):S[C.call(t)]||"object"}function F(t){return"function"==$(t)}function k(t){return null!=t&&t==t.window}function M(t){return null!=t&&t.nodeType==t.DOCUMENT_NODE}function R(t){return"object"==$(t)}function Z(t){return R(t)&&!k(t)&&Object.getPrototypeOf(t)==Object.prototype}function z(t){var e=!!t&&"length"in t&&t.length,n=r.type(t);return"function"!=n&&!k(t)&&("array"==n||0===e||"number"==typeof e&&e>0&&e-1 in t)}function q(t){return a.call(t,function(t){return null!=t})}function H(t){return t.length>0?r.fn.concat.apply([],t):t}function I(t){return t.replace(/::/g,"/").replace(/([A-Z]+)([A-Z][a-z])/g,"$1_$2").replace(/([a-z\d])([A-Z])/g,"$1_$2").replace(/_/g,"-").toLowerCase()}function V(t){return t in l?l[t]:l[t]=new RegExp("(^|\\s)"+t+"(\\s|$)")}function _(t,e){return"number"!=typeof e||h[I(t)]?e:e+"px"}function B(t){var e,n;return c[t]||(e=f.createElement(t),f.body.appendChild(e),n=getComputedStyle(e,"").getPropertyValue("display"),e.parentNode.removeChild(e),"none"==n&&(n="block"),c[t]=n),c[t]}function U(t){return"children"in t?u.call(t.children):r.map(t.childNodes,function(t){return 1==t.nodeType?t:void 0})}function X(t,e){var n,r=t?t.length:0;for(n=0;r>n;n++)this[n]=t[n];this.length=r,this.selector=e||""}function J(t,r,i){for(n in r)i&&(Z(r[n])||L(r[n]))?(Z(r[n])&&!Z(t[n])&&(t[n]={}),L(r[n])&&!L(t[n])&&(t[n]=[]),J(t[n],r[n],i)):r[n]!==e&&(t[n]=r[n])}function W(t,e){return null==e?r(t):r(t).filter(e)}function Y(t,e,n,r){return F(e)?e.call(t,n,r):e}function G(t,e,n){null==n?t.removeAttribute(e):t.setAttribute(e,n)}function K(t,n){var r=t.className||"",i=r&&r.baseVal!==e;return n===e?i?r.baseVal:r:void(i?r.baseVal=n:t.className=n)}function Q(t){try{return t?"true"==t||("false"==t?!1:"null"==t?null:+t+""==t?+t:/^[\[\{]/.test(t)?r.parseJSON(t):t):t}catch(e){return t}}function tt(t,e){e(t);for(var n=0,r=t.childNodes.length;r>n;n++)tt(t.childNodes[n],e)}var e,n,r,i,O,P,o=[],s=o.concat,a=o.filter,u=o.slice,f=t.document,c={},l={},h={"column-count":1,columns:1,"font-weight":1,"line-height":1,opacity:1,"z-index":1,zoom:1},p=/^\s*<(\w+|!)[^>]*>/,d=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,m=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,g=/^(?:body|html)$/i,v=/([A-Z])/g,y=["val","css","html","text","data","width","height","offset"],x=["after","prepend","before","append"],b=f.createElement("table"),E=f.createElement("tr"),j={tr:f.createElement("tbody"),tbody:b,thead:b,tfoot:b,td:E,th:E,"*":f.createElement("div")},w=/complete|loaded|interactive/,T=/^[\w-]*$/,S={},C=S.toString,N={},A=f.createElement("div"),D={tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},L=Array.isArray||function(t){return t instanceof Array};return N.matches=function(t,e){if(!e||!t||1!==t.nodeType)return!1;var n=t.matches||t.webkitMatchesSelector||t.mozMatchesSelector||t.oMatchesSelector||t.matchesSelector;if(n)return n.call(t,e);var r,i=t.parentNode,o=!i;return o&&(i=A).appendChild(t),r=~N.qsa(i,e).indexOf(t),o&&A.removeChild(t),r},O=function(t){return t.replace(/-+(.)?/g,function(t,e){return e?e.toUpperCase():""})},P=function(t){return a.call(t,function(e,n){return t.indexOf(e)==n})},N.fragment=function(t,n,i){var o,s,a;return d.test(t)&&(o=r(f.createElement(RegExp.$1))),o||(t.replace&&(t=t.replace(m,"<$1>")),n===e&&(n=p.test(t)&&RegExp.$1),n in j||(n="*"),a=j[n],a.innerHTML=""+t,o=r.each(u.call(a.childNodes),function(){a.removeChild(this)})),Z(i)&&(s=r(o),r.each(i,function(t,e){y.indexOf(t)>-1?s[t](e):s.attr(t,e)})),o},N.Z=function(t,e){return new X(t,e)},N.isZ=function(t){return t instanceof N.Z},N.init=function(t,n){var i;if(!t)return N.Z();if("string"==typeof t)if(t=t.trim(),"<"==t[0]&&p.test(t))i=N.fragment(t,RegExp.$1,n),t=null;else{if(n!==e)return r(n).find(t);i=N.qsa(f,t)}else{if(F(t))return r(f).ready(t);if(N.isZ(t))return t;if(L(t))i=q(t);else if(R(t))i=[t],t=null;else if(p.test(t))i=N.fragment(t.trim(),RegExp.$1,n),t=null;else{if(n!==e)return r(n).find(t);i=N.qsa(f,t)}}return N.Z(i,t)},r=function(t,e){return N.init(t,e)},r.extend=function(t){var e,n=u.call(arguments,1);return"boolean"==typeof t&&(e=t,t=n.shift()),n.forEach(function(n){J(t,n,e)}),t},N.qsa=function(t,e){var n,r="#"==e[0],i=!r&&"."==e[0],o=r||i?e.slice(1):e,s=T.test(o);return t.getElementById&&s&&r?(n=t.getElementById(o))?[n]:[]:1!==t.nodeType&&9!==t.nodeType&&11!==t.nodeType?[]:u.call(s&&!r&&t.getElementsByClassName?i?t.getElementsByClassName(o):t.getElementsByTagName(e):t.querySelectorAll(e))},r.contains=f.documentElement.contains?function(t,e){return t!==e&&t.contains(e)}:function(t,e){for(;e&&(e=e.parentNode);)if(e===t)return!0;return!1},r.type=$,r.isFunction=F,r.isWindow=k,r.isArray=L,r.isPlainObject=Z,r.isEmptyObject=function(t){var e;for(e in t)return!1;return!0},r.isNumeric=function(t){var e=Number(t),n=typeof t;return null!=t&&"boolean"!=n&&("string"!=n||t.length)&&!isNaN(e)&&isFinite(e)||!1},r.inArray=function(t,e,n){return o.indexOf.call(e,t,n)},r.camelCase=O,r.trim=function(t){return null==t?"":String.prototype.trim.call(t)},r.uuid=0,r.support={},r.expr={},r.noop=function(){},r.map=function(t,e){var n,i,o,r=[];if(z(t))for(i=0;i=0?t:t+this.length]},toArray:function(){return this.get()},size:function(){return this.length},remove:function(){return this.each(function(){null!=this.parentNode&&this.parentNode.removeChild(this)})},each:function(t){return o.every.call(this,function(e,n){return t.call(e,n,e)!==!1}),this},filter:function(t){return F(t)?this.not(this.not(t)):r(a.call(this,function(e){return N.matches(e,t)}))},add:function(t,e){return r(P(this.concat(r(t,e))))},is:function(t){return this.length>0&&N.matches(this[0],t)},not:function(t){var n=[];if(F(t)&&t.call!==e)this.each(function(e){t.call(this,e)||n.push(this)});else{var i="string"==typeof t?this.filter(t):z(t)&&F(t.item)?u.call(t):r(t);this.forEach(function(t){i.indexOf(t)<0&&n.push(t)})}return r(n)},has:function(t){return this.filter(function(){return R(t)?r.contains(this,t):r(this).find(t).size()})},eq:function(t){return-1===t?this.slice(t):this.slice(t,+t+1)},first:function(){var t=this[0];return t&&!R(t)?t:r(t)},last:function(){var t=this[this.length-1];return t&&!R(t)?t:r(t)},find:function(t){var e,n=this;return e=t?"object"==typeof t?r(t).filter(function(){var t=this;return o.some.call(n,function(e){return r.contains(e,t)})}):1==this.length?r(N.qsa(this[0],t)):this.map(function(){return N.qsa(this,t)}):r()},closest:function(t,e){var n=[],i="object"==typeof t&&r(t);return this.each(function(r,o){for(;o&&!(i?i.indexOf(o)>=0:N.matches(o,t));)o=o!==e&&!M(o)&&o.parentNode;o&&n.indexOf(o)<0&&n.push(o)}),r(n)},parents:function(t){for(var e=[],n=this;n.length>0;)n=r.map(n,function(t){return(t=t.parentNode)&&!M(t)&&e.indexOf(t)<0?(e.push(t),t):void 0});return W(e,t)},parent:function(t){return W(P(this.pluck("parentNode")),t)},children:function(t){return W(this.map(function(){return U(this)}),t)},contents:function(){return this.map(function(){return this.contentDocument||u.call(this.childNodes)})},siblings:function(t){return W(this.map(function(t,e){return a.call(U(e.parentNode),function(t){return t!==e})}),t)},empty:function(){return this.each(function(){this.innerHTML=""})},pluck:function(t){return r.map(this,function(e){return e[t]})},show:function(){return this.each(function(){"none"==this.style.display&&(this.style.display=""),"none"==getComputedStyle(this,"").getPropertyValue("display")&&(this.style.display=B(this.nodeName))})},replaceWith:function(t){return this.before(t).remove()},wrap:function(t){var e=F(t);if(this[0]&&!e)var n=r(t).get(0),i=n.parentNode||this.length>1;return this.each(function(o){r(this).wrapAll(e?t.call(this,o):i?n.cloneNode(!0):n)})},wrapAll:function(t){if(this[0]){r(this[0]).before(t=r(t));for(var e;(e=t.children()).length;)t=e.first();r(t).append(this)}return this},wrapInner:function(t){var e=F(t);return this.each(function(n){var i=r(this),o=i.contents(),s=e?t.call(this,n):t;o.length?o.wrapAll(s):i.append(s)})},unwrap:function(){return this.parent().each(function(){r(this).replaceWith(r(this).children())}),this},clone:function(){return this.map(function(){return this.cloneNode(!0)})},hide:function(){return this.css("display","none")},toggle:function(t){return this.each(function(){var n=r(this);(t===e?"none"==n.css("display"):t)?n.show():n.hide()})},prev:function(t){return r(this.pluck("previousElementSibling")).filter(t||"*")},next:function(t){return r(this.pluck("nextElementSibling")).filter(t||"*")},html:function(t){return 0 in arguments?this.each(function(e){var n=this.innerHTML;r(this).empty().append(Y(this,t,e,n))}):0 in this?this[0].innerHTML:null},text:function(t){return 0 in arguments?this.each(function(e){var n=Y(this,t,e,this.textContent);this.textContent=null==n?"":""+n}):0 in this?this.pluck("textContent").join(""):null},attr:function(t,r){var i;return"string"!=typeof t||1 in arguments?this.each(function(e){if(1===this.nodeType)if(R(t))for(n in t)G(this,n,t[n]);else G(this,t,Y(this,r,e,this.getAttribute(t)))}):0 in this&&1==this[0].nodeType&&null!=(i=this[0].getAttribute(t))?i:e},removeAttr:function(t){return this.each(function(){1===this.nodeType&&t.split(" ").forEach(function(t){G(this,t)},this)})},prop:function(t,e){return t=D[t]||t,1 in arguments?this.each(function(n){this[t]=Y(this,e,n,this[t])}):this[0]&&this[0][t]},removeProp:function(t){return t=D[t]||t,this.each(function(){delete this[t]})},data:function(t,n){var r="data-"+t.replace(v,"-$1").toLowerCase(),i=1 in arguments?this.attr(r,n):this.attr(r);return null!==i?Q(i):e},val:function(t){return 0 in arguments?(null==t&&(t=""),this.each(function(e){this.value=Y(this,t,e,this.value)})):this[0]&&(this[0].multiple?r(this[0]).find("option").filter(function(){return this.selected}).pluck("value"):this[0].value)},offset:function(e){if(e)return this.each(function(t){var n=r(this),i=Y(this,e,t,n.offset()),o=n.offsetParent().offset(),s={top:i.top-o.top,left:i.left-o.left};"static"==n.css("position")&&(s.position="relative"),n.css(s)});if(!this.length)return null;if(f.documentElement!==this[0]&&!r.contains(f.documentElement,this[0]))return{top:0,left:0};var n=this[0].getBoundingClientRect();return{left:n.left+t.pageXOffset,top:n.top+t.pageYOffset,width:Math.round(n.width),height:Math.round(n.height)}},css:function(t,e){if(arguments.length<2){var i=this[0];if("string"==typeof t){if(!i)return;return i.style[O(t)]||getComputedStyle(i,"").getPropertyValue(t)}if(L(t)){if(!i)return;var o={},s=getComputedStyle(i,"");return r.each(t,function(t,e){o[e]=i.style[O(e)]||s.getPropertyValue(e)}),o}}var a="";if("string"==$(t))e||0===e?a=I(t)+":"+_(t,e):this.each(function(){this.style.removeProperty(I(t))});else for(n in t)t[n]||0===t[n]?a+=I(n)+":"+_(n,t[n])+";":this.each(function(){this.style.removeProperty(I(n))});return this.each(function(){this.style.cssText+=";"+a})},index:function(t){return t?this.indexOf(r(t)[0]):this.parent().children().indexOf(this[0])},hasClass:function(t){return t?o.some.call(this,function(t){return this.test(K(t))},V(t)):!1},addClass:function(t){return t?this.each(function(e){if("className"in this){i=[];var n=K(this),o=Y(this,t,e,n);o.split(/\s+/g).forEach(function(t){r(this).hasClass(t)||i.push(t)},this),i.length&&K(this,n+(n?" ":"")+i.join(" "))}}):this},removeClass:function(t){return this.each(function(n){if("className"in this){if(t===e)return K(this,"");i=K(this),Y(this,t,n,i).split(/\s+/g).forEach(function(t){i=i.replace(V(t)," ")}),K(this,i.trim())}})},toggleClass:function(t,n){return t?this.each(function(i){var o=r(this),s=Y(this,t,i,K(this));s.split(/\s+/g).forEach(function(t){(n===e?!o.hasClass(t):n)?o.addClass(t):o.removeClass(t)})}):this},scrollTop:function(t){if(this.length){var n="scrollTop"in this[0];return t===e?n?this[0].scrollTop:this[0].pageYOffset:this.each(n?function(){this.scrollTop=t}:function(){this.scrollTo(this.scrollX,t)})}},scrollLeft:function(t){if(this.length){var n="scrollLeft"in this[0];return t===e?n?this[0].scrollLeft:this[0].pageXOffset:this.each(n?function(){this.scrollLeft=t}:function(){this.scrollTo(t,this.scrollY)})}},position:function(){if(this.length){var t=this[0],e=this.offsetParent(),n=this.offset(),i=g.test(e[0].nodeName)?{top:0,left:0}:e.offset();return n.top-=parseFloat(r(t).css("margin-top"))||0,n.left-=parseFloat(r(t).css("margin-left"))||0,i.top+=parseFloat(r(e[0]).css("border-top-width"))||0,i.left+=parseFloat(r(e[0]).css("border-left-width"))||0,{top:n.top-i.top,left:n.left-i.left}}},offsetParent:function(){return this.map(function(){for(var t=this.offsetParent||f.body;t&&!g.test(t.nodeName)&&"static"==r(t).css("position");)t=t.offsetParent;return t})}},r.fn.detach=r.fn.remove,["width","height"].forEach(function(t){var n=t.replace(/./,function(t){return t[0].toUpperCase()});r.fn[t]=function(i){var o,s=this[0];return i===e?k(s)?s["inner"+n]:M(s)?s.documentElement["scroll"+n]:(o=this.offset())&&o[t]:this.each(function(e){s=r(this),s.css(t,Y(this,i,e,s[t]()))})}}),x.forEach(function(n,i){var o=i%2;r.fn[n]=function(){var n,a,s=r.map(arguments,function(t){var i=[];return n=$(t),"array"==n?(t.forEach(function(t){return t.nodeType!==e?i.push(t):r.zepto.isZ(t)?i=i.concat(t.get()):void(i=i.concat(N.fragment(t)))}),i):"object"==n||null==t?t:N.fragment(t)}),u=this.length>1;return s.length<1?this:this.each(function(e,n){a=o?n:n.parentNode,n=0==i?n.nextSibling:1==i?n.firstChild:2==i?n:null;var c=r.contains(f.documentElement,a);s.forEach(function(e){if(u)e=e.cloneNode(!0);else if(!a)return r(e).remove();a.insertBefore(e,n),c&&tt(e,function(e){if(!(null==e.nodeName||"SCRIPT"!==e.nodeName.toUpperCase()||e.type&&"text/javascript"!==e.type||e.src)){var n=e.ownerDocument?e.ownerDocument.defaultView:t;n.eval.call(n,e.innerHTML)}})})})},r.fn[o?n+"To":"insert"+(i?"Before":"After")]=function(t){return r(t)[n](this),this}}),N.Z.prototype=X.prototype=r.fn,N.uniq=P,N.deserializeValue=Q,r.zepto=N,r}();return t.Zepto=e,void 0===t.$&&(t.$=e),function(e){function h(t){return t._zid||(t._zid=n++)}function p(t,e,n,r){if(e=d(e),e.ns)var i=m(e.ns);return(a[h(t)]||[]).filter(function(t){return t&&(!e.e||t.e==e.e)&&(!e.ns||i.test(t.ns))&&(!n||h(t.fn)===h(n))&&(!r||t.sel==r)})}function d(t){var e=(""+t).split(".");return{e:e[0],ns:e.slice(1).sort().join(" ")}}function m(t){return new RegExp("(?:^| )"+t.replace(" "," .* ?")+"(?: |$)")}function g(t,e){return t.del&&!f&&t.e in c||!!e}function v(t){return l[t]||f&&c[t]||t}function y(t,n,i,o,s,u,f){var c=h(t),p=a[c]||(a[c]=[]);n.split(/\s/).forEach(function(n){if("ready"==n)return e(document).ready(i);var a=d(n);a.fn=i,a.sel=s,a.e in l&&(i=function(t){var n=t.relatedTarget;return!n||n!==this&&!e.contains(this,n)?a.fn.apply(this,arguments):void 0}),a.del=u;var c=u||i;a.proxy=function(e){if(e=T(e),!e.isImmediatePropagationStopped()){e.data=o;var n=c.apply(t,e._args==r?[e]:[e].concat(e._args));return n===!1&&(e.preventDefault(),e.stopPropagation()),n}},a.i=p.length,p.push(a),"addEventListener"in t&&t.addEventListener(v(a.e),a.proxy,g(a,f))})}function x(t,e,n,r,i){var o=h(t);(e||"").split(/\s/).forEach(function(e){p(t,e,n,r).forEach(function(e){delete a[o][e.i],"removeEventListener"in t&&t.removeEventListener(v(e.e),e.proxy,g(e,i))})})}function T(t,n){return(n||!t.isDefaultPrevented)&&(n||(n=t),e.each(w,function(e,r){var i=n[e];t[e]=function(){return this[r]=b,i&&i.apply(n,arguments)},t[r]=E}),t.timeStamp||(t.timeStamp=Date.now()),(n.defaultPrevented!==r?n.defaultPrevented:"returnValue"in n?n.returnValue===!1:n.getPreventDefault&&n.getPreventDefault())&&(t.isDefaultPrevented=b)),t}function S(t){var e,n={originalEvent:t};for(e in t)j.test(e)||t[e]===r||(n[e]=t[e]);return T(n,t)}var r,n=1,i=Array.prototype.slice,o=e.isFunction,s=function(t){return"string"==typeof t},a={},u={},f="onfocusin"in t,c={focus:"focusin",blur:"focusout"},l={mouseenter:"mouseover",mouseleave:"mouseout"};u.click=u.mousedown=u.mouseup=u.mousemove="MouseEvents",e.event={add:y,remove:x},e.proxy=function(t,n){var r=2 in arguments&&i.call(arguments,2);if(o(t)){var a=function(){return t.apply(n,r?r.concat(i.call(arguments)):arguments)};return a._zid=h(t),a}if(s(n))return r?(r.unshift(t[n],t),e.proxy.apply(null,r)):e.proxy(t[n],t);throw new TypeError("expected function")},e.fn.bind=function(t,e,n){return this.on(t,e,n)},e.fn.unbind=function(t,e){return this.off(t,e)},e.fn.one=function(t,e,n,r){return this.on(t,e,n,r,1)};var b=function(){return!0},E=function(){return!1},j=/^([A-Z]|returnValue$|layer[XY]$|webkitMovement[XY]$)/,w={preventDefault:"isDefaultPrevented",stopImmediatePropagation:"isImmediatePropagationStopped",stopPropagation:"isPropagationStopped"};e.fn.delegate=function(t,e,n){return this.on(e,t,n)},e.fn.undelegate=function(t,e,n){return this.off(e,t,n)},e.fn.live=function(t,n){return e(document.body).delegate(this.selector,t,n),this},e.fn.die=function(t,n){return e(document.body).undelegate(this.selector,t,n),this},e.fn.on=function(t,n,a,u,f){var c,l,h=this;return t&&!s(t)?(e.each(t,function(t,e){h.on(t,n,a,e,f)}),h):(s(n)||o(u)||u===!1||(u=a,a=n,n=r),(u===r||a===!1)&&(u=a,a=r),u===!1&&(u=E),h.each(function(r,o){f&&(c=function(t){return x(o,t.type,u),u.apply(this,arguments)}),n&&(l=function(t){var r,s=e(t.target).closest(n,o).get(0);return s&&s!==o?(r=e.extend(S(t),{currentTarget:s,liveFired:o}),(c||u).apply(s,[r].concat(i.call(arguments,1)))):void 0}),y(o,t,u,a,n,l||c)}))},e.fn.off=function(t,n,i){var a=this;return t&&!s(t)?(e.each(t,function(t,e){a.off(t,n,e)}),a):(s(n)||o(i)||i===!1||(i=n,n=r),i===!1&&(i=E),a.each(function(){x(this,t,i,n)}))},e.fn.trigger=function(t,n){return t=s(t)||e.isPlainObject(t)?e.Event(t):T(t),t._args=n,this.each(function(){t.type in c&&"function"==typeof this[t.type]?this[t.type]():"dispatchEvent"in this?this.dispatchEvent(t):e(this).triggerHandler(t,n)})},e.fn.triggerHandler=function(t,n){var r,i;return this.each(function(o,a){r=S(s(t)?e.Event(t):t),r._args=n,r.target=a,e.each(p(a,t.type||t),function(t,e){return i=e.proxy(r),r.isImmediatePropagationStopped()?!1:void 0})}),i},"focusin focusout focus blur load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select keydown keypress keyup error".split(" ").forEach(function(t){e.fn[t]=function(e){return 0 in arguments?this.bind(t,e):this.trigger(t)}}),e.Event=function(t,e){s(t)||(e=t,t=e.type);var n=document.createEvent(u[t]||"Events"),r=!0;if(e)for(var i in e)"bubbles"==i?r=!!e[i]:n[i]=e[i];return n.initEvent(t,r,!0),T(n)}}(e),function(e){function p(t,n,r){var i=e.Event(n);return e(t).trigger(i,r),!i.isDefaultPrevented()}function d(t,e,n,i){return t.global?p(e||r,n,i):void 0}function m(t){t.global&&0===e.active++&&d(t,null,"ajaxStart")}function g(t){t.global&&!--e.active&&d(t,null,"ajaxStop")}function v(t,e){var n=e.context;return e.beforeSend.call(n,t,e)===!1||d(e,n,"ajaxBeforeSend",[t,e])===!1?!1:void d(e,n,"ajaxSend",[t,e])}function y(t,e,n,r){var i=n.context,o="success";n.success.call(i,t,o,e),r&&r.resolveWith(i,[t,o,e]),d(n,i,"ajaxSuccess",[e,n,t]),b(o,e,n)}function x(t,e,n,r,i){var o=r.context;r.error.call(o,n,e,t),i&&i.rejectWith(o,[n,e,t]),d(r,o,"ajaxError",[n,r,t||e]),b(e,n,r)}function b(t,e,n){var r=n.context;n.complete.call(r,e,t),d(n,r,"ajaxComplete",[e,n]),g(n)}function E(t,e,n){if(n.dataFilter==j)return t;var r=n.context;return n.dataFilter.call(r,t,e)}function j(){}function w(t){return t&&(t=t.split(";",2)[0]),t&&(t==c?"html":t==f?"json":a.test(t)?"script":u.test(t)&&"xml")||"text"}function T(t,e){return""==e?t:(t+"&"+e).replace(/[&?]{1,2}/,"?")}function S(t){t.processData&&t.data&&"string"!=e.type(t.data)&&(t.data=e.param(t.data,t.traditional)),!t.data||t.type&&"GET"!=t.type.toUpperCase()&&"jsonp"!=t.dataType||(t.url=T(t.url,t.data),t.data=void 0)}function C(t,n,r,i){return e.isFunction(n)&&(i=r,r=n,n=void 0),e.isFunction(r)||(i=r,r=void 0),{url:t,data:n,success:r,dataType:i}}function O(t,n,r,i){var o,s=e.isArray(n),a=e.isPlainObject(n);e.each(n,function(n,u){o=e.type(u),i&&(n=r?i:i+"["+(a||"object"==o||"array"==o?n:"")+"]"),!i&&s?t.add(u.name,u.value):"array"==o||!r&&"object"==o?O(t,u,r,n):t.add(n,u)})}var i,o,n=+new Date,r=t.document,s=/)<[^<]*)*<\/script>/gi,a=/^(?:text|application)\/javascript/i,u=/^(?:text|application)\/xml/i,f="application/json",c="text/html",l=/^\s*$/,h=r.createElement("a");h.href=t.location.href,e.active=0,e.ajaxJSONP=function(i,o){if(!("type"in i))return e.ajax(i);var c,p,s=i.jsonpCallback,a=(e.isFunction(s)?s():s)||"Zepto"+n++,u=r.createElement("script"),f=t[a],l=function(t){e(u).triggerHandler("error",t||"abort")},h={abort:l};return o&&o.promise(h),e(u).on("load error",function(n,r){clearTimeout(p),e(u).off().remove(),"error"!=n.type&&c?y(c[0],h,i,o):x(null,r||"error",h,i,o),t[a]=f,c&&e.isFunction(f)&&f(c[0]),f=c=void 0}),v(h,i)===!1?(l("abort"),h):(t[a]=function(){c=arguments},u.src=i.url.replace(/\?(.+)=\?/,"?$1="+a),r.head.appendChild(u),i.timeout>0&&(p=setTimeout(function(){l("timeout")},i.timeout)),h)},e.ajaxSettings={type:"GET",beforeSend:j,success:j,error:j,complete:j,context:null,global:!0,xhr:function(){return new t.XMLHttpRequest},accepts:{script:"text/javascript, application/javascript, application/x-javascript",json:f,xml:"application/xml, text/xml",html:c,text:"text/plain"},crossDomain:!1,timeout:0,processData:!0,cache:!0,dataFilter:j},e.ajax=function(n){var u,f,s=e.extend({},n||{}),a=e.Deferred&&e.Deferred();for(i in e.ajaxSettings)void 0===s[i]&&(s[i]=e.ajaxSettings[i]);m(s),s.crossDomain||(u=r.createElement("a"),u.href=s.url,u.href=u.href,s.crossDomain=h.protocol+"//"+h.host!=u.protocol+"//"+u.host),s.url||(s.url=t.location.toString()),(f=s.url.indexOf("#"))>-1&&(s.url=s.url.slice(0,f)),S(s);var c=s.dataType,p=/\?.+=\?/.test(s.url);if(p&&(c="jsonp"),s.cache!==!1&&(n&&n.cache===!0||"script"!=c&&"jsonp"!=c)||(s.url=T(s.url,"_="+Date.now())),"jsonp"==c)return p||(s.url=T(s.url,s.jsonp?s.jsonp+"=?":s.jsonp===!1?"":"callback=?")),e.ajaxJSONP(s,a);var P,d=s.accepts[c],g={},b=function(t,e){g[t.toLowerCase()]=[t,e]},C=/^([\w-]+:)\/\//.test(s.url)?RegExp.$1:t.location.protocol,N=s.xhr(),O=N.setRequestHeader;if(a&&a.promise(N),s.crossDomain||b("X-Requested-With","XMLHttpRequest"),b("Accept",d||"*/*"),(d=s.mimeType||d)&&(d.indexOf(",")>-1&&(d=d.split(",",2)[0]),N.overrideMimeType&&N.overrideMimeType(d)),(s.contentType||s.contentType!==!1&&s.data&&"GET"!=s.type.toUpperCase())&&b("Content-Type",s.contentType||"application/x-www-form-urlencoded"),s.headers)for(o in s.headers)b(o,s.headers[o]);if(N.setRequestHeader=b,N.onreadystatechange=function(){if(4==N.readyState){N.onreadystatechange=j,clearTimeout(P);var t,n=!1;if(N.status>=200&&N.status<300||304==N.status||0==N.status&&"file:"==C){if(c=c||w(s.mimeType||N.getResponseHeader("content-type")),"arraybuffer"==N.responseType||"blob"==N.responseType)t=N.response;else{t=N.responseText;try{t=E(t,c,s),"script"==c?(1,eval)(t):"xml"==c?t=N.responseXML:"json"==c&&(t=l.test(t)?null:e.parseJSON(t))}catch(r){n=r}if(n)return x(n,"parsererror",N,s,a)}y(t,N,s,a)}else x(N.statusText||null,N.status?"error":"abort",N,s,a)}},v(N,s)===!1)return N.abort(),x(null,"abort",N,s,a),N;var A="async"in s?s.async:!0;if(N.open(s.type,s.url,A,s.username,s.password),s.xhrFields)for(o in s.xhrFields)N[o]=s.xhrFields[o];for(o in g)O.apply(N,g[o]);return s.timeout>0&&(P=setTimeout(function(){N.onreadystatechange=j,N.abort(),x(null,"timeout",N,s,a)},s.timeout)),N.send(s.data?s.data:null),N},e.get=function(){return e.ajax(C.apply(null,arguments))},e.post=function(){var t=C.apply(null,arguments);return t.type="POST",e.ajax(t)},e.getJSON=function(){var t=C.apply(null,arguments);return t.dataType="json",e.ajax(t)},e.fn.load=function(t,n,r){if(!this.length)return this;var a,i=this,o=t.split(/\s/),u=C(t,n,r),f=u.success;return o.length>1&&(u.url=o[0],a=o[1]),u.success=function(t){i.html(a?e("
").html(t.replace(s,"")).find(a):t),f&&f.apply(i,arguments)},e.ajax(u),this};var N=encodeURIComponent;e.param=function(t,n){var r=[];return r.add=function(t,n){e.isFunction(n)&&(n=n()),null==n&&(n=""),this.push(N(t)+"="+N(n))},O(r,t,n),r.join("&").replace(/%20/g,"+")}}(e),function(t){t.fn.serializeArray=function(){var e,n,r=[],i=function(t){return t.forEach?t.forEach(i):void r.push({name:e,value:t})};return this[0]&&t.each(this[0].elements,function(r,o){n=o.type,e=o.name,e&&"fieldset"!=o.nodeName.toLowerCase()&&!o.disabled&&"submit"!=n&&"reset"!=n&&"button"!=n&&"file"!=n&&("radio"!=n&&"checkbox"!=n||o.checked)&&i(t(o).val())}),r},t.fn.serialize=function(){var t=[];return this.serializeArray().forEach(function(e){t.push(encodeURIComponent(e.name)+"="+encodeURIComponent(e.value))}),t.join("&")},t.fn.submit=function(e){if(0 in arguments)this.bind("submit",e);else if(this.length){var n=t.Event("submit");this.eq(0).trigger(n),n.isDefaultPrevented()||this.get(0).submit()}return this}}(e),function(){try{getComputedStyle(void 0)}catch(e){var n=getComputedStyle;t.getComputedStyle=function(t,e){try{return n(t,e)}catch(r){return null}}}}(),e}); -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot');src:url('../fonts/fontawesome-webfont.eot') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2') format('woff2'),url('../fonts/fontawesome-webfont.woff') format('woff'),url('../fonts/fontawesome-webfont.ttf') format('truetype'),url('../fonts/fontawesome-webfont.svg') 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} 5 | -------------------------------------------------------------------------------- /assets/js/highlight.min.js: -------------------------------------------------------------------------------- 1 | /*! highlight.js v9.11.0 | BSD3 License | git.io/hljslicense */ 2 | !function(e){var t="object"==typeof window&&window||"object"==typeof self&&self;"undefined"!=typeof exports?e(exports):t&&(t.hljs=e({}),"function"==typeof define&&define.amd&&define([],function(){return t.hljs}))}(function(e){function t(e){return e.replace(/&/g,"&").replace(//g,">")}function r(e){return e.nodeName.toLowerCase()}function a(e,t){var r=e&&e.exec(t);return r&&0===r.index}function n(e){return E.test(e)}function i(e){var t,r,a,i,s=e.className+" ";if(s+=e.parentNode?e.parentNode.className:"",r=M.exec(s))return w(r[1])?r[1]:"no-highlight";for(s=s.split(/\s+/),t=0,a=s.length;a>t;t++)if(i=s[t],n(i)||w(i))return i}function s(e){var t,r={},a=Array.prototype.slice.call(arguments,1);for(t in e)r[t]=e[t];return a.forEach(function(e){for(t in e)r[t]=e[t]}),r}function c(e){var t=[];return function a(e,n){for(var i=e.firstChild;i;i=i.nextSibling)3===i.nodeType?n+=i.nodeValue.length:1===i.nodeType&&(t.push({event:"start",offset:n,node:i}),n=a(i,n),r(i).match(/br|hr|img|input/)||t.push({event:"stop",offset:n,node:i}));return n}(e,0),t}function o(e,a,n){function i(){return e.length&&a.length?e[0].offset!==a[0].offset?e[0].offset"}function c(e){u+=""}function o(e){("start"===e.event?s:c)(e.node)}for(var l=0,u="",d=[];e.length||a.length;){var b=i();if(u+=t(n.substring(l,b[0].offset)),l=b[0].offset,b===e){d.reverse().forEach(c);do o(b.splice(0,1)[0]),b=i();while(b===e&&b.length&&b[0].offset===l);d.reverse().forEach(s)}else"start"===b[0].event?d.push(b[0].node):d.pop(),o(b.splice(0,1)[0])}return u+t(n.substr(l))}function l(e){return e.v&&!e.cached_variants&&(e.cached_variants=e.v.map(function(t){return s(e,{v:null},t)})),e.cached_variants||e.eW&&[s(e)]||[e]}function u(e){function t(e){return e&&e.source||e}function r(r,a){return new RegExp(t(r),"m"+(e.cI?"i":"")+(a?"g":""))}function a(n,i){if(!n.compiled){if(n.compiled=!0,n.k=n.k||n.bK,n.k){var s={},c=function(t,r){e.cI&&(r=r.toLowerCase()),r.split(" ").forEach(function(e){var r=e.split("|");s[r[0]]=[t,r[1]?Number(r[1]):1]})};"string"==typeof n.k?c("keyword",n.k):k(n.k).forEach(function(e){c(e,n.k[e])}),n.k=s}n.lR=r(n.l||/\w+/,!0),i&&(n.bK&&(n.b="\\b("+n.bK.split(" ").join("|")+")\\b"),n.b||(n.b=/\B|\b/),n.bR=r(n.b),n.e||n.eW||(n.e=/\B|\b/),n.e&&(n.eR=r(n.e)),n.tE=t(n.e)||"",n.eW&&i.tE&&(n.tE+=(n.e?"|":"")+i.tE)),n.i&&(n.iR=r(n.i)),null==n.r&&(n.r=1),n.c||(n.c=[]),n.c=Array.prototype.concat.apply([],n.c.map(function(e){return l("self"===e?n:e)})),n.c.forEach(function(e){a(e,n)}),n.starts&&a(n.starts,i);var o=n.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([n.tE,n.i]).map(t).filter(Boolean);n.t=o.length?r(o.join("|"),!0):{exec:function(){return null}}}}a(e)}function d(e,r,n,i){function s(e,t){var r,n;for(r=0,n=t.c.length;n>r;r++)if(a(t.c[r].bR,e))return t.c[r]}function c(e,t){if(a(e.eR,t)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?c(e.parent,t):void 0}function o(e,t){return!n&&a(t.iR,e)}function l(e,t){var r=v.cI?t[0].toLowerCase():t[0];return e.k.hasOwnProperty(r)&&e.k[r]}function p(e,t,r,a){var n=a?"":L.classPrefix,i='',i+t+s}function m(){var e,r,a,n;if(!N.k)return t(E);for(n="",r=0,N.lR.lastIndex=0,a=N.lR.exec(E);a;)n+=t(E.substring(r,a.index)),e=l(N,a),e?(M+=e[1],n+=p(e[0],t(a[0]))):n+=t(a[0]),r=N.lR.lastIndex,a=N.lR.exec(E);return n+t(E.substr(r))}function f(){var e="string"==typeof N.sL;if(e&&!x[N.sL])return t(E);var r=e?d(N.sL,E,!0,k[N.sL]):b(E,N.sL.length?N.sL:void 0);return N.r>0&&(M+=r.r),e&&(k[N.sL]=r.top),p(r.language,r.value,!1,!0)}function g(){C+=null!=N.sL?f():m(),E=""}function _(e){C+=e.cN?p(e.cN,"",!0):"",N=Object.create(e,{parent:{value:N}})}function h(e,t){if(E+=e,null==t)return g(),0;var r=s(t,N);if(r)return r.skip?E+=t:(r.eB&&(E+=t),g(),r.rB||r.eB||(E=t)),_(r,t),r.rB?0:t.length;var a=c(N,t);if(a){var n=N;n.skip?E+=t:(n.rE||n.eE||(E+=t),g(),n.eE&&(E=t));do N.cN&&(C+=R),N.skip||(M+=N.r),N=N.parent;while(N!==a.parent);return a.starts&&_(a.starts,""),n.rE?0:t.length}if(o(t,N))throw new Error('Illegal lexeme "'+t+'" for mode "'+(N.cN||"")+'"');return E+=t,t.length||1}var v=w(e);if(!v)throw new Error('Unknown language: "'+e+'"');u(v);var y,N=i||v,k={},C="";for(y=N;y!==v;y=y.parent)y.cN&&(C=p(y.cN,"",!0)+C);var E="",M=0;try{for(var B,S,$=0;;){if(N.t.lastIndex=$,B=N.t.exec(r),!B)break;S=h(r.substring($,B.index),B[0]),$=B.index+S}for(h(r.substr($)),y=N;y.parent;y=y.parent)y.cN&&(C+=R);return{r:M,value:C,language:e,top:N}}catch(A){if(A.message&&-1!==A.message.indexOf("Illegal"))return{r:0,value:t(r)};throw A}}function b(e,r){r=r||L.languages||k(x);var a={r:0,value:t(e)},n=a;return r.filter(w).forEach(function(t){var r=d(t,e,!1);r.language=t,r.r>n.r&&(n=r),r.r>a.r&&(n=a,a=r)}),n.language&&(a.second_best=n),a}function p(e){return L.tabReplace||L.useBR?e.replace(B,function(e,t){return L.useBR&&"\n"===e?"
":L.tabReplace?t.replace(/\t/g,L.tabReplace):""}):e}function m(e,t,r){var a=t?C[t]:r,n=[e.trim()];return e.match(/\bhljs\b/)||n.push("hljs"),-1===e.indexOf(a)&&n.push(a),n.join(" ").trim()}function f(e){var t,r,a,s,l,u=i(e);n(u)||(L.useBR?(t=document.createElementNS("http://www.w3.org/1999/xhtml","div"),t.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):t=e,l=t.textContent,a=u?d(u,l,!0):b(l),r=c(t),r.length&&(s=document.createElementNS("http://www.w3.org/1999/xhtml","div"),s.innerHTML=a.value,a.value=o(r,c(s),l)),a.value=p(a.value),e.innerHTML=a.value,e.className=m(e.className,u,a.language),e.result={language:a.language,re:a.r},a.second_best&&(e.second_best={language:a.second_best.language,re:a.second_best.r}))}function g(e){L=s(L,e)}function _(){if(!_.called){_.called=!0;var e=document.querySelectorAll("pre code");N.forEach.call(e,f)}}function h(){addEventListener("DOMContentLoaded",_,!1),addEventListener("load",_,!1)}function v(t,r){var a=x[t]=r(e);a.aliases&&a.aliases.forEach(function(e){C[e]=t})}function y(){return k(x)}function w(e){return e=(e||"").toLowerCase(),x[e]||x[C[e]]}var N=[],k=Object.keys,x={},C={},E=/^(no-?highlight|plain|text)$/i,M=/\blang(?:uage)?-([\w-]+)\b/i,B=/((^(<[^>]+>|\t|)+|(?:\n)))/gm,R="
",L={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0};return e.highlight=d,e.highlightAuto=b,e.fixMarkup=p,e.highlightBlock=f,e.configure=g,e.initHighlighting=_,e.initHighlightingOnLoad=h,e.registerLanguage=v,e.listLanguages=y,e.getLanguage=w,e.inherit=s,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},e.C=function(t,r,a){var n=e.inherit({cN:"comment",b:t,e:r,c:[]},a||{});return n.c.push(e.PWM),n.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),n},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e.METHOD_GUARD={b:"\\.\\s*"+e.UIR,r:0},e.registerLanguage("apache",function(e){var t={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"section",b:""},{cN:"attribute",b:/\w+/,r:0,k:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"meta",b:"\\s\\[",e:"\\]$"},{cN:"variable",b:"[\\$%]\\{",e:"\\}",c:["self",t]},t,e.QSM]}}],i:/\S/}}),e.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},r={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/-?[a-z\._]+/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"meta",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,r,a,t]}}),e.registerLanguage("coffeescript",function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super yield import export from as default await then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},r="[A-Za-z$_][0-9A-Za-z$_]*",a={cN:"subst",b:/#\{/,e:/}/,k:t},n=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,a]},{b:/"/,e:/"/,c:[e.BE,a]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[a,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+r},{sL:"javascript",eB:!0,eE:!0,v:[{b:"```",e:"```"},{b:"`",e:"`"}]}];a.c=n;var i=e.inherit(e.TM,{b:r}),s="(\\(.*\\))?\\s*\\B[-=]>",c={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(n)}]};return{aliases:["coffee","cson","iced"],k:t,i:/\/\*/,c:n.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+r+"\\s*=\\s*"+s,e:"[-=]>",rB:!0,c:[i,c]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:s,e:"[-=]>",rB:!0,c:[c]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[i]},i]},{b:r+":",e:":",rB:!0,rE:!0,r:0}])}}),e.registerLanguage("cpp",function(e){var t={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[{b:'(u8?|U)?L?"',e:'"',i:"\\n",c:[e.BE]},{b:'(u8?|U)?R"',e:'"',c:[e.BE]},{b:"'\\\\?.",e:"'",i:"."}]},a={cN:"number",v:[{b:"\\b(0b[01']+)"},{b:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{b:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],r:0},n={cN:"meta",b:/#\s*[a-z]+\b/,e:/$/,k:{"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef include"},c:[{b:/\\\n/,r:0},e.inherit(r,{cN:"meta-string"}),{cN:"meta-string",b:/<[^\n>]*>/,e:/$/,i:"\\n"},e.CLCM,e.CBCM]},i=e.IR+"\\s*\\(",s={keyword:"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and or not",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr",literal:"true false nullptr NULL"},c=[t,e.CLCM,e.CBCM,a,r];return{aliases:["c","cc","h","c++","h++","hpp"],k:s,i:"",k:s,c:["self",t]},{b:e.IR+"::",k:s},{v:[{b:/=/,e:/;/},{b:/\(/,e:/\)/},{bK:"new throw return else",e:/;/}],k:s,c:c.concat([{b:/\(/,e:/\)/,k:s,c:c.concat(["self"]),r:0}]),r:0},{cN:"function",b:"("+e.IR+"[\\*&\\s]+)+"+i,rB:!0,e:/[{;=]/,eE:!0,k:s,i:/[^\w\s\*&]/,c:[{b:i,rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:s,r:0,c:[e.CLCM,e.CBCM,r,a,t]},e.CLCM,e.CBCM,n]},{cN:"class",bK:"class struct",e:/[{;:]/,c:[{b://,c:["self"]},e.TM]}]),exports:{preprocessor:n,strings:r,k:s}}}),e.registerLanguage("cs",function(e){var t={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double else enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while nameof add alias ascending async await by descending dynamic equals from get global group into join let on orderby partial remove select set value var where yield",literal:"null false true"},r={cN:"string",b:'@"',e:'"',c:[{b:'""'}]},a=e.inherit(r,{i:/\n/}),n={cN:"subst",b:"{",e:"}",k:t},i=e.inherit(n,{i:/\n/}),s={cN:"string",b:/\$"/,e:'"',i:/\n/,c:[{b:"{{"},{b:"}}"},e.BE,i]},c={cN:"string",b:/\$@"/,e:'"',c:[{b:"{{"},{b:"}}"},{b:'""'},n]},o=e.inherit(c,{i:/\n/,c:[{b:"{{"},{b:"}}"},{b:'""'},i]});n.c=[c,s,r,e.ASM,e.QSM,e.CNM,e.CBCM],i.c=[o,s,a,e.ASM,e.QSM,e.CNM,e.inherit(e.CBCM,{i:/\n/})];var l={v:[c,s,r,e.ASM,e.QSM]},u=e.IR+"(<"+e.IR+"(\\s*,\\s*"+e.IR+")*>)?(\\[\\])?";return{aliases:["csharp"],k:t,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"doctag",v:[{b:"///",r:0},{b:""},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},l,e.CNM,{bK:"class interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[e.inherit(e.TM,{b:"[a-zA-Z](\\.?\\w)*"}),e.CLCM,e.CBCM]},{bK:"new return throw await",r:0},{cN:"function",b:"("+u+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,r:0,c:[l,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}}),e.registerLanguage("css",function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",r={b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",i:/:/,c:[{cN:"keyword",b:/\w+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:t,r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,r]}]}}),e.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"meta",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"comment",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\-{3}/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+{3}/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"addition",b:"^\\!",e:"$"}]}}),e.registerLanguage("http",function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}}),e.registerLanguage("ini",function(e){var t={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"section",b:/^\s*\[+/,e:/\]+/},{b:/^[a-z0-9\[\]_-]+\s*=\s*/,e:"$",rB:!0,c:[{cN:"attr",b:/[a-z0-9\[\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:"literal",b:/\bon|off|true|false|yes|no\b/},{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},t,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM]}]}]}}),e.registerLanguage("java",function(e){var t="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",r=t+"(<"+t+"(\\s*,\\s*"+t+")*>)?",a="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",n="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",i={cN:"number",b:n,r:0};return{aliases:["jsp"],k:a,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+r+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:a,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:a,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},i,{cN:"meta",b:"@[A-Za-z]+"}]}}),e.registerLanguage("javascript",function(e){var t="[A-Za-z$_][0-9A-Za-z$_]*",r={keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},a={cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},n={cN:"subst",b:"\\$\\{",e:"\\}",k:r,c:[]},i={cN:"string",b:"`",e:"`",c:[e.BE,n]};n.c=[e.ASM,e.QSM,i,a,e.RM];var s=n.c.concat([e.CBCM,e.CLCM]);return{aliases:["js","jsx"],k:r,c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,i,e.CLCM,e.CBCM,a,{b:/[{,]\s*/,r:0,c:[{b:t+"\\s*:",rB:!0,r:0,c:[{cN:"attr",b:t,r:0}]}]},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+t+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:t},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:s}]}]},{b://,sL:"xml",c:[{b:/<\w+\s*\/>/,skip:!0},{b:/<\w+/,e:/(\/\w+|\w+\/)>/,skip:!0,c:[{b:/<\w+\s*\/>/,skip:!0},"self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:t}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:s}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor",e:/\{/,eE:!0}],i:/#(?!!)/}}),e.registerLanguage("json",function(e){var t={literal:"true false null"},r=[e.QSM,e.CNM],a={e:",",eW:!0,eE:!0,c:r,k:t},n={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(a,{b:/:/})],i:"\\S"},i={b:"\\[",e:"\\]",c:[e.inherit(a)],i:"\\S"};return r.splice(r.length,0,n,i),{c:r,k:t,i:"\\S"}}),e.registerLanguage("makefile",function(e){var t={cN:"variable",v:[{b:"\\$\\("+e.UIR+"\\)",c:[e.BE]},{b:/\$[@%`]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},e.C("",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0}]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[r],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[r],starts:{e:"",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"meta",v:[{b:/<\?xml/,e:/\?>/,r:10},{b:/<\?\w+/,e:/\?>/}]},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},r]}]}}),e.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}}),e.registerLanguage("nginx",function(e){var t={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},r={eW:!0,l:"[a-z/_]+",k:{literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,t],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[t]},{cN:"regexp",c:[e.BE,t],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},t]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s+{",rB:!0,e:"{",c:[{cN:"section",b:e.UIR}],r:0},{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"attribute",b:e.UIR,starts:r}],r:0}],i:"[^\\s\\}]"}}),e.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},r={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},a=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:r,l:a,i:""}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:a,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}}),e.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},a={b:"->{",e:"}"},n={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},i=[e.BE,r,n],s=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),a,{cN:"string",c:i,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=s,a.c=s,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:s}}),e.registerLanguage("php",function(e){var t={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},r={cN:"meta",b:/<\?(php)?|\?>/},a={cN:"string",c:[e.BE,r],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[r]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},r,{cN:"keyword",b:/\$this\b/},t,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",t,e.CBCM,a,n]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},a,n]}}),e.registerLanguage("python",function(e){var t={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},r={cN:"meta",b:/^(>>>|\.\.\.) /},a={cN:"subst",b:/\{/,e:/\}/,k:t,i:/#/},n={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[r],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[r,a]},{b:/(fr|rf|f)"""/,e:/"""/,c:[r,a]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)'/,e:/'/,c:[a]},{b:/(fr|rf|f)"/,e:/"/,c:[a]},e.ASM,e.QSM]},i={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},s={cN:"params",b:/\(/,e:/\)/,c:["self",r,i,n]};return a.c=[n,i,r],{aliases:["py","gyp"],k:t,i:/(<\/|->|\?)|=>/,c:[r,i,n,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,s,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}}),e.registerLanguage("ruby",function(e){var t="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={ 3 | keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},a={cN:"doctag",b:"@[A-Za-z]+"},n={b:"#<",e:">"},i=[e.C("#","$",{c:[a]}),e.C("^\\=begin","^\\=end",{c:[a],r:10}),e.C("^__END__","\\n$")],s={cN:"subst",b:"#\\{",e:"}",k:r},c={cN:"string",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<(-?)\w+$/,e:/^\s*\w+$/}]},o={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},l=[c,n,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(i)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:t}),o].concat(i)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[c,{b:t}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+"|unless)\\s*",k:"unless",c:[n,{cN:"regexp",c:[e.BE,s],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(i),r:0}].concat(i);s.c=l,o.c=l;var u="[>?]>",d="[\\w#]+\\(\\w+\\):\\d+:\\d+>",b="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",p=[{b:/^\s*=>/,starts:{e:"$",c:l}},{cN:"meta",b:"^("+u+"|"+d+"|"+b+")",starts:{e:"$",c:l}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:i.concat(p).concat(l)}}),e.registerLanguage("shell",function(e){return{aliases:["console"],c:[{cN:"meta",b:"^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]",starts:{e:"$",sL:"bash"}}]}}),e.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*#]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}}),e}); -------------------------------------------------------------------------------- /assets/css/app.css: -------------------------------------------------------------------------------- 1 | h1, 2 | h2, 3 | h3, 4 | h4, 5 | h5, 6 | h6 { 7 | line-height: 110% 8 | } 9 | 10 | .row .col.s1, 11 | .row .col.s10, 12 | .row .col.s11, 13 | .row .col.s12, 14 | .row .col.s2, 15 | .row .col.s3, 16 | .row .col.s4, 17 | .row .col.s5, 18 | .row .col.s7, 19 | .row .col.s8, 20 | .row .col.s9 { 21 | left: auto; 22 | right: auto 23 | } 24 | 25 | .card, 26 | .card.large, 27 | .card.medium, 28 | .card.small,P 29 | .row .col[class*=push-], 30 | .row .col[class*=pull-] { 31 | position: relative 32 | } 33 | 34 | .btn, 35 | .btn-large, 36 | a { 37 | text-decoration: none 38 | } 39 | 40 | .markdown-body hr::after, 41 | .markdown-body::after, 42 | .row:after { 43 | clear: both 44 | } 45 | 46 | .markdown-body table, 47 | table { 48 | border-spacing: 0; 49 | border-collapse: collapse 50 | } 51 | 52 | #menu, 53 | .btn, 54 | .btn-floating i, 55 | .btn-large, 56 | .pagination li, 57 | ul.nav li { 58 | text-align: center 59 | } 60 | 61 | .card .card-title, 62 | .post .card-content p { 63 | -webkit-box-orient: vertical; 64 | -webkit-line-clamp: 3 65 | } 66 | 67 | a, 68 | abbr, 69 | acronym, 70 | address, 71 | applet, 72 | article, 73 | aside, 74 | audio, 75 | b, 76 | big, 77 | blockquote, 78 | body, 79 | canvas, 80 | caption, 81 | center, 82 | cite, 83 | code, 84 | dd, 85 | del, 86 | details, 87 | dfn, 88 | div, 89 | dl, 90 | dt, 91 | em, 92 | embed, 93 | fieldset, 94 | figcaption, 95 | figure, 96 | footer, 97 | form, 98 | h1, 99 | h2, 100 | h3, 101 | h4, 102 | h5, 103 | h6, 104 | header, 105 | hgroup, 106 | html, 107 | i, 108 | iframe, 109 | img, 110 | ins, 111 | kbd, 112 | label, 113 | legend, 114 | li, 115 | mark, 116 | menu, 117 | nav, 118 | object, 119 | ol, 120 | output, 121 | p, 122 | pre, 123 | q, 124 | ruby, 125 | s, 126 | samp, 127 | section, 128 | small, 129 | span, 130 | strike, 131 | strong, 132 | sub, 133 | summary, 134 | sup, 135 | table, 136 | tbody, 137 | td, 138 | tfoot, 139 | th, 140 | thead, 141 | time, 142 | tr, 143 | tt, 144 | u, 145 | ul, 146 | var, 147 | video { 148 | margin: 0; 149 | padding: 0; 150 | border: 0; 151 | vertical-align: baseline; 152 | outline: 0 153 | } 154 | 155 | p { 156 | margin: 1em 0 157 | } 158 | 159 | article, 160 | aside, 161 | details, 162 | figcaption, 163 | figure, 164 | footer, 165 | header, 166 | hgroup, 167 | menu, 168 | nav, 169 | section { 170 | display: block 171 | } 172 | 173 | /*ol, 174 | ul, 175 | ul li { 176 | list-style: none 177 | }*/ 178 | 179 | blockquote, 180 | q { 181 | quotes: none 182 | } 183 | 184 | blockquote:after, 185 | blockquote:before, 186 | q:after, 187 | q:before { 188 | content: ''; 189 | content: none 190 | } 191 | 192 | h1, 193 | h2, 194 | h3, 195 | h4, 196 | h5, 197 | h6 { 198 | font-weight: 400 199 | } 200 | 201 | h1 a, 202 | h2 a, 203 | h3 a, 204 | h4 a, 205 | h5 a, 206 | h6 a { 207 | font-weight: inherit 208 | } 209 | 210 | h1 { 211 | font-size: 4.2rem; 212 | margin: 2.1rem 0 1.68rem 213 | } 214 | 215 | h2 { 216 | font-size: 3.56rem; 217 | margin: 1.78rem 0 1.424rem 218 | } 219 | 220 | h3 { 221 | font-size: 2.92rem; 222 | margin: 1.46rem 0 1.168rem 223 | } 224 | 225 | h4 { 226 | font-size: 2.28rem; 227 | margin: 1.14rem 0 .912rem 228 | } 229 | 230 | h5 { 231 | font-size: 1.64rem; 232 | margin: .82rem 0 .656rem 233 | } 234 | 235 | h6 { 236 | font-size: 1rem; 237 | margin: .5rem 0 .4rem 238 | } 239 | 240 | .row, 241 | .row .col.s1, 242 | .row .col.s10, 243 | .row .col.s11, 244 | .row .col.s12, 245 | .row .col.s2, 246 | .row .col.s3, 247 | .row .col.s4, 248 | .row .col.s5, 249 | .row .col.s7, 250 | .row .col.s8, 251 | .row .col.s9 { 252 | margin-left: auto 253 | } 254 | 255 | .blue-grey { 256 | background-color: #607d8b!important 257 | } 258 | 259 | .blue-grey-text { 260 | color: #607d8b!important 261 | } 262 | 263 | .blue-grey.darken-1 { 264 | background-color: #546e7a!important 265 | } 266 | 267 | .blue-grey-text.text-darken-1 { 268 | color: #546e7a!important 269 | } 270 | 271 | .blue-grey.darken-2 { 272 | background-color: #455a64!important 273 | } 274 | 275 | .blue-grey-text.text-darken-2 { 276 | color: #455a64!important 277 | } 278 | 279 | .blue-grey.darken-3 { 280 | background-color: #37474f!important 281 | } 282 | 283 | .blue-grey-text.text-darken-3 { 284 | color: #37474f!important 285 | } 286 | 287 | .blue-grey.darken-4 { 288 | background-color: #263238!important 289 | } 290 | 291 | .blue-grey-text.text-darken-4 { 292 | color: #263238!important 293 | } 294 | 295 | .red { 296 | background-color: #F44336!important 297 | } 298 | 299 | .red-text { 300 | color: #F44336!important 301 | } 302 | 303 | .red.darken-1 { 304 | background-color: #E53935!important 305 | } 306 | 307 | .red-text.text-darken-1 { 308 | color: #E53935!important 309 | } 310 | 311 | .red.darken-2 { 312 | background-color: #D32F2F!important 313 | } 314 | 315 | .red-text.text-darken-2 { 316 | color: #D32F2F!important 317 | } 318 | 319 | .red.darken-3 { 320 | background-color: #C62828!important 321 | } 322 | 323 | .red-text.text-darken-3 { 324 | color: #C62828!important 325 | } 326 | 327 | .red.darken-4 { 328 | background-color: #B71C1C!important 329 | } 330 | 331 | .red-text.text-darken-4 { 332 | color: #B71C1C!important 333 | } 334 | 335 | .z-depth-0 { 336 | box-shadow: none!important 337 | } 338 | 339 | .btn, 340 | .btn-floating, 341 | .btn-large, 342 | .card, 343 | .card-panel, 344 | .collapsible, 345 | .dropdown-content, 346 | .side-nav, 347 | .toast, 348 | .z-depth-1, 349 | nav { 350 | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2) 351 | } 352 | 353 | .btn-floating:hover, 354 | .btn-large:hover, 355 | .btn:hover, 356 | .z-depth-1-half { 357 | box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .14), 0 1px 7px 0 rgba(0, 0, 0, .12), 0 3px 1px -1px rgba(0, 0, 0, .2) 358 | } 359 | 360 | .z-depth-2 { 361 | box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .3) 362 | } 363 | 364 | .z-depth-3 { 365 | box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12), 0 3px 5px -1px rgba(0, 0, 0, .3) 366 | } 367 | 368 | .modal, 369 | .z-depth-4 { 370 | box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .3) 371 | } 372 | 373 | .z-depth-5 { 374 | box-shadow: 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .3) 375 | } 376 | 377 | .row { 378 | margin-right: auto; 379 | margin-bottom: 20px 380 | } 381 | 382 | .row:after { 383 | content: ""; 384 | display: table 385 | } 386 | 387 | .row .col { 388 | float: left; 389 | box-sizing: border-box; 390 | padding: 0 .75rem; 391 | min-height: 1px 392 | } 393 | 394 | .row .col.s1 { 395 | width: 8.3333333333% 396 | } 397 | 398 | .row .col.s2 { 399 | width: 16.6666666667% 400 | } 401 | 402 | .row .col.s3 { 403 | width: 25% 404 | } 405 | 406 | .row .col.s4 { 407 | width: 33.3333333333% 408 | } 409 | 410 | .row .col.s5 { 411 | width: 41.6666666667% 412 | } 413 | 414 | .row .col.s6 { 415 | width: 50%; 416 | margin-left: auto; 417 | left: auto; 418 | right: auto 419 | } 420 | 421 | .row .col.s7 { 422 | width: 58.3333333333% 423 | } 424 | 425 | .row .col.s8 { 426 | width: 66.6666666667% 427 | } 428 | 429 | .row .col.s9 { 430 | width: 75% 431 | } 432 | 433 | .row .col.s10 { 434 | width: 83.3333333333% 435 | } 436 | 437 | .row .col.s11 { 438 | width: 91.6666666667% 439 | } 440 | 441 | .row .col.s12 { 442 | width: 100% 443 | } 444 | 445 | @media only screen and (min-width:601px) { 446 | .row .col.m1, 447 | .row .col.m10, 448 | .row .col.m11, 449 | .row .col.m12, 450 | .row .col.m2, 451 | .row .col.m3, 452 | .row .col.m4, 453 | .row .col.m5, 454 | .row .col.m7, 455 | .row .col.m8, 456 | .row .col.m9 { 457 | margin-left: auto; 458 | left: auto; 459 | right: auto 460 | } 461 | .row .col.m1 { 462 | width: 8.3333333333% 463 | } 464 | .row .col.m2 { 465 | width: 16.6666666667% 466 | } 467 | .row .col.m3 { 468 | width: 25% 469 | } 470 | .row .col.m4 { 471 | width: 33.3333333333% 472 | } 473 | .row .col.m5 { 474 | width: 41.6666666667% 475 | } 476 | .row .col.m6 { 477 | width: 50%; 478 | margin-left: auto; 479 | left: auto; 480 | right: auto 481 | } 482 | .row .col.m7 { 483 | width: 58.3333333333% 484 | } 485 | .row .col.m8 { 486 | width: 66.6666666667% 487 | } 488 | .row .col.m9 { 489 | width: 75% 490 | } 491 | .row .col.m10 { 492 | width: 83.3333333333% 493 | } 494 | .row .col.m11 { 495 | width: 91.6666666667% 496 | } 497 | .row .col.m12 { 498 | width: 100% 499 | } 500 | } 501 | 502 | @media only screen and (min-width:993px) { 503 | .row .col.l1, 504 | .row .col.l10, 505 | .row .col.l11, 506 | .row .col.l12, 507 | .row .col.l2, 508 | .row .col.l3, 509 | .row .col.l4, 510 | .row .col.l5, 511 | .row .col.l7, 512 | .row .col.l8, 513 | .row .col.l9 { 514 | margin-left: auto; 515 | left: auto; 516 | right: auto 517 | } 518 | .row .col.l1 { 519 | width: 8.3333333333% 520 | } 521 | .row .col.l2 { 522 | width: 16.6666666667% 523 | } 524 | .row .col.l3 { 525 | width: 25% 526 | } 527 | .row .col.l4 { 528 | width: 33.3333333333% 529 | } 530 | .row .col.l5 { 531 | width: 41.6666666667% 532 | } 533 | .row .col.l6 { 534 | width: 50%; 535 | margin-left: auto; 536 | left: auto; 537 | right: auto 538 | } 539 | .row .col.l7 { 540 | width: 58.3333333333% 541 | } 542 | .row .col.l8 { 543 | width: 66.6666666667% 544 | } 545 | .row .col.l9 { 546 | width: 75% 547 | } 548 | .row .col.l10 { 549 | width: 83.3333333333% 550 | } 551 | .row .col.l11 { 552 | width: 91.6666666667% 553 | } 554 | .row .col.l12 { 555 | width: 100% 556 | } 557 | } 558 | 559 | @media only screen and (min-width:1201px) { 560 | .row .col.xl1, 561 | .row .col.xl10, 562 | .row .col.xl11, 563 | .row .col.xl12, 564 | .row .col.xl2, 565 | .row .col.xl3, 566 | .row .col.xl4, 567 | .row .col.xl5, 568 | .row .col.xl7, 569 | .row .col.xl8, 570 | .row .col.xl9 { 571 | margin-left: auto; 572 | left: auto; 573 | right: auto 574 | } 575 | .row .col.xl1 { 576 | width: 8.3333333333% 577 | } 578 | .row .col.xl2 { 579 | width: 16.6666666667% 580 | } 581 | .row .col.xl3 { 582 | width: 25% 583 | } 584 | .row .col.xl4 { 585 | width: 33.3333333333% 586 | } 587 | .row .col.xl5 { 588 | width: 41.6666666667% 589 | } 590 | .row .col.xl6 { 591 | width: 50%; 592 | margin-left: auto; 593 | left: auto; 594 | right: auto 595 | } 596 | .row .col.xl7 { 597 | width: 58.3333333333% 598 | } 599 | .row .col.xl8 { 600 | width: 66.6666666667% 601 | } 602 | .row .col.xl9 { 603 | width: 75% 604 | } 605 | .row .col.xl10 { 606 | width: 83.3333333333% 607 | } 608 | .row .col.xl11 { 609 | width: 91.6666666667% 610 | } 611 | .row .col.xl12 { 612 | width: 100% 613 | } 614 | } 615 | 616 | .card, 617 | .card-panel { 618 | margin: .5rem 0 1rem; 619 | background-color: #fff; 620 | transition: box-shadow .25s; 621 | border-radius: 2px 622 | } 623 | 624 | .card-panel { 625 | padding: 24px 626 | } 627 | 628 | .card .card-title { 629 | font-weight: 300 630 | } 631 | 632 | .card .card-title.activator { 633 | cursor: pointer 634 | } 635 | 636 | .card.large .card-image, 637 | .card.medium .card-image, 638 | .card.small .card-image { 639 | max-height: 60%; 640 | overflow: hidden 641 | } 642 | 643 | .card.large .card-image+.card-content, 644 | .card.medium .card-image+.card-content, 645 | .card.small .card-image+.card-content { 646 | max-height: 40% 647 | } 648 | 649 | .card.large .card-content, 650 | .card.medium .card-content, 651 | .card.small .card-content { 652 | max-height: 100%; 653 | overflow: hidden 654 | } 655 | 656 | .card.large .card-action, 657 | .card.medium .card-action, 658 | .card.small .card-action { 659 | position: absolute; 660 | bottom: 0; 661 | left: 0; 662 | right: 0 663 | } 664 | 665 | .card.small { 666 | height: 300px 667 | } 668 | 669 | .card.medium { 670 | height: 400px 671 | } 672 | 673 | .card.large { 674 | height: 500px 675 | } 676 | 677 | .card.horizontal { 678 | display: -webkit-flex; 679 | display: -ms-flexbox; 680 | display: flex 681 | } 682 | 683 | .card.horizontal.large .card-image, 684 | .card.horizontal.medium .card-image, 685 | .card.horizontal.small .card-image { 686 | height: 100%; 687 | max-height: none; 688 | overflow: visible 689 | } 690 | 691 | .card.horizontal.large .card-image img, 692 | .card.horizontal.medium .card-image img, 693 | .card.horizontal.small .card-image img { 694 | height: 100% 695 | } 696 | 697 | .card.horizontal .card-image { 698 | max-width: 50% 699 | } 700 | 701 | .card.horizontal .card-image img { 702 | border-radius: 2px 0 0 2px; 703 | max-width: 100%; 704 | width: auto 705 | } 706 | 707 | .card.horizontal .card-stacked { 708 | display: -webkit-flex; 709 | display: -ms-flexbox; 710 | display: flex; 711 | -webkit-flex-direction: column; 712 | -ms-flex-direction: column; 713 | flex-direction: column; 714 | -webkit-flex: 1; 715 | -ms-flex: 1; 716 | flex: 1; 717 | position: relative 718 | } 719 | 720 | .card.horizontal .card-stacked .card-content { 721 | -webkit-flex-grow: 1; 722 | -ms-flex-positive: 1; 723 | flex-grow: 1 724 | } 725 | 726 | .card.sticky-action .card-action { 727 | z-index: 2 728 | } 729 | 730 | .card.sticky-action .card-reveal { 731 | z-index: 1; 732 | padding-bottom: 64px 733 | } 734 | 735 | .card .card-image { 736 | position: relative 737 | } 738 | 739 | .card .card-image img { 740 | display: block; 741 | border-radius: 2px 2px 0 0; 742 | position: relative; 743 | left: 0; 744 | right: 0; 745 | top: 0; 746 | bottom: 0; 747 | width: 100% 748 | } 749 | 750 | .card .card-action:last-child, 751 | .card .card-content { 752 | border-radius: 0 0 2px 2px 753 | } 754 | 755 | .card .card-image .card-title { 756 | color: #fff; 757 | position: absolute; 758 | bottom: 0; 759 | left: 0; 760 | max-width: 100%; 761 | padding: 24px 762 | } 763 | 764 | .card .card-content { 765 | padding: 24px 766 | } 767 | 768 | .card .card-content p { 769 | margin: 0; 770 | color: inherit 771 | } 772 | 773 | .card .card-content .card-title { 774 | display: block; 775 | line-height: 32px; 776 | margin-bottom: 8px 777 | } 778 | 779 | .card .card-content .card-title i { 780 | line-height: 32px 781 | } 782 | 783 | .card .card-action { 784 | position: relative; 785 | background-color: inherit; 786 | border-top: 1px solid rgba(160, 160, 160, .2); 787 | padding: 16px 24px 788 | } 789 | 790 | .card .card-action a:not(.btn):not(.btn-large):not(.btn-large):not(.btn-floating) { 791 | color: #ffab40; 792 | margin-right: 24px; 793 | transition: color .3s ease; 794 | text-transform: uppercase 795 | } 796 | 797 | .card .card-action a:not(.btn):not(.btn-large):not(.btn-large):not(.btn-floating):hover { 798 | color: #ffd8a6 799 | } 800 | 801 | .card .card-reveal { 802 | padding: 24px; 803 | position: absolute; 804 | background-color: #fff; 805 | width: 100%; 806 | overflow-y: auto; 807 | left: 0; 808 | top: 100%; 809 | height: 100%; 810 | z-index: 3; 811 | display: none 812 | } 813 | 814 | .btn-floating, 815 | .markdown-body svg:not(:root) { 816 | overflow: hidden 817 | } 818 | 819 | .card .card-reveal .card-title { 820 | cursor: pointer; 821 | display: block 822 | } 823 | 824 | nav ul a.btn, 825 | nav ul a.btn-flat, 826 | nav ul a.btn-floating, 827 | nav ul a.btn-large { 828 | margin-top: -2px; 829 | margin-left: 15px; 830 | margin-right: 15px 831 | } 832 | 833 | nav ul a.btn-flat>.material-icons, 834 | nav ul a.btn-floating>.material-icons, 835 | nav ul a.btn-large>.material-icons, 836 | nav ul a.btn>.material-icons { 837 | height: inherit; 838 | line-height: inherit 839 | } 840 | 841 | .btn-flat.disabled, 842 | .btn-flat:disabled, 843 | .btn-flat[disabled], 844 | .btn-floating.disabled, 845 | .btn-floating:disabled, 846 | .btn-floating[disabled], 847 | .btn-large.disabled, 848 | .btn-large:disabled, 849 | .btn-large[disabled], 850 | .btn.disabled, 851 | .btn:disabled, 852 | .btn[disabled], 853 | .disabled.btn-large, 854 | [disabled].btn-large { 855 | pointer-events: none; 856 | background-color: #DFDFDF!important; 857 | box-shadow: none; 858 | color: #9F9F9F!important; 859 | cursor: default 860 | } 861 | 862 | .btn-flat.disabled:hover, 863 | .btn-flat:disabled:hover, 864 | .btn-flat[disabled]:hover, 865 | .btn-floating.disabled:hover, 866 | .btn-floating:disabled:hover, 867 | .btn-floating[disabled]:hover, 868 | .btn-large.disabled:hover, 869 | .btn-large:disabled:hover, 870 | .btn-large[disabled]:hover, 871 | .btn.disabled:hover, 872 | .btn:disabled:hover, 873 | .btn[disabled]:hover, 874 | .disabled.btn-large:hover, 875 | [disabled].btn-large:hover { 876 | background-color: #DFDFDF!important; 877 | color: #9F9F9F!important 878 | } 879 | 880 | .btn, 881 | .btn-flat, 882 | .btn-floating, 883 | .btn-large { 884 | font-size: 1rem; 885 | outline: 0 886 | } 887 | 888 | .btn i, 889 | .btn-flat i, 890 | .btn-floating i, 891 | .btn-large i { 892 | font-size: 1.3rem; 893 | line-height: inherit 894 | } 895 | 896 | .btn-floating:focus, 897 | .btn-large:focus, 898 | .btn:focus { 899 | background-color: #1d7d74 900 | } 901 | 902 | .btn, 903 | .btn-large { 904 | color: #fff; 905 | background-color: #26a69a; 906 | letter-spacing: .5px; 907 | transition: .2s ease-out; 908 | cursor: pointer 909 | } 910 | 911 | .btn-large:hover, 912 | .btn:hover { 913 | background-color: #2bbbad 914 | } 915 | 916 | .btn-floating, 917 | .btn-floating:hover { 918 | background-color: #26a69a 919 | } 920 | 921 | .btn-floating { 922 | display: inline-block; 923 | color: #fff; 924 | position: relative; 925 | z-index: 1; 926 | width: 40px; 927 | height: 40px; 928 | line-height: 40px; 929 | padding: 0; 930 | border-radius: 50%; 931 | transition: .3s; 932 | cursor: pointer; 933 | vertical-align: middle 934 | } 935 | 936 | .btn-floating:before { 937 | border-radius: 0 938 | } 939 | 940 | .btn-floating.btn-large { 941 | width: 56px; 942 | height: 56px 943 | } 944 | 945 | .btn-floating.btn-large.halfway-fab { 946 | bottom: -28px 947 | } 948 | 949 | .btn-floating.btn-large i { 950 | line-height: 56px 951 | } 952 | 953 | .btn-floating.halfway-fab { 954 | position: absolute; 955 | right: 24px; 956 | bottom: -20px 957 | } 958 | 959 | .btn-floating.halfway-fab.left { 960 | right: auto; 961 | left: 24px 962 | } 963 | 964 | .btn-floating i { 965 | width: inherit; 966 | display: inline-block; 967 | color: #fff; 968 | font-size: 1.6rem; 969 | line-height: 40px 970 | } 971 | 972 | button.btn-floating { 973 | border: none 974 | } 975 | 976 | .fixed-action-btn ul a.btn-floating { 977 | opacity: 0 978 | } 979 | 980 | .pagination li { 981 | display: inline-block; 982 | border-radius: 2px; 983 | vertical-align: top; 984 | height: 30px 985 | } 986 | 987 | .pagination li a { 988 | color: #444; 989 | display: inline-block; 990 | font-size: 1.2rem; 991 | padding: 0 10px; 992 | line-height: 30px 993 | } 994 | 995 | .pagination li.active a { 996 | color: #fff 997 | } 998 | 999 | .pagination li.active { 1000 | background-color: #ee6e73 1001 | } 1002 | 1003 | .pagination li.disabled a { 1004 | cursor: default; 1005 | color: #999 1006 | } 1007 | 1008 | .readmore, 1009 | nav a { 1010 | cursor: pointer 1011 | } 1012 | 1013 | .pagination li i { 1014 | font-size: 2rem 1015 | } 1016 | 1017 | .pagination li.pages ul li { 1018 | display: inline-block; 1019 | float: none 1020 | } 1021 | 1022 | @media only screen and (max-width:992px) { 1023 | .pagination { 1024 | width: 100% 1025 | } 1026 | .pagination li.next, 1027 | .pagination li.prev { 1028 | width: 10% 1029 | } 1030 | .pagination li.pages { 1031 | width: 80%; 1032 | overflow: hidden; 1033 | white-space: nowrap 1034 | } 1035 | } 1036 | 1037 | @font-face { 1038 | font-family: octicons-link; 1039 | src: url(data:font/woff;charset=utf-8;base64,d09GRgABAAAAAAZwABAAAAAACFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEU0lHAAAGaAAAAAgAAAAIAAAAAUdTVUIAAAZcAAAACgAAAAoAAQAAT1MvMgAAAyQAAABJAAAAYFYEU3RjbWFwAAADcAAAAEUAAACAAJThvmN2dCAAAATkAAAABAAAAAQAAAAAZnBnbQAAA7gAAACyAAABCUM+8IhnYXNwAAAGTAAAABAAAAAQABoAI2dseWYAAAFsAAABPAAAAZwcEq9taGVhZAAAAsgAAAA0AAAANgh4a91oaGVhAAADCAAAABoAAAAkCA8DRGhtdHgAAAL8AAAADAAAAAwGAACfbG9jYQAAAsAAAAAIAAAACABiATBtYXhwAAACqAAAABgAAAAgAA8ASm5hbWUAAAToAAABQgAAAlXu73sOcG9zdAAABiwAAAAeAAAAME3QpOBwcmVwAAAEbAAAAHYAAAB/aFGpk3jaTY6xa8JAGMW/O62BDi0tJLYQincXEypYIiGJjSgHniQ6umTsUEyLm5BV6NDBP8Tpts6F0v+k/0an2i+itHDw3v2+9+DBKTzsJNnWJNTgHEy4BgG3EMI9DCEDOGEXzDADU5hBKMIgNPZqoD3SilVaXZCER3/I7AtxEJLtzzuZfI+VVkprxTlXShWKb3TBecG11rwoNlmmn1P2WYcJczl32etSpKnziC7lQyWe1smVPy/Lt7Kc+0vWY/gAgIIEqAN9we0pwKXreiMasxvabDQMM4riO+qxM2ogwDGOZTXxwxDiycQIcoYFBLj5K3EIaSctAq2kTYiw+ymhce7vwM9jSqO8JyVd5RH9gyTt2+J/yUmYlIR0s04n6+7Vm1ozezUeLEaUjhaDSuXHwVRgvLJn1tQ7xiuVv/ocTRF42mNgZGBgYGbwZOBiAAFGJBIMAAizAFoAAABiAGIAznjaY2BkYGAA4in8zwXi+W2+MjCzMIDApSwvXzC97Z4Ig8N/BxYGZgcgl52BCSQKAA3jCV8CAABfAAAAAAQAAEB42mNgZGBg4f3vACQZQABIMjKgAmYAKEgBXgAAeNpjYGY6wTiBgZWBg2kmUxoDA4MPhGZMYzBi1AHygVLYQUCaawqDA4PChxhmh/8ODDEsvAwHgMKMIDnGL0x7gJQCAwMAJd4MFwAAAHjaY2BgYGaA4DAGRgYQkAHyGMF8NgYrIM3JIAGVYYDT+AEjAwuDFpBmA9KMDEwMCh9i/v8H8sH0/4dQc1iAmAkALaUKLgAAAHjaTY9LDsIgEIbtgqHUPpDi3gPoBVyRTmTddOmqTXThEXqrob2gQ1FjwpDvfwCBdmdXC5AVKFu3e5MfNFJ29KTQT48Ob9/lqYwOGZxeUelN2U2R6+cArgtCJpauW7UQBqnFkUsjAY/kOU1cP+DAgvxwn1chZDwUbd6CFimGXwzwF6tPbFIcjEl+vvmM/byA48e6tWrKArm4ZJlCbdsrxksL1AwWn/yBSJKpYbq8AXaaTb8AAHja28jAwOC00ZrBeQNDQOWO//sdBBgYGRiYWYAEELEwMTE4uzo5Zzo5b2BxdnFOcALxNjA6b2ByTswC8jYwg0VlNuoCTWAMqNzMzsoK1rEhNqByEyerg5PMJlYuVueETKcd/89uBpnpvIEVomeHLoMsAAe1Id4AAAAAAAB42oWQT07CQBTGv0JBhagk7HQzKxca2sJCE1hDt4QF+9JOS0nbaaYDCQfwCJ7Au3AHj+LO13FMmm6cl7785vven0kBjHCBhfpYuNa5Ph1c0e2Xu3jEvWG7UdPDLZ4N92nOm+EBXuAbHmIMSRMs+4aUEd4Nd3CHD8NdvOLTsA2GL8M9PODbcL+hD7C1xoaHeLJSEao0FEW14ckxC+TU8TxvsY6X0eLPmRhry2WVioLpkrbp84LLQPGI7c6sOiUzpWIWS5GzlSgUzzLBSikOPFTOXqly7rqx0Z1Q5BAIoZBSFihQYQOOBEdkCOgXTOHA07HAGjGWiIjaPZNW13/+lm6S9FT7rLHFJ6fQbkATOG1j2OFMucKJJsxIVfQORl+9Jyda6Sl1dUYhSCm1dyClfoeDve4qMYdLEbfqHf3O/AdDumsjAAB42mNgYoAAZQYjBmyAGYQZmdhL8zLdDEydARfoAqIAAAABAAMABwAKABMAB///AA8AAQAAAAAAAAAAAAAAAAABAAAAAA==) format('woff') 1040 | } 1041 | 1042 | .markdown-body { 1043 | -ms-text-size-adjust: 100%; 1044 | -webkit-text-size-adjust: 100%; 1045 | color: #24292e; 1046 | /*font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";*/ 1047 | font-size: 16px; 1048 | line-height: 1.5; 1049 | word-wrap: break-word 1050 | } 1051 | 1052 | .markdown-body .pl-c { 1053 | color: #969896 1054 | } 1055 | 1056 | .markdown-body .pl-c1, 1057 | .markdown-body .pl-s .pl-v { 1058 | color: #0086b3 1059 | } 1060 | 1061 | .markdown-body .pl-e, 1062 | .markdown-body .pl-en { 1063 | color: #795da3 1064 | } 1065 | 1066 | .markdown-body .pl-s .pl-s1, 1067 | .markdown-body .pl-smi { 1068 | color: #333 1069 | } 1070 | 1071 | .markdown-body .pl-ent { 1072 | color: #63a35c 1073 | } 1074 | 1075 | .markdown-body .pl-k { 1076 | color: #a71d5d 1077 | } 1078 | 1079 | .markdown-body .pl-pds, 1080 | .markdown-body .pl-s, 1081 | .markdown-body .pl-s .pl-pse .pl-s1, 1082 | .markdown-body .pl-sr, 1083 | .markdown-body .pl-sr .pl-cce, 1084 | .markdown-body .pl-sr .pl-sra, 1085 | .markdown-body .pl-sr .pl-sre { 1086 | color: #183691 1087 | } 1088 | 1089 | .markdown-body .pl-smw, 1090 | .markdown-body .pl-v { 1091 | color: #ed6a43 1092 | } 1093 | 1094 | .markdown-body .pl-bu { 1095 | color: #b52a1d 1096 | } 1097 | 1098 | .markdown-body .pl-c2, 1099 | .markdown-body .pl-ii { 1100 | color: #f8f8f8; 1101 | background-color: #b52a1d 1102 | } 1103 | 1104 | .markdown-body .pl-c2::before { 1105 | content: "^M" 1106 | } 1107 | 1108 | .markdown-body .pl-sr .pl-cce { 1109 | font-weight: 700; 1110 | color: #63a35c 1111 | } 1112 | 1113 | .markdown-body .pl-ml { 1114 | color: #693a17 1115 | } 1116 | 1117 | .markdown-body .pl-mh, 1118 | .markdown-body .pl-mh .pl-en, 1119 | .markdown-body .pl-ms { 1120 | font-weight: 700; 1121 | color: #1d3e81 1122 | } 1123 | 1124 | .markdown-body .pl-mq { 1125 | color: teal 1126 | } 1127 | 1128 | .markdown-body .pl-mi { 1129 | font-style: italic; 1130 | color: #333 1131 | } 1132 | 1133 | .markdown-body .pl-mb { 1134 | font-weight: 700; 1135 | color: #333 1136 | } 1137 | 1138 | .markdown-body .pl-md { 1139 | color: #bd2c00; 1140 | background-color: #ffecec 1141 | } 1142 | 1143 | .markdown-body .pl-mi1 { 1144 | color: #55a532; 1145 | background-color: #eaffea 1146 | } 1147 | 1148 | .markdown-body .pl-mc { 1149 | color: #ef9700; 1150 | background-color: #ffe3b4 1151 | } 1152 | 1153 | .markdown-body .pl-mi2 { 1154 | color: #d8d8d8; 1155 | background-color: grey 1156 | } 1157 | 1158 | .markdown-body .pl-mdr { 1159 | font-weight: 700; 1160 | color: #795da3 1161 | } 1162 | 1163 | .markdown-body .pl-mo { 1164 | color: #1d3e81 1165 | } 1166 | 1167 | .markdown-body .pl-ba { 1168 | color: #595e62 1169 | } 1170 | 1171 | .markdown-body .pl-sg { 1172 | color: silver 1173 | } 1174 | 1175 | .markdown-body .pl-corl { 1176 | text-decoration: underline; 1177 | color: #183691 1178 | } 1179 | 1180 | .markdown-body .octicon { 1181 | display: inline-block; 1182 | fill: currentColor; 1183 | vertical-align: text-bottom 1184 | } 1185 | 1186 | .markdown-body hr::after, 1187 | .markdown-body hr::before, 1188 | .markdown-body::after, 1189 | .markdown-body::before { 1190 | display: table; 1191 | content: "" 1192 | } 1193 | 1194 | .markdown-body a { 1195 | background-color: transparent; 1196 | -webkit-text-decoration-skip: objects; 1197 | color: #0366d6; 1198 | text-decoration: none 1199 | } 1200 | 1201 | .markdown-body a:active, 1202 | .markdown-body a:hover { 1203 | outline-width: 0 1204 | } 1205 | 1206 | .markdown-body h1 { 1207 | margin: .67em 0 1208 | } 1209 | 1210 | .markdown-body img { 1211 | border-style: none 1212 | } 1213 | 1214 | .markdown-body hr { 1215 | box-sizing: content-box 1216 | } 1217 | 1218 | .markdown-body input { 1219 | font: inherit; 1220 | margin: 0; 1221 | overflow: visible; 1222 | font-family: inherit; 1223 | font-size: inherit; 1224 | line-height: inherit 1225 | } 1226 | 1227 | .markdown-body [type=checkbox] { 1228 | box-sizing: border-box; 1229 | padding: 0 1230 | } 1231 | 1232 | .markdown-body * { 1233 | box-sizing: border-box 1234 | } 1235 | 1236 | .markdown-body a:hover { 1237 | text-decoration: underline 1238 | } 1239 | 1240 | .markdown-body h1:hover .anchor, 1241 | .markdown-body h2:hover .anchor, 1242 | .markdown-body h3:hover .anchor, 1243 | .markdown-body h4:hover .anchor, 1244 | .markdown-body h5:hover .anchor, 1245 | .markdown-body h6:hover .anchor, 1246 | .tag { 1247 | text-decoration: none 1248 | } 1249 | 1250 | .markdown-body strong { 1251 | font-weight: 600 1252 | } 1253 | 1254 | .markdown-body td, 1255 | .markdown-body th { 1256 | padding: 0 1257 | } 1258 | 1259 | .markdown-body blockquote { 1260 | margin: 0 1261 | } 1262 | 1263 | .markdown-body ol ol, 1264 | .markdown-body ul ol { 1265 | list-style-type: lower-roman 1266 | } 1267 | 1268 | .markdown-body ol ol ol, 1269 | .markdown-body ol ul ol, 1270 | .markdown-body ul ol ol, 1271 | .markdown-body ul ul ol { 1272 | list-style-type: lower-alpha 1273 | } 1274 | 1275 | .markdown-body dd { 1276 | margin-left: 0 1277 | } 1278 | 1279 | .markdown-body code { 1280 | font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; 1281 | font-size: 12px 1282 | } 1283 | 1284 | .markdown-body pre { 1285 | font: 12px SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace 1286 | } 1287 | 1288 | .markdown-body .pl-0 { 1289 | padding-left: 0!important 1290 | } 1291 | 1292 | .markdown-body .pl-1 { 1293 | padding-left: 4px!important 1294 | } 1295 | 1296 | .markdown-body .pl-2 { 1297 | padding-left: 8px!important 1298 | } 1299 | 1300 | .markdown-body .pl-3 { 1301 | padding-left: 16px!important 1302 | } 1303 | 1304 | .markdown-body .pl-4 { 1305 | padding-left: 24px!important 1306 | } 1307 | 1308 | .markdown-body .pl-5 { 1309 | padding-left: 32px!important 1310 | } 1311 | 1312 | .markdown-body .pl-6 { 1313 | padding-left: 40px!important 1314 | } 1315 | 1316 | .markdown-body>:first-child { 1317 | margin-top: 0!important 1318 | } 1319 | 1320 | .markdown-body>:last-child { 1321 | margin-bottom: 0!important 1322 | } 1323 | 1324 | .markdown-body a:not([href]) { 1325 | color: inherit; 1326 | text-decoration: none 1327 | } 1328 | 1329 | .markdown-body .anchor { 1330 | float: left; 1331 | padding-right: 4px; 1332 | margin-left: -20px; 1333 | line-height: 1 1334 | } 1335 | 1336 | .markdown-body .anchor:focus { 1337 | outline: 0 1338 | } 1339 | 1340 | .markdown-body blockquote, 1341 | .markdown-body dl, 1342 | .markdown-body ol, 1343 | .markdown-body p, 1344 | .markdown-body pre, 1345 | .markdown-body table, 1346 | .markdown-body ul { 1347 | margin-top: 0; 1348 | margin-bottom: 10px 1349 | } 1350 | 1351 | .markdown-body hr { 1352 | overflow: hidden; 1353 | background: #e1e4e8; 1354 | height: .25em; 1355 | padding: 0; 1356 | margin: 24px 0; 1357 | border: 0 1358 | } 1359 | 1360 | .page, 1361 | main { 1362 | overflow: auto 1363 | } 1364 | 1365 | .markdown-body blockquote { 1366 | padding: 0 1em; 1367 | color: #6a737d; 1368 | border-left: .25em solid #dfe2e5 1369 | } 1370 | 1371 | /*.markdown-body h1, 1372 | .markdown-body h2 { 1373 | padding-bottom: .3em; 1374 | border-bottom: 1px solid #eaecef 1375 | }*/ 1376 | 1377 | blockquote { 1378 | margin: 20px 0; 1379 | padding-left: 1.5rem; 1380 | border-left: 5px solid #ee6e73 1381 | } 1382 | 1383 | .markdown-body blockquote>:first-child { 1384 | margin-top: 0 1385 | } 1386 | 1387 | .markdown-body blockquote>:last-child { 1388 | margin-bottom: 0 1389 | } 1390 | 1391 | .markdown-body h1, 1392 | .markdown-body h2, 1393 | .markdown-body h3, 1394 | .markdown-body h4, 1395 | .markdown-body h5, 1396 | .markdown-body h6 { 1397 | margin-top: 24px; 1398 | margin-bottom: 16px; 1399 | font-weight: 600; 1400 | line-height: 1.25; 1401 | color: rgba(0, 0, 0, .85) 1402 | } 1403 | 1404 | .markdown-body h1 .octicon-link, 1405 | .markdown-body h2 .octicon-link, 1406 | .markdown-body h3 .octicon-link, 1407 | .markdown-body h4 .octicon-link, 1408 | .markdown-body h5 .octicon-link, 1409 | .markdown-body h6 .octicon-link { 1410 | color: #1b1f23; 1411 | vertical-align: middle; 1412 | visibility: hidden 1413 | } 1414 | 1415 | .markdown-body h1:hover .anchor .octicon-link, 1416 | .markdown-body h2:hover .anchor .octicon-link, 1417 | .markdown-body h3:hover .anchor .octicon-link, 1418 | .markdown-body h4:hover .anchor .octicon-link, 1419 | .markdown-body h5:hover .anchor .octicon-link, 1420 | .markdown-body h6:hover .anchor .octicon-link { 1421 | visibility: visible 1422 | } 1423 | 1424 | .markdown-body h1 { 1425 | font-size: 2em 1426 | } 1427 | 1428 | .markdown-body h2 { 1429 | font-size: 1.5em 1430 | } 1431 | 1432 | .markdown-body h3 { 1433 | font-size: 1.25em 1434 | } 1435 | 1436 | .markdown-body h4 { 1437 | font-size: 1em 1438 | } 1439 | 1440 | .markdown-body h5 { 1441 | font-size: .875em 1442 | } 1443 | 1444 | .markdown-body h6 { 1445 | font-size: .85em; 1446 | color: #6a737d 1447 | } 1448 | 1449 | .markdown-body ol, 1450 | .markdown-body ul { 1451 | padding-left: 2em 1452 | } 1453 | 1454 | .markdown-body ol ol, 1455 | .markdown-body ol ul, 1456 | .markdown-body ul ol, 1457 | .markdown-body ul ul { 1458 | margin-top: 0; 1459 | margin-bottom: 0 1460 | } 1461 | 1462 | .markdown-body li>p { 1463 | margin-top: 16px 1464 | } 1465 | 1466 | .markdown-body li+li { 1467 | margin-top: .25em 1468 | } 1469 | 1470 | .markdown-body dl { 1471 | padding: 0 1472 | } 1473 | 1474 | .markdown-body dl dt { 1475 | padding: 0; 1476 | margin-top: 16px; 1477 | font-size: 1em; 1478 | font-style: italic; 1479 | font-weight: 600 1480 | } 1481 | 1482 | .markdown-body dl dd { 1483 | padding: 0 16px; 1484 | margin-bottom: 16px 1485 | } 1486 | 1487 | .markdown-body table:not(.hljs-ln) { 1488 | display: block; 1489 | width: 100%; 1490 | overflow: auto 1491 | } 1492 | 1493 | #menu.open, 1494 | .post #menu { 1495 | width: 240px 1496 | } 1497 | 1498 | .markdown-body table:not(.hljs-ln) th { 1499 | font-weight: 600 1500 | } 1501 | 1502 | .markdown-body table:not(.hljs-ln) td, 1503 | .markdown-body table:not(.hljs-ln) th { 1504 | padding: 6px 13px; 1505 | border: 1px solid #dfe2e5 1506 | } 1507 | 1508 | .markdown-body table:not(.hljs-ln) tr { 1509 | background-color: #fff; 1510 | border-top: 1px solid #c6cbd1 1511 | } 1512 | 1513 | .markdown-body table:not(.hljs-ln) tr:nth-child(2n) { 1514 | background-color: #f6f8fa 1515 | } 1516 | 1517 | .markdown-body img { 1518 | max-width: 100%; 1519 | box-sizing: content-box; 1520 | background-color: #fff 1521 | } 1522 | 1523 | .markdown-body code::after, 1524 | .markdown-body code::before { 1525 | letter-spacing: -.2em; 1526 | content: "\00a0" 1527 | } 1528 | 1529 | .markdown-body .highlight { 1530 | margin-bottom: 16px 1531 | } 1532 | 1533 | .markdown-body .highlight pre { 1534 | margin-bottom: 0; 1535 | word-break: normal 1536 | } 1537 | 1538 | .markdown-body pre code::after, 1539 | .markdown-body pre code::before { 1540 | content: normal 1541 | } 1542 | 1543 | .markdown-body .full-commit .btn-outline:not(:disabled):hover { 1544 | color: #005cc5; 1545 | border-color: #005cc5 1546 | } 1547 | 1548 | .markdown-body kbd { 1549 | display: inline-block; 1550 | padding: 3px 5px; 1551 | font: 11px SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; 1552 | line-height: 10px; 1553 | color: #444d56; 1554 | vertical-align: middle; 1555 | background-color: #fcfcfc; 1556 | border: 1px solid #c6cbd1; 1557 | border-bottom-color: #959da5; 1558 | border-radius: 3px; 1559 | box-shadow: inset 0 -1px 0 #959da5 1560 | } 1561 | 1562 | #menu, 1563 | .page, 1564 | main { 1565 | display: flex 1566 | } 1567 | 1568 | .markdown-body :checked+.radio-label { 1569 | position: relative; 1570 | z-index: 1; 1571 | border-color: #0366d6 1572 | } 1573 | 1574 | .markdown-body .task-list-item { 1575 | list-style-type: none 1576 | } 1577 | 1578 | .markdown-body .task-list-item+.task-list-item { 1579 | margin-top: 3px 1580 | } 1581 | 1582 | .markdown-body .task-list-item input { 1583 | margin: 0 .2em .25em -1.6em; 1584 | vertical-align: middle 1585 | } 1586 | 1587 | .markdown-body hr { 1588 | border-bottom-color: #eee 1589 | } 1590 | 1591 | body, 1592 | html { 1593 | height: auto; 1594 | line-height: 1.5; 1595 | /*font-family: Helvetica Neue For Number, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif!important*/ 1596 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif; 1597 | } 1598 | 1599 | @font-face { 1600 | font-family: SourceCodePro; 1601 | src: url(../fonts/source-code-pro/SourceCodePro-Regular.ttf), url(../fonts/source-code-pro/SourceCodePro-Regular.otf), url(../fonts/source-code-pro/SourceCodePro-Regular.eot), url(../fonts/source-code-pro/SourceCodePro-Regular.ttf.woff) 1602 | } 1603 | 1604 | a { 1605 | color: #4fc3f7 1606 | } 1607 | 1608 | a:hover { 1609 | color: #039be5 1610 | } 1611 | 1612 | code { 1613 | background: #e3f2fd; 1614 | padding: 2px 2px; 1615 | border-radius: 5px; 1616 | margin: 0 .25em; 1617 | font-family: SourceCodePro!important; 1618 | font-size: 14px!important; 1619 | line-height: 18px!important; 1620 | } 1621 | 1622 | .page { 1623 | height: 100vh; 1624 | position: relative; 1625 | margin: 0; 1626 | padding: 0 1627 | } 1628 | 1629 | #menu { 1630 | flex-direction: column; 1631 | justify-content: center; 1632 | align-items: center; 1633 | color: #f8f8f8; 1634 | overflow: hidden; 1635 | min-height: 100%; 1636 | background: #fff; 1637 | box-shadow: 2px 0 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12); 1638 | -webkit-transition: all .4s ease; 1639 | transition: all .4s ease 1640 | } 1641 | 1642 | .post #menu { 1643 | position: absolute; 1644 | left: -240px; 1645 | height: 100% 1646 | } 1647 | 1648 | #menu.cover { 1649 | width: 100% !important; 1650 | } 1651 | 1652 | main { 1653 | flex-direction: column; 1654 | flex: 1; 1655 | background-color: #F9FAFB; 1656 | height: 100% 1657 | } 1658 | 1659 | header.nav-wrapper { 1660 | display: inherit; 1661 | justify-content: space-between; 1662 | /*background: url(https://oc8prtequ.qnssl.com/images/postbg.jpg) 50% 50%;*/ 1663 | background: url(https://oc8prtequ.qnssl.com/postbg.jpg) 50% 50%; 1664 | background-size: cover; 1665 | width: 100%; 1666 | height: 100% 1667 | } 1668 | 1669 | .index header.nav-wrapper { 1670 | align-items: center 1671 | } 1672 | 1673 | .post header.nav-wrapper div { 1674 | display: inline-flex; 1675 | height: 60px; 1676 | width: 100%; 1677 | justify-content: space-between; 1678 | align-items: center; 1679 | position: fixed; 1680 | top: 0; 1681 | left: 0 1682 | } 1683 | 1684 | .post nav.fixtop header.nav-wrapper div { 1685 | background-color: rgba(0, 0, 0, .25) 1686 | } 1687 | 1688 | #show-slide-nav { 1689 | margin-left: 10px 1690 | } 1691 | 1692 | .short-line { 1693 | display: inline-block; 1694 | width: 30%; 1695 | height: 1px; 1696 | border-bottom: 1px solid rgba(255, 255, 255, .34) 1697 | } 1698 | 1699 | .cover .short-line { 1700 | max-width: 120px 1701 | } 1702 | 1703 | .short-line.short { 1704 | width: 20%; 1705 | max-width: 80px 1706 | } 1707 | 1708 | .bg-container { 1709 | flex: 1; 1710 | width: 100%; 1711 | height: 100%; 1712 | background-color: rgba(0, 0, 0, .34); 1713 | display: flex; 1714 | justify-content: center; 1715 | align-items: center 1716 | } 1717 | 1718 | .profile { 1719 | font-family: SourceCodePro 1720 | } 1721 | 1722 | .index #menu { 1723 | position: absolute; 1724 | top: 0; 1725 | left: 0; 1726 | z-index: 6 1727 | } 1728 | 1729 | .index main { 1730 | margin-left: 240px 1731 | } 1732 | 1733 | .post main nav:not(.gitment-editor-tabs) { 1734 | height: 240px; 1735 | display: inline-table; 1736 | width: 100% 1737 | } 1738 | 1739 | .post main nav.fixtop:not(.gitment-editor-tabs) { 1740 | height: 60px; 1741 | z-index: 10; 1742 | position: fixed; 1743 | top: 0; 1744 | left: 0 1745 | } 1746 | 1747 | .post main .contents { 1748 | margin: -100px auto 20px; 1749 | background-color: #fff; 1750 | /*z-index: 5;*/ 1751 | padding: 35px 0; 1752 | display: inline-table 1753 | } 1754 | 1755 | .post main .contents.fixtop { 1756 | margin-top: 75px 1757 | } 1758 | 1759 | .markdown-body { 1760 | box-sizing: border-box; 1761 | min-width: 200px; 1762 | max-width: 980px; 1763 | margin: 0 auto 1764 | } 1765 | 1766 | .content-in { 1767 | width: 80%; 1768 | max-width: 900px; 1769 | margin: 0 auto 1770 | } 1771 | 1772 | .avatar { 1773 | display: flex; 1774 | flex-direction: column; 1775 | align-items: center 1776 | } 1777 | 1778 | .avatar img { 1779 | width: 120px; 1780 | height: 120px; 1781 | border-radius: 60px; 1782 | background: rgba(255,255,255,.3); 1783 | } 1784 | 1785 | .avatar span { 1786 | font-size: 28px; 1787 | margin: 10px 0; 1788 | color: #fff 1789 | } 1790 | 1791 | .avatar p { 1792 | padding: 0 10px; 1793 | font-size: 14px; 1794 | word-spacing: 3px; 1795 | letter-spacing: 1px 1796 | } 1797 | 1798 | ul.nav li { 1799 | line-height: 36px; 1800 | font-size: 16px; 1801 | font-weight: lighter; 1802 | letter-spacing: 1px 1803 | } 1804 | 1805 | ul.nav li a { 1806 | color: #f8f8f8 1807 | } 1808 | 1809 | ul.link li a { 1810 | color: #fff 1811 | } 1812 | 1813 | ul.link li a:hover { 1814 | color: #4fc3f7 1815 | } 1816 | 1817 | ul.link { 1818 | display: flex; 1819 | justify-content: center 1820 | } 1821 | 1822 | ul.link li { 1823 | margin: 0 5px 1824 | } 1825 | 1826 | .contents { 1827 | /* height: 100%; */ 1828 | margin-top: 20px 1829 | } 1830 | 1831 | .post .card-image { 1832 | padding-left: 0; 1833 | max-height: 180px; 1834 | display: inline-block; 1835 | overflow: hidden 1836 | } 1837 | 1838 | .post .card-content { 1839 | padding: 10px 1840 | } 1841 | 1842 | .post .card-content p { 1843 | display: -webkit-box; 1844 | overflow: hidden; 1845 | line-height: 20px; 1846 | font-size: 13px; 1847 | color: rgba(0, 0, 0, .65); 1848 | height: 60px; 1849 | word-break: break-all 1850 | } 1851 | 1852 | .post-item { 1853 | display: flex; 1854 | flex-direction: column; 1855 | background-color: #fff; 1856 | margin-bottom: 20px; 1857 | position: relative; 1858 | border-radius: 3px; 1859 | box-shadow: 0 5px 7px 0 rgba(193, 204, 215, .61); 1860 | transition: all .3s 1861 | } 1862 | 1863 | .post-item:hover { 1864 | box-shadow: 0 8px 10px 0 rgba(193, 204, 215, .8) 1865 | } 1866 | 1867 | .post-item .item-header { 1868 | display: flex; 1869 | justify-content: space-between; 1870 | align-items: center; 1871 | padding: 0 20px; 1872 | border-bottom: 1px solid #eee 1873 | } 1874 | 1875 | .post-item .item-content { 1876 | display: flex; 1877 | flex-direction: column; 1878 | align-items: flex-end; 1879 | padding: 10px 20px; 1880 | color: #888; 1881 | font-size: 14px; 1882 | text-align: justify; 1883 | font-weight: 400 1884 | } 1885 | 1886 | .post-item:hover .item-content { 1887 | color: #999 1888 | } 1889 | 1890 | .post-item .item-footer { 1891 | display: flex; 1892 | align-items: center; 1893 | padding: 10px 20px; 1894 | border-top: 1px solid #eee 1895 | } 1896 | 1897 | .item-footer { 1898 | display: flex; 1899 | align-items: center 1900 | } 1901 | 1902 | .item-footer a { 1903 | margin-right: 10px; 1904 | font-size: 12px; 1905 | z-index: 2; 1906 | cursor: pointer; 1907 | } 1908 | 1909 | .item-header p { 1910 | font-size: 18px; 1911 | color: #555; 1912 | margin: 10px 0 1913 | } 1914 | 1915 | .post-item:hover .item-header p { 1916 | color: #333 1917 | } 1918 | 1919 | .item-header span { 1920 | font-size: 12px; 1921 | color: #999; 1922 | letter-spacing: .5px 1923 | } 1924 | 1925 | .read-more { 1926 | margin-top: -15px 1927 | } 1928 | 1929 | .pagination { 1930 | background: 0 0; 1931 | margin-bottom: 20px; 1932 | box-shadow: none; 1933 | display: flex!important; 1934 | justify-content: space-between; 1935 | align-items: center; 1936 | color: #333 1937 | } 1938 | 1939 | .posts-title { 1940 | font-size: 24px; 1941 | margin: 10px 0 1942 | } 1943 | 1944 | .post-time { 1945 | font-size: 12px; 1946 | color: #999 1947 | } 1948 | 1949 | .post-time i { 1950 | margin-right: 5px 1951 | } 1952 | 1953 | .readmore { 1954 | position: absolute; 1955 | top: 0; 1956 | left: 0; 1957 | width: 100%; 1958 | height: 100%; 1959 | cursor: pointer; 1960 | z-index: 1; 1961 | } 1962 | 1963 | .tag { 1964 | background: #eee; 1965 | border-radius: 3px 0 0 3px; 1966 | color: #999; 1967 | display: inline-block; 1968 | height: 26px; 1969 | line-height: 26px; 1970 | padding: 0 20px 0 23px; 1971 | position: relative; 1972 | margin: 0 10px 0 0; 1973 | transition: all .3s 1974 | } 1975 | 1976 | .tag::after, 1977 | .tag::before { 1978 | background: #fff; 1979 | content: ''; 1980 | transition: all .3s 1981 | } 1982 | 1983 | .tag::before { 1984 | border-radius: 10px; 1985 | box-shadow: inset 0 1px rgba(0, 0, 0, .25); 1986 | height: 6px; 1987 | left: 10px; 1988 | position: absolute; 1989 | width: 6px; 1990 | top: 10px 1991 | } 1992 | 1993 | .pre-numbering, 1994 | .slidenav, 1995 | .tag::after { 1996 | position: absolute; 1997 | top: 0 1998 | } 1999 | 2000 | .tag::after { 2001 | border-bottom: 13px solid transparent; 2002 | border-left: 10px solid #eee; 2003 | border-top: 13px solid transparent; 2004 | right: 0 2005 | } 2006 | 2007 | .tag:hover { 2008 | background-color: #40c4ff; 2009 | color: #fff 2010 | } 2011 | 2012 | .tag:hover::after { 2013 | border-left-color: #40c4ff 2014 | } 2015 | 2016 | .slidenav { 2017 | display: flex; 2018 | width: 100%; 2019 | height: 100%; 2020 | left: 0; 2021 | z-index: 20; 2022 | visibility: hidden; 2023 | background: rgba(0, 0, 0, .5); 2024 | transition: all .3s 2025 | } 2026 | 2027 | .slidenav.open { 2028 | visibility: visible 2029 | } 2030 | 2031 | .closeslide { 2032 | flex: 1 2033 | } 2034 | 2035 | .fixtop .post-title, 2036 | .header-title { 2037 | display: block 2038 | } 2039 | 2040 | .fixtop .header-title, 2041 | .post-title { 2042 | display: none 2043 | } 2044 | 2045 | .nav-wrapper div p { 2046 | font-size: 20px; 2047 | letter-spacing: 1px 2048 | } 2049 | 2050 | .post-html { 2051 | font-size: 15px; 2052 | vertical-align: middle; 2053 | line-height: 2; 2054 | color: #314659; 2055 | margin-top: 20px; 2056 | } 2057 | 2058 | .archives h3, 2059 | .hljs-strong { 2060 | font-weight: 700 2061 | } 2062 | 2063 | .post-html p { 2064 | line-height: 26px 2065 | } 2066 | 2067 | .posts-title { 2068 | margin-bottom: 10px!important 2069 | } 2070 | 2071 | .hljs { 2072 | display: block; 2073 | overflow-x: auto; 2074 | padding: 5px; 2075 | color: #abb2bf; 2076 | background: #282c34; 2077 | border-radius: 0; 2078 | line-height: 14px; 2079 | border-radius: 2px; 2080 | padding: 20px 15px; 2081 | } 2082 | 2083 | .hljs-comment, 2084 | .hljs-quote { 2085 | color: #5c6370; 2086 | font-style: italic 2087 | } 2088 | 2089 | .hljs-doctag, 2090 | .hljs-formula, 2091 | .hljs-keyword { 2092 | color: #c678dd 2093 | } 2094 | 2095 | .hljs-deletion, 2096 | .hljs-name, 2097 | .hljs-section, 2098 | .hljs-selector-tag, 2099 | .hljs-subst { 2100 | color: #e06c75 2101 | } 2102 | 2103 | .hljs-literal { 2104 | color: #56b6c2 2105 | } 2106 | 2107 | .hljs-addition, 2108 | .hljs-attribute, 2109 | .hljs-meta-string, 2110 | .hljs-regexp, 2111 | .hljs-string { 2112 | color: #98c379 2113 | } 2114 | 2115 | .hljs-built_in, 2116 | .hljs-class .hljs-title { 2117 | color: #e6c07b 2118 | } 2119 | 2120 | .hljs-attr, 2121 | .hljs-number, 2122 | .hljs-selector-attr, 2123 | .hljs-selector-class, 2124 | .hljs-selector-pseudo, 2125 | .hljs-template-variable, 2126 | .hljs-type, 2127 | .hljs-variable { 2128 | color: #d19a66 2129 | } 2130 | 2131 | .hljs-bullet, 2132 | .hljs-link, 2133 | .hljs-meta, 2134 | .hljs-selector-id, 2135 | .hljs-symbol, 2136 | .hljs-title { 2137 | color: #61aeee 2138 | } 2139 | 2140 | .hljs-emphasis { 2141 | font-style: italic 2142 | } 2143 | 2144 | .hljs-link { 2145 | text-decoration: underline 2146 | } 2147 | 2148 | code.has-numbering { 2149 | margin-left: 20px; 2150 | padding-left: 10px; 2151 | border-left: 1px solid #555; 2152 | border-top-right-radius: 3px; 2153 | border-bottom-right-radius: 3px; 2154 | } 2155 | 2156 | .pre-numbering { 2157 | left: 0; 2158 | width: 20px; 2159 | font-family: Menlo, monospace; 2160 | font-size: .8em; 2161 | color: #AAA; 2162 | padding-left: 0!important; 2163 | margin: 0!important; 2164 | line-height: 11px; 2165 | padding: 5px 2px 5px 0; 2166 | text-align: right; 2167 | height: 100%; 2168 | overflow: hidden; 2169 | background: #282c34; 2170 | border: 0; 2171 | border-top-left-radius: 3px; 2172 | border-bottom-left-radius: 3px; 2173 | } 2174 | 2175 | .markdown-body pre { 2176 | word-wrap: normal; 2177 | position: relative 2178 | } 2179 | 2180 | .post-html ul li { 2181 | /*list-style: circle;*/ 2182 | list-style: disc; 2183 | } 2184 | 2185 | .post-html ul.pre-numbering li { 2186 | font-size: 13px; 2187 | height: 15px; 2188 | line-height: 15px 2189 | } 2190 | 2191 | .site-footer { 2192 | font-family: SourceCodePro; 2193 | border-top: 1px solid #e5e5e5; 2194 | padding: 10px 0; 2195 | text-align: center; 2196 | font-size: 12px; 2197 | line-height: 20px 2198 | } 2199 | 2200 | .noborderfooter .site-footer { 2201 | border: 0 2202 | } 2203 | 2204 | .site-footer a { 2205 | color: #9e9e9e 2206 | } 2207 | 2208 | .site-footer a:hover { 2209 | color: #757575 2210 | } 2211 | 2212 | .about blockquote { 2213 | background-color: #fff; 2214 | padding: 10px; 2215 | font-size: 18px; 2216 | letter-spacing: 1px 2217 | } 2218 | 2219 | .about blockquote p { 2220 | margin: 0 2221 | } 2222 | 2223 | .about ul { 2224 | padding-left: 30px 2225 | } 2226 | 2227 | .about ul li { 2228 | list-style: disc 2229 | } 2230 | 2231 | .waves-effect { 2232 | position: relative 2233 | } 2234 | 2235 | .ripple { 2236 | position: absolute; 2237 | background: rgba(0, 0, 0, .15); 2238 | border-radius: 100%; 2239 | transform: scale(0); 2240 | pointer-events: none 2241 | } 2242 | 2243 | .ripple.show { 2244 | animation: ripple .75s ease-out 2245 | } 2246 | 2247 | @keyframes ripple { 2248 | to { 2249 | transform: scale(2); 2250 | opacity: 0 2251 | } 2252 | } 2253 | 2254 | .archives .item { 2255 | padding: 20px 0 12px 120px; 2256 | overflow: hidden; 2257 | border-bottom: 1px solid #eee 2258 | } 2259 | 2260 | .archives h3 { 2261 | font-family: monospace; 2262 | font-size: 15px; 2263 | margin: 4px 0 0 -120px; 2264 | float: left 2265 | } 2266 | 2267 | .archives-list { 2268 | list-style: none; 2269 | font-size: 14px; 2270 | line-height: 20px 2271 | } 2272 | 2273 | .archives-list li { 2274 | padding: 3px 0; 2275 | overflow: hidden 2276 | } 2277 | 2278 | .archives-list time { 2279 | margin-right: 5px; 2280 | color: #999; 2281 | display: inline-block; 2282 | width: 35px; 2283 | font-family: monospace 2284 | } 2285 | 2286 | .archives-title { 2287 | display: inline-block; 2288 | padding: 5px 20px; 2289 | background: #eee; 2290 | border-bottom: 3px solid #ccc 2291 | } 2292 | 2293 | .about { 2294 | font-family: SourceCodePro 2295 | } 2296 | 2297 | #show-slide-nav i { 2298 | display: flex; 2299 | align-items: center 2300 | } 2301 | 2302 | .profile ul.nav li a:hover { 2303 | color: #1de9b6 2304 | } 2305 | 2306 | .card .card-title { 2307 | font-size: 1.2rem; 2308 | display: -webkit-box; 2309 | overflow: hidden 2310 | } 2311 | 2312 | .pages header.nav-wrapper div { 2313 | width: 100%; 2314 | display: flex; 2315 | justify-content: space-between; 2316 | align-items: center 2317 | } 2318 | 2319 | .pages article h2 { 2320 | font-size: 2rem 2321 | } 2322 | 2323 | header.nav-wrapper div p { 2324 | overflow: hidden; 2325 | text-overflow: ellipsis; 2326 | white-space: nowrap; 2327 | max-width: 70% 2328 | } 2329 | 2330 | nav, 2331 | nav a { 2332 | color: #fff 2333 | } 2334 | 2335 | @media screen and (max-width:1024px) { 2336 | .index #menu, 2337 | .pages #menu { 2338 | width: 200px; 2339 | left: 0!important 2340 | } 2341 | .index #menu.open { 2342 | left: -200px!important; 2343 | box-shadow: none 2344 | } 2345 | .index #menu.cover { 2346 | width: 200px 2347 | } 2348 | .index main { 2349 | margin-left: 0 2350 | } 2351 | .content-in { 2352 | width: auto; 2353 | margin: 10px 2354 | } 2355 | .index .item-header span { 2356 | display: none 2357 | } 2358 | .item-content p { 2359 | display: -webkit-box; 2360 | -webkit-box-orient: vertical; 2361 | -webkit-line-clamp: 3; 2362 | overflow: hidden; 2363 | word-break: break-all 2364 | } 2365 | .index nav header.nav-wrapper div { 2366 | display: flex; 2367 | width: 100%; 2368 | justify-content: space-between; 2369 | align-items: center; 2370 | height: 100% 2371 | } 2372 | .index .contents { 2373 | margin: 10px auto 0 2374 | } 2375 | } 2376 | 2377 | @media screen and (min-width:1030px) { 2378 | .index main nav, 2379 | .pages main nav { 2380 | display: none 2381 | } 2382 | .pages .slidenav { 2383 | width: auto; 2384 | visibility: visible 2385 | } 2386 | .pages .content-in { 2387 | width: 100%; 2388 | max-width: calc(100% - 240px); 2389 | float: right; 2390 | margin-left: 240px 2391 | } 2392 | .pages .contents article { 2393 | width: 90%; 2394 | margin: 0 auto; 2395 | display: flex; 2396 | flex-direction: column 2397 | } 2398 | } 2399 | 2400 | @media screen and (max-width:330px) { 2401 | .post main .contents { 2402 | padding: 10px 5px 2403 | } 2404 | .content-in { 2405 | width: 90%; 2406 | max-width: 290px 2407 | } 2408 | .markdown-body { 2409 | max-width: 290px!important 2410 | } 2411 | } 2412 | 2413 | @media screen and (min-width:330px) and (max-width:380px) { 2414 | .post main .contents { 2415 | padding: 15px 10px 2416 | } 2417 | .content-in { 2418 | width: 90%; 2419 | max-width: 350px 2420 | } 2421 | .markdown-body { 2422 | max-width: 330px!important 2423 | } 2424 | } 2425 | 2426 | @media screen and (min-width:380px) and (max-width:450px) { 2427 | .post main .contents { 2428 | padding: 15px 10px 2429 | } 2430 | .content-in { 2431 | width: 90%; 2432 | max-width: 400px 2433 | } 2434 | .markdown-body { 2435 | max-width: 360px!important 2436 | } 2437 | } 2438 | 2439 | @media screen and (min-width:450px) and (max-width:800px) { 2440 | .content-in { 2441 | width: 90%; 2442 | max-width: 460px 2443 | } 2444 | .markdown-body { 2445 | max-width: 400px!important 2446 | } 2447 | } 2448 | 2449 | @media screen and (min-width:800px) and (max-width:1200px) { 2450 | .content-in { 2451 | width: 80%; 2452 | max-width: 820px; 2453 | margin: 0 auto 2454 | } 2455 | .markdown-body { 2456 | max-width: 700px!important 2457 | } 2458 | } 2459 | 2460 | @media screen and (min-width:1200px) and (max-width:1440px) { 2461 | .content-in { 2462 | width: 85%; 2463 | max-width: 920px; 2464 | } 2465 | .markdown-body { 2466 | max-width: 780px!important 2467 | } 2468 | } 2469 | 2470 | @media screen and (min-width:1440px) { 2471 | .content-in { 2472 | max-width: 1200px 2473 | } 2474 | .markdown-body { 2475 | max-width: 980px!important 2476 | } 2477 | #menu.open { 2478 | width: 340px 2479 | } 2480 | .pages .content-in { 2481 | width: 100%; 2482 | max-width: calc(100% - 340px); 2483 | float: right; 2484 | margin-left: 340px 2485 | } 2486 | .pages .contents article { 2487 | width: 90%; 2488 | margin: 0 auto; 2489 | display: flex; 2490 | flex-direction: column 2491 | } 2492 | } 2493 | 2494 | /* #disqus_thread iframe { 2495 | margin-top: 50px 2496 | } 2497 | 2498 | #disqus_thread #footer { 2499 | display: none 2500 | } */ 2501 | #gitment { 2502 | display: block; 2503 | clear: both; 2504 | } 2505 | 2506 | 2507 | /** ant desiagn */ 2508 | .markdown-body p, .markdown-body pre { 2509 | margin: 1em 0; 2510 | } 2511 | .markdown-body h1 { 2512 | color: #0d1a26; 2513 | font-weight: 500; 2514 | margin-bottom: 20px; 2515 | margin-top: 8px; 2516 | font-family: Lato, "Monospaced Number", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; 2517 | font-size: 30px; 2518 | line-height: 38px; 2519 | } 2520 | .markdown-body h1 .subtitle { 2521 | margin-left: 12px; 2522 | } 2523 | .markdown-body h2 { 2524 | font-size: 24px; 2525 | line-height: 32px; 2526 | } 2527 | .markdown-body h2, 2528 | .markdown-body h3, 2529 | .markdown-body h4, 2530 | .markdown-body h5, 2531 | .markdown-body h6 { 2532 | color: #0d1a26; 2533 | font-family: Lato, "Monospaced Number", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; 2534 | margin: 1.6em 0 0.6em; 2535 | font-weight: 500; 2536 | clear: both; 2537 | display: flex; 2538 | align-items: center; 2539 | } 2540 | .markdown-body h3 { 2541 | font-size: 18px; 2542 | } 2543 | .markdown-body h4 { 2544 | font-size: 16px; 2545 | } 2546 | .markdown-body h5 { 2547 | font-size: 14px; 2548 | } 2549 | .markdown-body h6 { 2550 | font-size: 12px; 2551 | } 2552 | .markdown-body pre.text{ 2553 | font-family: "Lucida Console", Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; 2554 | font-size: 13px; 2555 | color: #314659; 2556 | background: #f2f4f5; 2557 | border-radius: 2px; 2558 | padding: 12px 20px; 2559 | margin: 16px 0; 2560 | overflow: auto; 2561 | color: black; 2562 | direction: ltr; 2563 | text-align: left; 2564 | white-space: pre; 2565 | word-spacing: normal; 2566 | word-break: normal; 2567 | word-wrap: normal; 2568 | line-height: 1.5; 2569 | -moz-tab-size: 4; 2570 | -o-tab-size: 4; 2571 | tab-size: 4; 2572 | -webkit-hyphens: none; 2573 | -ms-hyphens: none; 2574 | hyphens: none; 2575 | } 2576 | /* for block of numbers */ 2577 | td.hljs-ln-numbers { 2578 | -webkit-touch-callout: none; 2579 | -webkit-user-select: none; 2580 | -khtml-user-select: none; 2581 | -moz-user-select: none; 2582 | -ms-user-select: none; 2583 | user-select: none; 2584 | 2585 | text-align: center; 2586 | color: #666; 2587 | border-right: 1px solid rgba(255, 255, 255, .25); 2588 | vertical-align: top; 2589 | padding-right: 5px !important; 2590 | 2591 | /* your custom style here */ 2592 | } 2593 | 2594 | /* for block of code */ 2595 | td.hljs-ln-code { 2596 | padding-left: 10px !important; 2597 | } 2598 | table.hljs-ln{ 2599 | margin-bottom: 0 !important; 2600 | } 2601 | 2602 | .lightense-open{ 2603 | box-shadow: 0 0 10px 2px #ccc !important; 2604 | } 2605 | aside ul li{ 2606 | list-style: none; 2607 | } 2608 | #feedAv{ 2609 | display:none !important; 2610 | } --------------------------------------------------------------------------------