字体调整

This commit is contained in:
结发受长生 2018-05-06 14:46:16 +08:00
parent fc3bc198b9
commit 7aff3b6bf8
9 changed files with 3749 additions and 42 deletions

18
package-lock.json generated
View File

@ -1412,6 +1412,15 @@
}
}
},
"hexo-generator-feed": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/hexo-generator-feed/-/hexo-generator-feed-1.2.2.tgz",
"integrity": "sha512-4jcvVhFgpEFRJ7A+KhBSfWoQaewRBjcVWEO4OmBgnvaZOm6XwK+b5ZXx/8BpujCLHbjXWzglXhiT7qFFS/nvzw==",
"requires": {
"nunjucks": "3.1.2",
"object-assign": "4.1.1"
}
},
"hexo-generator-index": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/hexo-generator-index/-/hexo-generator-index-0.2.1.tgz",
@ -1421,6 +1430,15 @@
"object-assign": "4.1.1"
}
},
"hexo-generator-search": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/hexo-generator-search/-/hexo-generator-search-2.2.5.tgz",
"integrity": "sha512-lt2qEGhNINOcQr2ws7UKXAOALWz8Z0+fuq88mbJgQogpUhXrLLfJiv/padHBatooTFeK7+XBUDDS6mgfKMbrkg==",
"requires": {
"nunjucks": "3.1.2",
"utils-merge": "1.0.1"
}
},
"hexo-generator-tag": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/hexo-generator-tag/-/hexo-generator-tag-0.2.0.tgz",

View File

@ -10,7 +10,9 @@
"hexo-deployer-git": "^0.3.1",
"hexo-generator-archive": "^0.1.4",
"hexo-generator-category": "^0.1.3",
"hexo-generator-feed": "^1.2.2",
"hexo-generator-index": "^0.2.0",
"hexo-generator-search": "^2.2.5",
"hexo-generator-tag": "^0.2.0",
"hexo-renderer-ejs": "^0.3.0",
"hexo-renderer-marked": "^0.3.0",

View File

@ -19,11 +19,15 @@ menu:
about:
name: 关于
link: /about/
icon: icon-about
icon: icon-user-tie
comment:
name: 留言
link: /comment/
icon: icon-comment
icon: icon-bubbles2
rss:
name: RSS
link: /atom.xml
icon: icon-rss
#----------------------------
# 副导航
@ -38,8 +42,23 @@ subnav:
# RSS
#----------------------------
rss: /atom.xml
feed:
type: atom
path: atom.xml
limit: 20
hub:
content:
content_limit: 140
content_limit_delim: ' '
#----------------------------
# 搜索
#----------------------------
search:
path: search.xml
field: all
#----------------------------
# Favicon
#----------------------------
favicon: /favicon.ico

File diff suppressed because it is too large Load Diff

View File

@ -49,16 +49,14 @@
.dropnav
position absolute
display block
top 12px
top 21px
right 20px
width 40px
width 30px
height @width
padding 0 2px
line-height @height
font-size @height
color #efe0ce
border 2px solid @color
border-radius 2px
z-index 3
cursor pointer
&:hover

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 294 KiB