├── .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 |

5 | 6 | ## 版本改动 7 | 8 | ### 1.1.0 9 | 10 | 感谢 [zhufengning](https://github.com/zhufengning) 的 [pr #37](https://github.com/ochukai/hexo-theme-ochuunn/pull/37/commits/a62ab67c0fcc81f1957d00457ebf901dcdf4d489), 添加了一个 tags 云~ 好看~ (原谅我稍微改了一下 😅) 11 | 12 | ### 1.0.4 13 | 14 | * 支持 MathJax 15 | * 页头加入 mathjax: true 便可以使用 MathJax 公式了~~~ 16 | * 哦哦哦,还需要在 *_config.yml* 中,把 mathjax 设置为 true 17 | 18 | ### 1.0.3 19 | 20 | * 滚动条颜色变浅 21 | * 代码高亮颜色变深 22 | * body 颜色深 23 | * 这个版本的文章更适合阅读~ 24 | 25 | ### 1.0.2 26 | 27 | * 评论时不会触发页面滚动了 28 | * valine fork from [https://deserts.io/diy-a-comment-system/](https://deserts.io/diy-a-comment-system/), 文档看他的,但是他不支持头像随机,我改了,repo 在这里 [ochukai/valine](https://github.com/ochukai/Valine) 29 | 30 | ## 特点 31 | * 文章界面很清晰,很适合阅读~ 32 | * Google Search Console 33 | * Google Analytics 34 | * [LiveRe](https://livere.com/) (我去掉了disqus, 国内不翻墙压根连不上) 35 | * [Valine](https://valine.js.org/) (速度无敌,需要自己开一个 leancloud app,很简单,看文档吧,感谢 @[rubychat](https://github.com/rubychat)) 36 | * 打赏 37 | * 🎈 页面滚动快捷键 (j, k, t, b, n, m 具体功能自己尝试, console 有提示~) 38 | 39 | ## Demo 40 | [I am Oliver](https://ochukai.github.io/) 41 | ochukai.me 最近解析到 git-pages 总是有问题~ 先不用了~ 42 | 43 | # ⚠ 这里很重要 💢💥💖 44 | 45 | ```sh 46 | npm install hexo-renderer-pug --save 47 | ``` 48 | 49 | # ⚠ 关于tags(标签)页面 50 | 51 | 需要手动在hexo的根目录下创建`tags`页: 52 | ```sh 53 | hexo new page "tags" 54 | ``` 55 | 然后在`index.md`中加上`type: "tags"` 56 | 57 | ## Install 58 | 59 | 1. In the `root` directory: 60 | 61 | ```git 62 | $ git clone https://github.com/ochukai/hexo-theme-ochuunn.git themes/ochuunn 63 | ``` 64 | 65 | 2. Change file `_config.default.yml` to `_config.yml`; 66 | 67 | 3. Change the `theme` property in the `config.yml` file. 68 | 69 | ```yml 70 | # theme: landscape 71 | theme: ochuunn 72 | ``` 73 | 74 | ## 不足 75 | 76 | * 不支持 link 类型的文章 77 | * 不支持 category,只有 tag 78 | 79 | (在目录的最下面, 是 hexo 的测试文章,按 b 键直达~) 80 | 81 | -------------------------------------------------------------------------------- /_config.default.yml: -------------------------------------------------------------------------------- 1 | # head 2 | menu: 3 | 标签: /tags 4 | 目录: /archives 5 | # sitemap: /sitemap.xml 6 | # other menus 7 | 8 | rss: /atom.xml 9 | favicon: /favicon.png 10 | 11 | date_format: "YYYY - MM - DD HH:mm:ss" 12 | 13 | google_verification: false # your token 14 | google_analytics: false # your id 15 | 16 | # post comment 17 | comment_plugin: false # valine or livere 18 | 19 | # mathjax 20 | mathjax: false # or true 21 | mathjax_cdn: //cdn.bootcss.com/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_HTMLorMML 22 | 23 | # valine https://valine.js.org/ 24 | valine: 25 | appId: "" 26 | appKey: "" 27 | notify: false 28 | verify: false 29 | avatar: "retro" # ''/mp/identicon/monsterid/wavatar/robohash/retro/hide 30 | pageSize: 20 31 | lang: "zh-cn" 32 | placeholder: "balabala~" 33 | avatarForce: false 34 | visitor: true # 阅读量统计 35 | highlight: true 36 | 37 | # livere 38 | livere: 39 | id: "" 40 | uid: "" 41 | 42 | # copyright 43 | start_year: 2016 44 | icp_text: "" 45 | icp_link: "" 46 | 47 | # add your qr image 48 | reward_images: 49 | - type: "微信" 50 | url: "/img/wechat.png" 51 | # - type: '支付宝' 52 | # url: '/img/wechat.png' 53 | -------------------------------------------------------------------------------- /layout/archive.pug: -------------------------------------------------------------------------------- 1 | extends views/main.pug 2 | 3 | block head 4 | title 5 | = config.title 6 | 7 | block main 8 | include mixins/post.pug 9 | -var time 10 | -site.posts.sort('date', 'desc').each(function(post) { 11 | -var year = post.date.year() 12 | -if (time != year) { 13 | -if (time) { 14 | h2.archive-title 15 | = year 16 | -} 17 | -time = year 18 | -} 19 | +post(post, 'archive') 20 | -}) 21 | -------------------------------------------------------------------------------- /layout/index.pug: -------------------------------------------------------------------------------- 1 | extends views/index 2 | 3 | block head 4 | title 5 | = config.title 6 | -------------------------------------------------------------------------------- /layout/mixins/gallery.pug: -------------------------------------------------------------------------------- 1 | mixin gallery(post, index) 2 | if post.photos && post.photos.length 3 | div.gallery#gallery 4 | each item, index in post.photos 5 | - var className = index === 0 ? '' : 'u-hidden' 6 | a(href = item, data-fancybox="gallery", group='oli-image-gallery' class = className): img(src = url_for(item), alt='featured-image') 7 | -------------------------------------------------------------------------------- /layout/mixins/post.pug: -------------------------------------------------------------------------------- 1 | mixin post(post, index) 2 | article.post 3 | if index === 'archive' 4 | header.post__head.archive 5 | a(href = url_for(post.path)) 6 | time.post__time(datetime = date_xml(post.date)) 7 | = date(post.date, theme.date_format) 8 | 9 | h1.post__title.archive: a(href = url_for(post.path)) 10 | = post.title 11 | 12 | if post.excerpt 13 | div.excerpt 14 | != post.excerpt 15 | else 16 | header.post__head 17 | include gallery.pug 18 | +gallery(post) 19 | 20 | time.post__time(datetime = date_xml(post.date)) 21 | = date(post.date, theme.date_format) 22 | 23 | h1.post__title: a(href = url_for(post.path)) 24 | = post.title 25 | 26 | if post.img 27 | a.post__image(href = url_for(post.path)): img(src = url_for(post.img), alt = 'featured-image') 28 | 29 | div.post__main.echo 30 | != post.content 31 | 32 | if post.tags && post.tags.length > 0 33 | footer.post__foot.u-cf 34 | ul.post__tag.u-fl 35 | -post.tags.forEach(function(tag) { 36 | li.post__tag__item: a.post__tag__link(href = url_for(tag.path)) 37 | = tag.name 38 | -}) 39 | -------------------------------------------------------------------------------- /layout/mixins/tags.pug: -------------------------------------------------------------------------------- 1 | mixin tags(title, count) 2 | .tag-cloud 3 | .tag-cloud__title.post__title 4 | = title 5 | span.tag-cloud__amount 6 | = count 7 | .tag-cloud-tags!= tagcloud({min_font: 14, max_font: 60, amount: count, color: true, start_color: '#c45e91', end_color: '#642545'}) -------------------------------------------------------------------------------- /layout/plugins/google.pug: -------------------------------------------------------------------------------- 1 | if theme.google_analytics && !env.debug 2 | script. 3 | (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;e=o.createElement(i);r=o.getElementsByTagName(i)[0];e.src='//www.google-analytics.com/analytics.js';r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); 4 | ga('create','#{theme.google_analytics}'); 5 | ga('send','pageview'); 6 | -------------------------------------------------------------------------------- /layout/plugins/livere.pug: -------------------------------------------------------------------------------- 1 | if theme.livere.uid 2 | div.comments#lv-container(data-id = theme.livere.id, data-uid = theme.livere.uid) 3 | script. 4 | (function(d, s) { 5 | var j, e = d.getElementsByTagName(s)[0]; 6 | if (typeof LivereTower === 'function') return; 7 | j = d.createElement(s); 8 | j.src = 'https://cdn-city.livere.com/js/embed.dist.js'; 9 | j.async = true; 10 | e.parentNode.insertBefore(j, e); 11 | })(document, 'script'); 12 | 13 | -------------------------------------------------------------------------------- /layout/plugins/mathjax.pug: -------------------------------------------------------------------------------- 1 | script(type="text/x-mathjax-config"). 2 | MathJax.Hub.Config({ 3 | tex2jax: { 4 | inlineMath: [ ['$','$'], ["\\(","\\)"] ], 5 | processEscapes: true, 6 | skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'] 7 | } 8 | }); 9 | MathJax.Hub.Queue(function() { 10 | var all = MathJax.Hub.getAllJax(), i; 11 | for(i=0; i < all.length; i += 1) { 12 | all[i].SourceElement().parentNode.className += ' has-jax'; 13 | } 14 | }); 15 | 16 | script(src = theme.mathjax_cdn) 17 | -------------------------------------------------------------------------------- /layout/plugins/reward.pug: -------------------------------------------------------------------------------- 1 | if theme.reward_images 2 | section.reward 3 | a(class="btn-reward" href="#") 打赏 4 | div.reward-wrapper.clearfix 5 | -theme.reward_images.forEach(function(img) { 6 | img(src = url_for(img.url), title = img.type || '') 7 | -}) 8 | -------------------------------------------------------------------------------- /layout/plugins/valine.pug: -------------------------------------------------------------------------------- 1 | if theme.valine.appId && theme.valine.appKey 2 | div.comments#v-container 3 | script(src="//cdn1.lncld.net/static/js/3.0.4/av-min.js") 4 | != js('js/Valine.min') 5 | script. 6 | new Valine({ 7 | av: AV, 8 | el: '#v-container', 9 | app_id: '#{theme.valine.appId}', 10 | app_key: '#{theme.valine.appKey}', 11 | avatar: '#{theme.valine.avatar}', 12 | avatarForce: #{theme.valine.avatarForce}, 13 | notify: false, 14 | verify: false, 15 | lang: '#{theme.valine.lang}', 16 | placeholder: '#{theme.valine.placeholder}', 17 | pageSize: #{theme.valine.pageSize}, 18 | visitor: #{theme.valine.visitor}, 19 | highlight: #{theme.valine.highlight}, 20 | emoticon_url: '/img/alu', 21 | emoticon_list: ["吐.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"], 22 | }); 23 | 24 | -------------------------------------------------------------------------------- /layout/post.pug: -------------------------------------------------------------------------------- 1 | extends views/main.pug 2 | 3 | block head 4 | title 5 | = page.title + ' - ' + config.title 6 | 7 | block main 8 | if page.type === 'tags' 9 | include mixins/tags.pug 10 | +tags('TAGS', site.tags.length) 11 | else 12 | include mixins/post.pug 13 | +post(page, 'post') 14 | 15 | //- 16 | include plugins/reward.pug 17 | 18 | //- comment 19 | if theme.comment_plugin == 'valine' 20 | include plugins/valine.pug 21 | else 22 | include plugins/livere.pug 23 | 24 | //- mathjax 25 | if page.mathjax 26 | include plugins/mathjax.pug 27 | -------------------------------------------------------------------------------- /layout/tag.pug: -------------------------------------------------------------------------------- 1 | extends views/main.pug 2 | 3 | block head 4 | title 5 | = page.tag + ' - ' + config.title 6 | 7 | block main 8 | include mixins/post.pug 9 | -page.posts.each(function(post) { 10 | +post(post, 'archive') 11 | -}) 12 | -------------------------------------------------------------------------------- /layout/views/head.pug: -------------------------------------------------------------------------------- 1 | meta(charset='utf-8') 2 | meta(http-equiv='X-UA-Compatible', content='IE=edge') 3 | meta(name='viewport', content='width=device-width, initial-scale=1') 4 | 5 | if theme.google_verification 6 | meta(name="google-site-verification", content = theme.google_verification) 7 | 8 | if config.author 9 | meta(name='author', content = config.author) 10 | 11 | if config.keywords 12 | meta(name='keywords', content = config.keywords) 13 | 14 | if config.description 15 | meta(name='description', content = config.description) 16 | 17 | if theme.rss 18 | link(rel='alternative', href = theme.rss, title = config.title, type='application/atom+xml') 19 | 20 | if theme.favicon 21 | link(rel="icon", href = theme.favicon) 22 | 23 | block head 24 | 25 | != css('css/main') 26 | != css('js/fancybox/jquery.fancybox.min.css') 27 | 28 | != js('js/jquery-3.1.1.min.js') 29 | != js('js/fancybox/jquery.fancybox.min.js') 30 | 31 | -------------------------------------------------------------------------------- /layout/views/index.pug: -------------------------------------------------------------------------------- 1 | doctype html 2 | html.index(lang="zh-CN") 3 | head 4 | include head.pug 5 | body 6 | #particles-oli-wrapper.hide 7 | .index-wrapper 8 | header.head.index.hide 9 | h1.head-title.u-fl 10 | = config.title 11 | include nav.pug 12 | 13 | != js('js/particles.min.js') 14 | != js('js/particles.oli.js') 15 | 16 | include ../plugins/google.pug 17 | -------------------------------------------------------------------------------- /layout/views/main.pug: -------------------------------------------------------------------------------- 1 | doctype html 2 | html(lang="zh-CN") 3 | head 4 | include head.pug 5 | 6 | body(style="opacity:0") 7 | header.head 8 | h1.head-title.u-fl: a(href = config.root) 9 | = config.title 10 | include nav.pug 11 | 12 | main.main 13 | block main 14 | 15 | footer.foot 16 | div.foot-copy 17 | if theme.start_year != date(new Date(), 'YYYY') 18 | != '© ' + theme.start_year + ' - ' + date(new Date(), 'YYYY') + ' ' + (config.author || config.title) 19 | else 20 | != '© ' + date(new Date(), 'YYYY') + ' ' + (config.author || config.title) 21 | 22 | //- icp 备案信息 23 | if theme.icp_link 24 | a(href=theme.icp_link, class="icp-a", target="view_window") 25 | != theme.icp_text 26 | 27 | include ../plugins/google.pug 28 | 29 | != js('js/scroller') 30 | != js('js/main') 31 | -------------------------------------------------------------------------------- /layout/views/nav.pug: -------------------------------------------------------------------------------- 1 | nav.head-nav.u-fr 2 | ul.head-nav__list 3 | each val, index in theme.menu 4 | li.head-nav__item: a.head-nav__link(href = url_for(val)) 5 | = index -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hexo-theme-ochuunn", 3 | "version": "1.1.0", 4 | "main": "_config.yml", 5 | "repository": "https://github.com/ochukai/hexo-theme-ochuunn.git", 6 | "author": "ochukai ", 7 | "license": "MIT" 8 | } 9 | -------------------------------------------------------------------------------- /source/css/_main-r.styl: -------------------------------------------------------------------------------- 1 | @media (max-width: 1023px) 2 | html 3 | background: #fff 4 | .head 5 | margin-top: 80px; 6 | body 7 | padding-top: 0 8 | 9 | @media (max-width: 767px) 10 | body 11 | margin: 10px 12 | margin-bottom: 20px 13 | margin-top: 0px 14 | padding: 0 15 | font-size: font-size-rem($base-font-size-r) 16 | 17 | .head 18 | .main 19 | .foot 20 | width: 100% 21 | 22 | .head 23 | .foot 24 | padding: 20px 25 | height: auto 26 | line-height: inherit 27 | 28 | .head-title 29 | .head-nav 30 | .foot-copy 31 | .page-menu 32 | float: none 33 | 34 | .main 35 | margin-top: 20px 36 | margin-bottom: 20px 37 | 38 | .head 39 | margin-top: 20px 40 | text-align: center 41 | 42 | .head-nav 43 | margin-top: 10px 44 | 45 | .head-nav__item 46 | margin: 0 5px 47 | margin-left: 0 48 | 49 | .post 50 | margin-top: 20px 51 | 52 | .post__head.archive 53 | .post__head 54 | margin: 20px 5px 55 | 56 | .post__main 57 | margin: 20px 5px 58 | 59 | .post__title 60 | .post__time 61 | margin: 5px 62 | 63 | .post__title 64 | font-size-rem(22.4) 65 | 66 | .post__main 67 | blockquote 68 | .highlight 69 | margin: 30px -20px; 70 | padding: 20px; 71 | 72 | .post__foot 73 | position: relative 74 | padding: 10px 75 | 76 | 77 | .post__tag 78 | // display: none 79 | .post__more 80 | box-sizing: border-box; 81 | width: 100%; 82 | text-align: center; 83 | .post__image 84 | margin: 20px -20px 85 | img 86 | margin 0 auto 87 | .foot 88 | margin-bottom: 0 89 | text-align: center 90 | .page-menu 91 | margin-top: 10px 92 | .foot bdi 93 | display: none 94 | .archive-title 95 | margin: 20px 96 | 97 | .highlight .code 98 | padding: 0 99 | -------------------------------------------------------------------------------- /source/css/_var.styl: -------------------------------------------------------------------------------- 1 | // Base 2 | $base-background = #f6z 3 | $base-font-size = 14px 4 | $base-font-size-r = 12px 5 | $base-font-color = #333 6 | $base-line-height = 1.5 7 | $base-font-family = 'Helvetica Neue', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Microsoft Yahei', sans-serif 8 | $base-code-font-family = 'Source Code Pro', Consolas, 'Liberation Mono', Courier, monospace, serif 9 | $base-link-color = #258fb8 10 | $base-link-color-hover = #258fb8 11 | 12 | $border-color = #f0f0f0 13 | 14 | $background-color = #fcfcfc 15 | 16 | // General colors 17 | $highlight-foreground = #399c9c 18 | $highlight-background = #f8f8f8 19 | $highlight-comment = #b0bec5 20 | $highlight-title = #399c9c 21 | 22 | // Code Color 23 | // $highlight-background = #473D41 24 | // $highlight-current-line = #393939 25 | $highlight-selection = #c5c8c6 26 | // $highlight-foreground = #81a2be 27 | // $highlight-comment = #999999 28 | 29 | $highlight-func-keyword = #80cbc4 30 | // $highlight-red = #91ba61 31 | $highlight-orange = #ff5370 32 | $highlight-yellow = #ffcc66 33 | $highlight-green = #91ba61 34 | $highlight-aqua = #66cccc 35 | $highlight-blue = #6699cc 36 | $highlight-purple = #cc99cc 37 | 38 | $color-green = #399c9c 39 | $color-green-dark = #328989 40 | $color-green-hover = #40afaf 41 | $color-green-super-light = #4bbdbd 42 | 43 | $padding-left-right = 50px 44 | $margin-left-right = 50px 45 | 46 | $html-bg-color = #fff 47 | $content-bg-color = #fff 48 | 49 | // $global-padding: 60px 50 | -------------------------------------------------------------------------------- /source/css/base/_base.styl: -------------------------------------------------------------------------------- 1 | html 2 | background-color $html-bg-color 3 | // background-image: url(../img/bg-1.png) 4 | background-attachment: fixed 5 | background-repeat: no-repeat 6 | background-size: auto 7 | // background-position: 50% 0 8 | color: $base-font-color 9 | font-style: normal; 10 | text-rendering: optimizeLegibility; 11 | 12 | html.index 13 | background-color $content-bg-color 14 | 15 | // html 16 | // font-size: 62.5% 17 | 18 | body 19 | font-size-rem($base-font-size) 20 | line-height: $base-line-height 21 | font-family: $base-font-family 22 | padding: 80px 0 20px 23 | 24 | html.index body 25 | padding: 0 26 | 27 | code, kbd, pre, samp 28 | font-family: $base-code-font-family 29 | 30 | a 31 | color: $base-link-color 32 | text-decoration: none 33 | -------------------------------------------------------------------------------- /source/css/base/_font.styl: -------------------------------------------------------------------------------- 1 | @font-face 2 | font-family: 'icon' 3 | src: url("../fonts/icon.eot?-3uy3dk") 4 | src: url("../fonts/icon.eot?#iefix-3uy3dk") format('embedded-opentype'),url("../fonts/icon.woff?-3uy3dk") format('woff'),url("../fonts/icon.ttf?-3uy3dk") format('truetype'),url("../fonts/icon.svg?-3uy3dk#icon") format('svg') 5 | font-weight: normal 6 | font-style: normal 7 | 8 | [class^="icon-"], 9 | [class*=" icon-"] 10 | font-family: 'icon' 11 | font-style: normal 12 | -webkit-font-smoothing: antialiased 13 | -moz-osx-font-smoothing: grayscale 14 | 15 | .icon-arrow-right:before 16 | content: "\e600" 17 | 18 | .icon-arrow-left:before 19 | content: "\e601" -------------------------------------------------------------------------------- /source/css/base/_mixin.styl: -------------------------------------------------------------------------------- 1 | // font-size-rem(size) 2 | // font-size: ( size ) px 3 | // font-size: ( size / 10 ) rem 4 | 5 | font-size-rem(size) 6 | font-size: ( size ) px 7 | font-size: ( size / 16 ) rem -------------------------------------------------------------------------------- /source/css/base/_reset.styl: -------------------------------------------------------------------------------- 1 | blockquote 2 | dl 3 | dd 4 | h1 5 | h2 6 | h3 7 | h4 8 | h5 9 | h6 10 | figure 11 | p 12 | pre 13 | margin: 0 14 | 15 | button 16 | padding: 0 17 | border: 0 18 | background: transparent 19 | 20 | fieldset 21 | margin: 0 22 | padding: 0 23 | border: 0 24 | 25 | iframe 26 | border: 0 27 | 28 | ol 29 | ul 30 | menu 31 | margin: 0 32 | padding: 0 33 | list-style: none 34 | 35 | img 36 | audio 37 | canvas 38 | video 39 | vertical-align: middle 40 | 41 | .clearfix:after, 42 | .clearfix:before { 43 | display: table; 44 | content: " " 45 | } 46 | 47 | .clearfix:after { 48 | clear: both 49 | } 50 | 51 | .hide { 52 | visibility: hidden; 53 | } -------------------------------------------------------------------------------- /source/css/base/_util.styl: -------------------------------------------------------------------------------- 1 | .u-cf 2 | &:before 3 | &:after 4 | content:'' 5 | display:table 6 | &:after 7 | clear:both 8 | 9 | .u-bfc 10 | overflow: hidden 11 | 12 | .u-fl 13 | float: left 14 | 15 | .u-fr 16 | float: right 17 | 18 | .u-hidden 19 | display: none !important 20 | visibility: hidden 21 | 22 | .modal-active 23 | overflow: hidden 24 | -------------------------------------------------------------------------------- /source/css/main.styl: -------------------------------------------------------------------------------- 1 | @import '_var' 2 | 3 | /* ========================================================================== 4 | Init 5 | ========================================================================== */ 6 | 7 | @import 'vendor/_normalize' 8 | 9 | /* ========================================================================== 10 | Base 11 | ========================================================================== */ 12 | @import 'base/_font' 13 | @import 'base/_mixin' 14 | @import 'base/_base' 15 | @import 'base/_reset' 16 | @import 'base/_util' 17 | @import 'vendor/_echo' 18 | @import 'vendor/_highlight' 19 | 20 | /* ========================================================================== 21 | Partial 22 | ========================================================================== */ 23 | 24 | @import 'partial/_main' 25 | @import 'partial/_post' 26 | 27 | /* ========================================================================== 28 | Responsive 29 | ========================================================================== */ 30 | 31 | @import '_main-r' -------------------------------------------------------------------------------- /source/css/partial/_main.styl: -------------------------------------------------------------------------------- 1 | .index-wrapper 2 | display: -webkit-box 3 | display: -webkit-flex 4 | display: flex 5 | width: 100% 6 | height: 100vh 7 | 8 | -webkit-box-pack: center 9 | -webkit-justify-content: center 10 | justify-content: center 11 | 12 | -webkit-box-align: center 13 | -webkit-align-items: center 14 | align-items: center 15 | 16 | header 17 | z-index: 10 18 | 19 | #particles-oli-wrapper 20 | position: fixed 21 | top: 0 22 | bottom: 0 23 | left: 0 24 | right: 0 25 | width: 100% 26 | // z-index: -1 27 | 28 | .head 29 | .main 30 | .foot 31 | margin: 0 auto 32 | width: 768px 33 | 34 | .head 35 | .foot 36 | padding: 0 50px 37 | height: 120px 38 | background-color: #399c9c 39 | line-height: (@height) 40 | box-sizing: border-box 41 | 42 | .head-title 43 | font-size-rem(30) 44 | font-weight: normal 45 | color: #FFFFFF 46 | 47 | > a 48 | color: #FFFFFF 49 | 50 | .head-nav__item 51 | display: inline-block 52 | margin-left: 20px 53 | 54 | .head-nav__link 55 | color: #fff 56 | 57 | &:hover 58 | color: #f0f0f0 59 | text-decoration: underline 60 | 61 | .main 62 | margin-top: 30px 63 | margin-bottom: 30px 64 | 65 | .archive-title 66 | margin: 1.6em 67 | text-align: center 68 | // 1.6 * 16 69 | font-size-rem(25.6) 70 | font-weight: normal 71 | 72 | .comments 73 | margin: 30px 0 74 | padding: 50px 75 | background-color: #FFFFFF 76 | border: 1px solid $border-color 77 | 78 | .foot 79 | margin-bottom: 30px 80 | 81 | .foot-copy 82 | text-align: center 83 | color: #fff 84 | font-size-rem(12) 85 | 86 | .page-menu__item 87 | display: inline-block 88 | 89 | .page-menu__link 90 | color: #FFFFFF 91 | font-size-rem(30) 92 | 93 | .page-menu__link--disabled 94 | color: #f0f0f0 95 | 96 | ::-webkit-scrollbar { 97 | width: 5px; 98 | height: 5px; 99 | background-color: #f5f5f5; 100 | } 101 | 102 | /* 定义滚动条轨道的内阴影+圆角 */ 103 | ::-webkit-scrollbar-track { 104 | -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, .3); 105 | background-color: #f5f5f5; 106 | } 107 | 108 | /* 定义滑块的内阴影+圆角 */ 109 | ::-webkit-scrollbar-thumb { 110 | -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, .3); 111 | background-color: $color-green-super-light; 112 | } 113 | 114 | .right p 115 | text-align: right 116 | 117 | .reward, 118 | .comments, 119 | .post, 120 | .tag-cloud 121 | transition: all .3s 122 | 123 | &:hover 124 | box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px; 125 | border-color: transparent 126 | 127 | .tag-cloud 128 | border: 1px solid #f0f0f0; 129 | padding: 20px; 130 | 131 | .tag-cloud__title 132 | font-size: font-size-rem(30) 133 | margin-bottom: 30px; 134 | 135 | .tag-cloud__amount 136 | margin-left: 8px; 137 | 138 | .icp-a 139 | color: #fff 140 | display: inline-block 141 | margin: 0 10px 142 | -------------------------------------------------------------------------------- /source/css/partial/_post.styl: -------------------------------------------------------------------------------- 1 | .excerpt 2 | margin-top: 20px 3 | 4 | .reward 5 | border: 1px solid $border-color 6 | padding: 20px 7 | text-align: center 8 | margin-top: 20px 9 | background-color: #fff 10 | 11 | .btn-reward 12 | padding: 10px 20px 13 | background-color: #399c9c 14 | color: $content-bg-color 15 | display: inline-block 16 | transition: all .3s 17 | 18 | &:hover 19 | background-color: $color-green-hover 20 | 21 | .reward-wrapper 22 | margin-top: 20px 23 | display: none 24 | 25 | img 26 | width: 200px 27 | height: 200px 28 | border: 1px solid $border-color 29 | margin: 0 10px 30 | 31 | .post 32 | overflow: hidden 33 | margin-top: 30px 34 | border: 1px solid $border-color 35 | background-color: $content-bg-color 36 | 37 | .post__head 38 | margin: $margin-left-right 39 | 40 | &.archive 41 | margin: 30px $margin-left-right 42 | 43 | .post__time 44 | color: #CCCCCC 45 | font-size-rem(12) 46 | 47 | .post__title 48 | margin-top: 5px 49 | line-height: 1.5 50 | font-size-rem(24) 51 | font-weight: normal 52 | 53 | > a 54 | color: #666 55 | transition: all .3s 56 | 57 | &:hover 58 | color: #9c396b 59 | text-shadow: 1px 1px 1px #ddd 60 | 61 | .post__image 62 | display: block 63 | // cursor: pointer 64 | margin: $margin-left-right 0 65 | 66 | .post__main 67 | margin-top: $margin-left-right 68 | 69 | .headerlink 70 | display: inline-block 71 | 72 | img 73 | cursor: pointer 74 | transition: all .3s 75 | 76 | &:hover 77 | box-shadow: 0 0 1px #ccc 78 | 79 | .highlight 80 | margin: 1.6em -60px 81 | padding: 15px 82 | 83 | figcaption 84 | padding: 0 45px 85 | 86 | table 87 | margin: 0 88 | width: auto 89 | border: none 90 | 91 | td 92 | th 93 | border: none 94 | 95 | pre 96 | margin: 0 97 | 98 | h1 99 | // 1.6 * 16 100 | font-size-rem(25.6) 101 | 102 | h2 103 | // 1.4 * 16 104 | font-size-rem(22.4) 105 | 106 | h3 107 | // 1.2 * 16 108 | font-size-rem(19.2) 109 | 110 | img 111 | // display: block 112 | margin: 1.6em auto 113 | 114 | .post__foot 115 | padding: 8px $margin-left-right 116 | border-top: 1px solid $border-color 117 | background-color: $background-color 118 | 119 | .post__foot-link 120 | padding: 10px 15px 10px 0 121 | color: #3CB371 122 | font-size-rem(14) 123 | 124 | .post__tag__item 125 | display: inline-block 126 | 127 | .post__tag__link 128 | @extend .post__foot-link 129 | transition: all .3s 130 | display: block 131 | 132 | &:hover 133 | color: #9c396b 134 | 135 | &:before 136 | content: "#" 137 | 138 | .post__more 139 | @extend .post__foot-link 140 | padding: 10px 20px 141 | border: 1px solid $border-color 142 | border-radius: 3px 143 | background-color: #CCCCCC 144 | color: #FFFFFF 145 | 146 | &:hover 147 | background-color: #DDDDDD 148 | 149 | 150 | .gallery 151 | margin-bottom: 45px 152 | 153 | a 154 | display: inline-block 155 | width: 100% 156 | 157 | &:focus 158 | outline: 0 159 | 160 | img 161 | width: 100% 162 | 163 | 164 | .video-container 165 | width: 100% 166 | 167 | iframe 168 | width: 100% 169 | min-height: 320px 170 | 171 | 172 | .queue-in 173 | animation-name: queue-in 174 | animation-duration: .3s 175 | animation-fill-mode: forwards 176 | animation-timing-function: ease-in 177 | 178 | .queue-out 179 | animation-name: queue-out 180 | animation-duration: .3s 181 | animation-fill-mode: forwards 182 | animation-timing-function: ease-out 183 | 184 | @keyframes queue-in { 185 | from { 186 | // opacity: .5; 187 | // margin-left: 40px; 188 | transform: translateX(40px); 189 | } 190 | 191 | to { 192 | opacity: 1; 193 | transform: translateX(0); 194 | } 195 | } 196 | 197 | 198 | @keyframes queue-out { 199 | from { 200 | opacity: 1; 201 | transform: translateX(0); 202 | } 203 | 204 | to { 205 | opacity: 0; 206 | display: none; 207 | transform: translateX(40px); 208 | } 209 | } 210 | -------------------------------------------------------------------------------- /source/css/vendor/_echo.styl: -------------------------------------------------------------------------------- 1 | /*36/30/24/18/14*/ 2 | .echo 3 | font-size-rem(14) 4 | line-height: 1.5 5 | 6 | a 7 | color: $base-link-color 8 | 9 | &:hover, 10 | &:focus, 11 | &:active 12 | text-decoration: underline 13 | 14 | h1 15 | h2 16 | h3 17 | h4 18 | h5 19 | h6 20 | font-weight: normal 21 | line-height: 1.5 22 | margin: 1.6em 0 23 | 24 | h1 25 | font-size-rem(30) 26 | 27 | h2 28 | font-size-rem(24) 29 | 30 | h3 31 | font-size-rem(18) 32 | 33 | h4 34 | h5 35 | h6 36 | font-size-rem(14) 37 | 38 | p 39 | margin: 1em 0 40 | font-size-rem(16) 41 | text-align: justify 42 | line-height: 1.8 43 | 44 | address 45 | blockquote 46 | dl 47 | figure 48 | form 49 | hr 50 | img 51 | ol 52 | pre 53 | table 54 | ul 55 | margin: 1.6em 0 56 | 57 | hr 58 | margin: 1.6em auto 59 | width: 61% 60 | height: 4px 61 | border: none 62 | background: #eee 63 | 64 | img 65 | max-width: 100% 66 | height: auto 67 | 68 | caption 69 | text-transform: uppercase 70 | padding: 1em 71 | color: #777 72 | 73 | thead 74 | background-color: #eee 75 | 76 | td 77 | th 78 | border: 1px solid #cbcbcb 79 | padding: .5em 1em 80 | text-align: left 81 | font-weight: normal 82 | 83 | tfoot 84 | background-color: #f4f4f4 85 | 86 | dl 87 | ol 88 | ul 89 | margin-left: 2em 90 | 91 | dd 92 | margin-left: 1em 93 | 94 | ol 95 | list-style: decimal outside 96 | 97 | ul 98 | list-style: disc outside 99 | 100 | figcaption 101 | font-size: .85em 102 | 103 | blockquote small, 104 | cite 105 | color: #777 106 | 107 | abbr 108 | cursor: help 109 | 110 | address 111 | font-style: normal 112 | 113 | code 114 | // > 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 | 4 | Generated by IcoMoon 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /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('