├── .gitignore ├── LICENSE ├── README.md ├── _config.default.yml ├── layout ├── archive.pug ├── index.pug ├── mixins │ ├── gallery.pug │ ├── post.pug │ └── tags.pug ├── plugins │ ├── google.pug │ ├── livere.pug │ ├── mathjax.pug │ ├── reward.pug │ └── valine.pug ├── post.pug ├── tag.pug └── views │ ├── head.pug │ ├── index.pug │ ├── main.pug │ └── nav.pug ├── package.json └── source ├── css ├── _main-r.styl ├── _var.styl ├── base │ ├── _base.styl │ ├── _font.styl │ ├── _mixin.styl │ ├── _reset.styl │ └── _util.styl ├── main.styl ├── partial │ ├── _main.styl │ └── _post.styl └── vendor │ ├── _echo.styl │ ├── _highlight.styl │ └── _normalize.styl ├── fonts ├── icon.eot ├── icon.svg ├── icon.ttf └── icon.woff ├── img ├── alipay.png ├── alu │ ├── 不出所料.png │ ├── 不说话.png │ ├── 不高兴.png │ ├── 中刀.png │ ├── 中指.png │ ├── 中枪.png │ ├── 亲亲.png │ ├── 便便.png │ ├── 内伤.png │ ├── 击掌.png │ ├── 口水.png │ ├── 吐.png │ ├── 吐舌.png │ ├── 吐血倒地.png │ ├── 呲牙.png │ ├── 咽气.png │ ├── 哭泣.png │ ├── 喜极而泣.png │ ├── 喷水.png │ ├── 喷血.png │ ├── 坐等.png │ ├── 害羞.png │ ├── 小眼睛.png │ ├── 尴尬.png │ ├── 得意.png │ ├── 惊喜.png │ ├── 想一想.png │ ├── 愤怒.png │ ├── 扇耳光.png │ ├── 投降.png │ ├── 抠鼻.png │ ├── 抽烟.png │ ├── 无奈.png │ ├── 无所谓.png │ ├── 无语.png │ ├── 暗地观察.png │ ├── 期待.png │ ├── 欢呼.png │ ├── 汗.png │ ├── 深思.png │ ├── 狂汗.png │ ├── 献花.png │ ├── 献黄瓜.png │ ├── 皱眉.png │ ├── 看不见.png │ ├── 看热闹.png │ ├── 瞅你.png │ ├── 肿包.png │ ├── 脸红.png │ ├── 蜡烛.png │ ├── 装大款.png │ ├── 观察.png │ ├── 赞一个.png │ ├── 邪恶.png │ ├── 锁眉.png │ ├── 长草.png │ ├── 阴暗.png │ ├── 高兴.png │ ├── 黑线.png │ └── 鼓掌.png ├── smiles │ ├── arrow.gif │ ├── biggrin.gif │ ├── confused.gif │ ├── cool.gif │ ├── cry.gif │ ├── eek.gif │ ├── evil.gif │ ├── exclaim.gif │ ├── idea.gif │ ├── lol.gif │ ├── mad.gif │ ├── mrgreen.gif │ ├── neutral.gif │ ├── question.gif │ ├── razz.gif │ ├── redface.gif │ ├── rolleyes.gif │ ├── sad.gif │ ├── smile.gif │ ├── surprised.gif │ ├── twisted.gif │ └── wink.gif └── wechat.png └── js ├── Valine.min.js ├── fancybox ├── jquery.fancybox.min.css └── jquery.fancybox.min.js ├── jquery-3.1.1.min.js ├── main.js ├── particles.min.js ├── particles.oli.js └── scroller.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | 39 | *.bak.yml 40 | 41 | .DS_Store 42 | *.lock 43 | _config.yml 44 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Oliver Wang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ochuunn 2 |
3 |
4 |
115 | // 排版无需空格, 使用半角空格宽度防止粘连 1em / 2 / 2
116 | // margin: 0 .25em
117 | // >[]
,
118 | // 排版须有空格, 1em 防止标点符号粘连
119 | display: inline-block;
120 | margin: 0 .1em
121 | white-space: nowrap
122 | font-size: 0.85em
123 | font-family: consolas, "微软雅黑"
124 | border-radius: 4px
125 | background-color: rgba(27,31,35,.05)
126 | padding: 3px 6px
127 |
128 | kbd
129 | @extend .echo code
130 | box-shadow: 0 1px 0px #CCCCCC, 0 0 0 2px #FFFFFF inset
131 |
132 | blockquote
133 | margin: 1.6em -50px
134 | padding: 10px 45px
135 | border-left: 8px solid $color-green
136 | border-right: 0
137 | border-top: 1px solid $border-color;
138 | border-bottom: 1px solid $border-color;
139 | background-color: #e1f4f4;
140 |
141 | &.right
142 | border-left: 0
143 | border-right: 8px solid $color-green
144 |
--------------------------------------------------------------------------------
/source/css/vendor/_highlight.styl:
--------------------------------------------------------------------------------
1 | .highlight
2 | overflow: auto
3 | // background-color: $highlight-background
4 | background-color: #f4fbfb
5 | color: $color-green-dark
6 | border: 1px solid $border-color
7 |
8 | .gutter
9 | color: #666
10 | display: none
11 |
12 | .code
13 | padding: 1em 45px
14 |
15 | figcaption
16 | margin-bottom: 1em
17 | color: #999
18 | font-size: .85em
19 | a
20 | float: right
21 |
22 | .comment
23 | color: $highlight-comment
24 |
25 | .title
26 | color: $highlight-title
27 |
28 | .variable
29 | .attribute
30 | .tag
31 | .regexp
32 | .ruby .constant
33 | .xml .tag .title
34 | .xml .pi
35 | .xml .doctype
36 | .html .doctype
37 | .css .id
38 | .css .class
39 | .css .pseudo
40 | color: $highlight-green
41 |
42 | .number
43 | .preprocessor
44 | .built_in
45 | .literal
46 | .params
47 | .constant
48 | color: $highlight-orange
49 |
50 | .class
51 | .ruby .class .title
52 | .css .rules .attribute
53 | color: $highlight-green
54 |
55 | .string
56 | .value
57 | .inheritance
58 | .header
59 | .ruby .symbol
60 | .xml .cdata
61 | color: $highlight-green
62 |
63 | .css .hexcolor
64 | color: $highlight-aqua
65 |
66 | .function
67 | .python .decorator
68 | .python .title
69 | .ruby .function .title
70 | .ruby .title .keyword
71 | .perl .sub
72 | .javascript .title
73 | .coffeescript .title
74 | color: $highlight-func-keyword
75 |
76 | .keyword
77 | .javascript .function
78 | color: $highlight-purple
79 |
80 | .marked
81 | background-color: #ffecec
82 |
--------------------------------------------------------------------------------
/source/css/vendor/_normalize.styl:
--------------------------------------------------------------------------------
1 | /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
2 |
3 | html
4 | font-family: sans-serif
5 | -ms-text-size-adjust: 100%
6 | -webkit-text-size-adjust: 100%
7 |
8 | body
9 | margin: 0
10 |
11 | article
12 | aside
13 | details
14 | figcaption
15 | figure
16 | footer
17 | header
18 | hgroup
19 | main
20 | nav
21 | section
22 | summary
23 | display: block
24 |
25 | audio
26 | canvas
27 | progress
28 | video
29 | display: inline-block
30 | vertical-align: baseline
31 |
32 | audio:not([controls])
33 | display: none
34 | height: 0
35 |
36 | [hidden]
37 | template
38 | display: none
39 |
40 | a
41 | background: transparent
42 |
43 | a:active
44 | a:hover
45 | outline: 0
46 |
47 | abbr[title]
48 | border-bottom: 1px dotted
49 |
50 | b
51 | strong
52 | font-weight: bold
53 |
54 | dfn
55 | font-style: italic
56 |
57 | h1
58 | font-size: 2em
59 | margin: .67em 0
60 |
61 | mark
62 | background: #ff0
63 | color: #000
64 |
65 | small
66 | font-size: 80%
67 |
68 | sub
69 | sup
70 | font-size: 75%
71 | line-height: 0
72 | position: relative
73 | vertical-align: baseline
74 |
75 | sup
76 | top: -0.5em
77 |
78 | sub
79 | bottom: -0.25em
80 |
81 | img
82 | border: 0
83 |
84 | svg:not(:root)
85 | overflow: hidden
86 |
87 | figure
88 | margin: 1em 40px
89 |
90 | hr
91 | -moz-box-sizing: content-box
92 | box-sizing: content-box
93 | height: 0
94 |
95 | pre
96 | overflow: auto
97 |
98 | code
99 | kbd
100 | pre
101 | samp
102 | font-family: monospace,monospace
103 | font-size: 1em
104 |
105 | button
106 | input
107 | optgroup
108 | select
109 | textarea
110 | color: inherit
111 | font: inherit
112 | margin: 0
113 |
114 | button
115 | overflow: visible
116 |
117 | button
118 | select
119 | text-transform: none
120 |
121 | button
122 | html input[type="button"]
123 | input[type="reset"]
124 | input[type="submit"]
125 | -webkit-appearance: button
126 | cursor: pointer
127 |
128 | button[disabled]
129 | html input[disabled]
130 | cursor: default
131 |
132 | button::-moz-focus-inner
133 | input::-moz-focus-inner
134 | border: 0
135 | padding: 0
136 |
137 | input
138 | line-height: normal
139 |
140 | input[type="checkbox"]
141 | input[type="radio"]
142 | box-sizing: border-box
143 | padding: 0
144 |
145 | input[type="number"]::-webkit-inner-spin-button
146 | input[type="number"]::-webkit-outer-spin-button
147 | height: auto
148 |
149 | input[type="search"]
150 | -webkit-appearance: textfield
151 | -moz-box-sizing: content-box
152 | -webkit-box-sizing: content-box
153 | box-sizing: content-box
154 |
155 | input[type="search"]::-webkit-search-cancel-button
156 | input[type="search"]::-webkit-search-decoration
157 | -webkit-appearance: none
158 |
159 | fieldset
160 | border: 1px solid silver
161 | margin: 0 2px
162 | padding: .35em .625em .75em
163 |
164 | legend
165 | border: 0
166 | padding: 0
167 |
168 | textarea
169 | overflow: auto
170 |
171 | optgroup
172 | font-weight: bold
173 |
174 | table
175 | border-collapse: collapse
176 | border-spacing: 0
177 |
178 | td
179 | th
180 | padding: 0
--------------------------------------------------------------------------------
/source/fonts/icon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/fonts/icon.eot
--------------------------------------------------------------------------------
/source/fonts/icon.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/source/fonts/icon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/fonts/icon.ttf
--------------------------------------------------------------------------------
/source/fonts/icon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/fonts/icon.woff
--------------------------------------------------------------------------------
/source/img/alipay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alipay.png
--------------------------------------------------------------------------------
/source/img/alu/不出所料.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/不出所料.png
--------------------------------------------------------------------------------
/source/img/alu/不说话.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/不说话.png
--------------------------------------------------------------------------------
/source/img/alu/不高兴.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/不高兴.png
--------------------------------------------------------------------------------
/source/img/alu/中刀.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/中刀.png
--------------------------------------------------------------------------------
/source/img/alu/中指.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/中指.png
--------------------------------------------------------------------------------
/source/img/alu/中枪.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/中枪.png
--------------------------------------------------------------------------------
/source/img/alu/亲亲.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/亲亲.png
--------------------------------------------------------------------------------
/source/img/alu/便便.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/便便.png
--------------------------------------------------------------------------------
/source/img/alu/内伤.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/内伤.png
--------------------------------------------------------------------------------
/source/img/alu/击掌.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/击掌.png
--------------------------------------------------------------------------------
/source/img/alu/口水.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/口水.png
--------------------------------------------------------------------------------
/source/img/alu/吐.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/吐.png
--------------------------------------------------------------------------------
/source/img/alu/吐舌.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/吐舌.png
--------------------------------------------------------------------------------
/source/img/alu/吐血倒地.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/吐血倒地.png
--------------------------------------------------------------------------------
/source/img/alu/呲牙.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/呲牙.png
--------------------------------------------------------------------------------
/source/img/alu/咽气.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/咽气.png
--------------------------------------------------------------------------------
/source/img/alu/哭泣.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/哭泣.png
--------------------------------------------------------------------------------
/source/img/alu/喜极而泣.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/喜极而泣.png
--------------------------------------------------------------------------------
/source/img/alu/喷水.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/喷水.png
--------------------------------------------------------------------------------
/source/img/alu/喷血.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/喷血.png
--------------------------------------------------------------------------------
/source/img/alu/坐等.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/坐等.png
--------------------------------------------------------------------------------
/source/img/alu/害羞.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/害羞.png
--------------------------------------------------------------------------------
/source/img/alu/小眼睛.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/小眼睛.png
--------------------------------------------------------------------------------
/source/img/alu/尴尬.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/尴尬.png
--------------------------------------------------------------------------------
/source/img/alu/得意.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/得意.png
--------------------------------------------------------------------------------
/source/img/alu/惊喜.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/惊喜.png
--------------------------------------------------------------------------------
/source/img/alu/想一想.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/想一想.png
--------------------------------------------------------------------------------
/source/img/alu/愤怒.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/愤怒.png
--------------------------------------------------------------------------------
/source/img/alu/扇耳光.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/扇耳光.png
--------------------------------------------------------------------------------
/source/img/alu/投降.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/投降.png
--------------------------------------------------------------------------------
/source/img/alu/抠鼻.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/抠鼻.png
--------------------------------------------------------------------------------
/source/img/alu/抽烟.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/抽烟.png
--------------------------------------------------------------------------------
/source/img/alu/无奈.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/无奈.png
--------------------------------------------------------------------------------
/source/img/alu/无所谓.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/无所谓.png
--------------------------------------------------------------------------------
/source/img/alu/无语.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/无语.png
--------------------------------------------------------------------------------
/source/img/alu/暗地观察.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/暗地观察.png
--------------------------------------------------------------------------------
/source/img/alu/期待.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/期待.png
--------------------------------------------------------------------------------
/source/img/alu/欢呼.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/欢呼.png
--------------------------------------------------------------------------------
/source/img/alu/汗.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/汗.png
--------------------------------------------------------------------------------
/source/img/alu/深思.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/深思.png
--------------------------------------------------------------------------------
/source/img/alu/狂汗.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/狂汗.png
--------------------------------------------------------------------------------
/source/img/alu/献花.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/献花.png
--------------------------------------------------------------------------------
/source/img/alu/献黄瓜.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/献黄瓜.png
--------------------------------------------------------------------------------
/source/img/alu/皱眉.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/皱眉.png
--------------------------------------------------------------------------------
/source/img/alu/看不见.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/看不见.png
--------------------------------------------------------------------------------
/source/img/alu/看热闹.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/看热闹.png
--------------------------------------------------------------------------------
/source/img/alu/瞅你.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/瞅你.png
--------------------------------------------------------------------------------
/source/img/alu/肿包.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/肿包.png
--------------------------------------------------------------------------------
/source/img/alu/脸红.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/脸红.png
--------------------------------------------------------------------------------
/source/img/alu/蜡烛.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/蜡烛.png
--------------------------------------------------------------------------------
/source/img/alu/装大款.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/装大款.png
--------------------------------------------------------------------------------
/source/img/alu/观察.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/观察.png
--------------------------------------------------------------------------------
/source/img/alu/赞一个.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/赞一个.png
--------------------------------------------------------------------------------
/source/img/alu/邪恶.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/邪恶.png
--------------------------------------------------------------------------------
/source/img/alu/锁眉.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/锁眉.png
--------------------------------------------------------------------------------
/source/img/alu/长草.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/长草.png
--------------------------------------------------------------------------------
/source/img/alu/阴暗.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/阴暗.png
--------------------------------------------------------------------------------
/source/img/alu/高兴.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/高兴.png
--------------------------------------------------------------------------------
/source/img/alu/黑线.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/黑线.png
--------------------------------------------------------------------------------
/source/img/alu/鼓掌.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/alu/鼓掌.png
--------------------------------------------------------------------------------
/source/img/smiles/arrow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/arrow.gif
--------------------------------------------------------------------------------
/source/img/smiles/biggrin.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/biggrin.gif
--------------------------------------------------------------------------------
/source/img/smiles/confused.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/confused.gif
--------------------------------------------------------------------------------
/source/img/smiles/cool.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/cool.gif
--------------------------------------------------------------------------------
/source/img/smiles/cry.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/cry.gif
--------------------------------------------------------------------------------
/source/img/smiles/eek.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/eek.gif
--------------------------------------------------------------------------------
/source/img/smiles/evil.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/evil.gif
--------------------------------------------------------------------------------
/source/img/smiles/exclaim.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/exclaim.gif
--------------------------------------------------------------------------------
/source/img/smiles/idea.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/idea.gif
--------------------------------------------------------------------------------
/source/img/smiles/lol.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/lol.gif
--------------------------------------------------------------------------------
/source/img/smiles/mad.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/mad.gif
--------------------------------------------------------------------------------
/source/img/smiles/mrgreen.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/mrgreen.gif
--------------------------------------------------------------------------------
/source/img/smiles/neutral.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/neutral.gif
--------------------------------------------------------------------------------
/source/img/smiles/question.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/question.gif
--------------------------------------------------------------------------------
/source/img/smiles/razz.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/razz.gif
--------------------------------------------------------------------------------
/source/img/smiles/redface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/redface.gif
--------------------------------------------------------------------------------
/source/img/smiles/rolleyes.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/rolleyes.gif
--------------------------------------------------------------------------------
/source/img/smiles/sad.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/sad.gif
--------------------------------------------------------------------------------
/source/img/smiles/smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/smile.gif
--------------------------------------------------------------------------------
/source/img/smiles/surprised.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/surprised.gif
--------------------------------------------------------------------------------
/source/img/smiles/twisted.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/twisted.gif
--------------------------------------------------------------------------------
/source/img/smiles/wink.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/smiles/wink.gif
--------------------------------------------------------------------------------
/source/img/wechat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ochukai/hexo-theme-ochuunn/741ee09ae023ac7492acec6b6a581b5461a4add4/source/img/wechat.png
--------------------------------------------------------------------------------
/source/js/fancybox/jquery.fancybox.min.css:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";.fancybox-enabled{overflow:hidden}.fancybox-enabled body{overflow:visible;height:100%}.fancybox-container{position:fixed;top:0;left:0;width:100%;height:100%;z-index:99993;-webkit-backface-visibility:hidden;backface-visibility:hidden}.fancybox-container~.fancybox-container{z-index:99992}.fancybox-bg{position:absolute;top:0;right:0;bottom:0;left:0;background:#0f0f11;opacity:0;transition-timing-function:cubic-bezier(.55,.06,.68,.19);-webkit-backface-visibility:hidden;backface-visibility:hidden}.fancybox-container--ready .fancybox-bg{opacity:.87;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-controls{position:absolute;top:0;left:0;right:0;text-align:center;opacity:0;z-index:99994;transition:opacity .2s;pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;direction:ltr}.fancybox-show-controls .fancybox-controls{opacity:1}.fancybox-infobar{display:none}.fancybox-show-infobar .fancybox-infobar{display:inline-block;pointer-events:all}.fancybox-infobar__body{display:inline-block;width:70px;line-height:44px;font-size:13px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;text-align:center;color:#ddd;background-color:rgba(30,30,30,.7);pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-font-smoothing:subpixel-antialiased}.fancybox-buttons{position:absolute;top:0;right:0;display:none;pointer-events:all}.fancybox-show-buttons .fancybox-buttons{display:block}.fancybox-slider-wrap{overflow:hidden;direction:ltr}.fancybox-slider,.fancybox-slider-wrap{position:absolute;top:0;left:0;bottom:0;right:0;padding:0;margin:0;z-index:99993;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-tap-highlight-color:transparent}.fancybox-slide{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;overflow:auto;outline:none;white-space:normal;box-sizing:border-box;text-align:center;z-index:99994;-webkit-overflow-scrolling:touch}.fancybox-slide:before{content:"";height:100%;width:0}.fancybox-slide:before,.fancybox-slide>*{display:inline-block;vertical-align:middle}.fancybox-slide>*{position:relative;padding:24px;margin:44px 0;border-width:0;text-align:left;background-color:#fff;overflow:auto;box-sizing:border-box}.fancybox-slide--image{overflow:hidden}.fancybox-slide--image:before{display:none}.fancybox-content{display:inline-block;position:relative;margin:44px auto;padding:0;border:0;width:80%;height:calc(100% - 88px);vertical-align:middle;line-height:normal;text-align:left;white-space:normal;outline:none;font-size:16px;font-family:Arial,sans-serif;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-overflow-scrolling:touch}.fancybox-iframe{display:block;margin:0;padding:0;border:0;width:100%;height:100%;background:#fff}.fancybox-slide--video .fancybox-content,.fancybox-slide--video .fancybox-iframe{background:transparent}.fancybox-placeholder{z-index:99995;background:transparent;cursor:default;overflow:visible;-webkit-transform-origin:top left;transform-origin:top left;background-size:100% 100%;background-repeat:no-repeat;-webkit-backface-visibility:hidden;backface-visibility:hidden}.fancybox-image,.fancybox-placeholder,.fancybox-spaceball{position:absolute;top:0;left:0;margin:0;padding:0;border:0}.fancybox-image,.fancybox-spaceball{width:100%;height:100%;max-width:none;max-height:none;background:transparent;background-size:100% 100%}.fancybox-controls--canzoomOut .fancybox-placeholder{cursor:zoom-out}.fancybox-controls--canzoomIn .fancybox-placeholder{cursor:zoom-in}.fancybox-controls--canGrab .fancybox-placeholder{cursor:-webkit-grab;cursor:grab}.fancybox-controls--isGrabbing .fancybox-placeholder{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-spaceball{z-index:1}.fancybox-tmp{position:absolute;top:-9999px;left:-9999px;visibility:hidden}.fancybox-error{position:absolute;margin:0;padding:40px;top:50%;left:50%;width:380px;max-width:100%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:#fff;cursor:default}.fancybox-error p{margin:0;padding:0;color:#444;font:16px/20px Helvetica Neue,Helvetica,Arial,sans-serif}.fancybox-close-small{position:absolute;top:0;right:0;width:44px;height:44px;padding:0;margin:0;border:0;border-radius:0;outline:none;background:transparent;z-index:10;cursor:pointer}.fancybox-close-small:after{content:"×";position:absolute;top:5px;right:5px;width:30px;height:30px;font:20px/30px Arial,Helvetica Neue,Helvetica,sans-serif;color:#888;font-weight:300;text-align:center;border-radius:50%;border-width:0;background:#fff;transition:background .2s;box-sizing:border-box;z-index:2}.fancybox-close-small:focus:after{outline:1px dotted #888}.fancybox-slide--video .fancybox-close-small{top:-36px;right:-36px;background:transparent}.fancybox-close-small:hover:after{color:#555;background:#eee}.fancybox-caption-wrap{position:absolute;bottom:0;left:0;right:0;padding:60px 30px 0;z-index:99998;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box;background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.2) 40%,rgba(0,0,0,.6) 80%,rgba(0,0,0,.8));opacity:0;transition:opacity .2s;pointer-events:none}.fancybox-show-caption .fancybox-caption-wrap{opacity:1}.fancybox-caption{padding:30px 0;border-top:1px solid hsla(0,0%,100%,.4);font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#fff;line-height:20px;-webkit-text-size-adjust:none}.fancybox-caption a,.fancybox-caption button{pointer-events:all}.fancybox-caption a{color:#fff;text-decoration:underline}.fancybox-button{display:inline-block;position:relative;width:44px;height:44px;line-height:44px;margin:0;padding:0;border:0;border-radius:0;cursor:pointer;background:transparent;color:#fff;box-sizing:border-box;vertical-align:top;outline:none}.fancybox-button--disabled{cursor:default;pointer-events:none}.fancybox-button,.fancybox-infobar__body{background:rgba(30,30,30,.6)}.fancybox-button:hover{background:rgba(0,0,0,.8)}.fancybox-button:after,.fancybox-button:before{content:"";pointer-events:none;position:absolute;border-color:#fff;background-color:currentColor;color:currentColor;opacity:.9;box-sizing:border-box;display:inline-block}.fancybox-button--disabled:after,.fancybox-button--disabled:before{opacity:.5}.fancybox-button--left:after{left:20px;-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.fancybox-button--left:after,.fancybox-button--right:after{top:18px;width:6px;height:6px;background:transparent;border-top:2px solid currentColor;border-right:2px solid currentColor}.fancybox-button--right:after{right:20px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.fancybox-button--left{border-bottom-left-radius:5px}.fancybox-button--right{border-bottom-right-radius:5px}.fancybox-button--close{float:right}.fancybox-button--close:after,.fancybox-button--close:before{content:"";display:inline-block;position:absolute;height:2px;width:16px;top:calc(50% - 1px);left:calc(50% - 8px)}.fancybox-button--close:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.fancybox-button--close:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.fancybox-loading{border:6px solid hsla(0,0%,39%,.4);border-top:6px solid hsla(0,0%,100%,.6);border-radius:100%;height:50px;width:50px;-webkit-animation:a .8s infinite linear;animation:a .8s infinite linear;background:transparent;position:absolute;top:50%;left:50%;margin-top:-25px;margin-left:-25px;z-index:99999}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@media (max-width:800px){.fancybox-controls{text-align:left}.fancybox-button--left,.fancybox-button--right,.fancybox-buttons button:not(.fancybox-button--close){display:none!important}.fancybox-caption{padding:20px 0;margin:0}}.fancybox-button--fullscreen:before{width:15px;height:11px;left:15px;top:16px;border:2px solid;background:none}.fancybox-button--play:before{top:16px;left:18px;width:0;height:0;border-top:6px inset transparent;border-bottom:6px inset transparent;border-left:10px solid;border-radius:1px;background:transparent}.fancybox-button--pause:before{top:16px;left:18px;width:7px;height:11px;border-style:solid;border-width:0 2px;background:transparent}.fancybox-button--thumbs span{font-size:23px}.fancybox-button--thumbs:before{top:20px;left:21px;width:3px;height:3px;box-shadow:0 -4px 0,-4px -4px 0,4px -4px 0,inset 0 0 0 32px,-4px 0 0,4px 0 0,0 4px 0,-4px 4px 0,4px 4px 0}.fancybox-container--thumbs .fancybox-caption-wrap,.fancybox-container--thumbs .fancybox-controls,.fancybox-container--thumbs .fancybox-slider-wrap{right:220px}.fancybox-thumbs{position:absolute;top:0;right:0;bottom:0;left:auto;width:220px;margin:0;padding:5px 5px 0 0;background:#fff;z-index:99993;word-break:normal;-webkit-overflow-scrolling:touch;-webkit-tap-highlight-color:transparent;box-sizing:border-box}.fancybox-thumbs>ul{list-style:none;position:absolute;position:relative;width:100%;height:100%;margin:0;padding:0;overflow-x:hidden;overflow-y:auto;font-size:0}.fancybox-thumbs>ul>li{float:left;overflow:hidden;max-width:50%;padding:0;margin:0;width:105px;height:75px;position:relative;cursor:pointer;outline:none;border:5px solid #fff;border-top-width:0;border-right-width:0;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box}li.fancybox-thumbs-loading{background:rgba(0,0,0,.1)}.fancybox-thumbs>ul>li>img{position:absolute;top:0;left:0;min-width:100%;min-height:100%;max-width:none;max-height:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-thumbs>ul>li:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:2px;border:4px solid #4ea7f9;z-index:99991;opacity:0;transition:all .2s cubic-bezier(.25,.46,.45,.94)}.fancybox-thumbs>ul>li.fancybox-thumbs-active:before{opacity:1}@media (max-width:800px){.fancybox-thumbs{display:none!important}.fancybox-container--thumbs .fancybox-caption-wrap,.fancybox-container--thumbs .fancybox-controls,.fancybox-container--thumbs .fancybox-slider-wrap{right:0}}
--------------------------------------------------------------------------------
/source/js/fancybox/jquery.fancybox.min.js:
--------------------------------------------------------------------------------
1 | // ==================================================
2 | // fancyBox v3.0.47
3 | //
4 | // Licensed GPLv3 for open source use
5 | // or fancyBox Commercial License for commercial use
6 | //
7 | // http://fancyapps.com/fancybox/
8 | // Copyright 2017 fancyApps
9 | //
10 | // ==================================================
11 | !function(t,e,n,o){"use strict";function s(t){var e=t.currentTarget,o=t.data?t.data.options:{},s=t.data?t.data.items:[],i="",a=0;t.preventDefault(),t.stopPropagation(),n(e).attr("data-fancybox")&&(i=n(e).data("fancybox")),i?(s=s.length?s.filter('[data-fancybox="'+i+'"]'):n("[data-fancybox="+i+"]"),a=s.index(e)):s=[e],n.fancybox.open(s,o,a)}if(!n)return o;var i={speed:330,loop:!0,opacity:"auto",margin:[44,0],gutter:30,infobar:!0,buttons:!0,slideShow:!0,fullScreen:!0,thumbs:!0,closeBtn:!0,smallBtn:"auto",image:{preload:"auto",protect:!1},ajax:{settings:{data:{fancybox:!0}}},iframe:{tpl:'',preload:!0,scrolling:"no",css:{}},baseClass:"",slideClass:"",baseTpl:'',spinnerTpl:'',errorTpl:'The requested content cannot be loaded.
Please try again later.
',closeTpl:'',parentEl:"body",touch:!0,keyboard:!0,focus:!0,closeClickOutside:!0,beforeLoad:n.noop,afterLoad:n.noop,beforeMove:n.noop,afterMove:n.noop,onComplete:n.noop,onInit:n.noop,beforeClose:n.noop,afterClose:n.noop,onActivate:n.noop,onDeactivate:n.noop},a=n(t),r=n(e),c=0,l=function(t){return t&&t.hasOwnProperty&&t instanceof n},u=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||function(e){t.setTimeout(e,1e3/60)}}(),d=function(o){var s;return"function"==typeof n&&o instanceof n&&(o=o[0]),s=o.getBoundingClientRect(),s.bottom>0&&s.right>0&&s.left<(t.innerWidth||e.documentElement.clientWidth)&&s.top<(t.innerHeight||e.documentElement.clientHeight)},p=function(t,o,s){var a=this;a.opts=n.extend(!0,{index:s},i,o||{}),a.id=a.opts.id||++c,a.group=[],a.currIndex=parseInt(a.opts.index,10)||0,a.prevIndex=null,a.prevPos=null,a.currPos=0,a.firstRun=null,a.createGroup(t),a.group.length&&(a.$lastFocus=n(e.activeElement).blur(),a.slides={},a.init(t))};n.extend(p.prototype,{init:function(){var t,e,o=this,s=!1;o.scrollTop=r.scrollTop(),o.scrollLeft=r.scrollLeft(),n.fancybox.getInstance()||(t=n("body").width(),n("html").addClass("fancybox-enabled"),n.fancybox.isTouch?(n.each(o.group,function(t,e){if("image"!==e.type&&"iframe"!==e.type)return s=!0,!1}),s&&n("body").css({position:"fixed",width:t,top:o.scrollTop*-1})):(t=n("body").width()-t,t>1&&n('