css
This commit is contained in:
parent
5c2cfbc151
commit
dc30d90fb5
|
@ -75,7 +75,7 @@ article:
|
||||||
category_color:
|
category_color:
|
||||||
'新闻稿': '#DA0F47'
|
'新闻稿': '#DA0F47'
|
||||||
# 文章许可协议
|
# 文章许可协议
|
||||||
license: '本文采用 [署名-非商业性使用-相同方式共享 4.0 国际](https://creativecommons.org/licenses/by-nc-sa/4.0/) 许可协议,转载请注明出处。'
|
license: '本文采用[署名-非商业性使用-相同方式共享 4.0 国际](https://creativecommons.org/licenses/by-nc-sa/4.0/)许可协议,转载请注明出处。'
|
||||||
# 分享
|
# 分享
|
||||||
share: # [wechat, weibo, email, link]
|
share: # [wechat, weibo, email, link]
|
||||||
# 相关文章,需要安装插件 (for layout: post)
|
# 相关文章,需要安装插件 (for layout: post)
|
||||||
|
|
|
@ -36,11 +36,6 @@ meta:
|
||||||
day: days ago
|
day: days ago
|
||||||
month: months ago
|
month: months ago
|
||||||
|
|
||||||
footer:
|
|
||||||
license: 'All articles in this blog are licensed under %s unless stating additionally.'
|
|
||||||
info_not_open_source: 'This site was deployed by %s using %s.'
|
|
||||||
info_open_source: 'This site was deployed by %s using %s. You can find the source code in %s.'
|
|
||||||
|
|
||||||
page:
|
page:
|
||||||
error:
|
error:
|
||||||
what: Page Not Found
|
what: Page Not Found
|
||||||
|
|
|
@ -36,11 +36,6 @@ meta:
|
||||||
day: 天前
|
day: 天前
|
||||||
month: 个月前
|
month: 个月前
|
||||||
|
|
||||||
footer:
|
|
||||||
license: '本博客所有文章除特别声明外,均采用 %s 许可协议,转载请注明出处。'
|
|
||||||
info_not_open_source: '本站由 %s 使用 %s 主题创建。'
|
|
||||||
info_open_source: '本站由 %s 使用 %s 主题创建,您可以在 %s 找到本站源码。'
|
|
||||||
|
|
||||||
page:
|
page:
|
||||||
error:
|
error:
|
||||||
what: 很抱歉,您访问的页面不存在
|
what: 很抱歉,您访问的页面不存在
|
||||||
|
|
|
@ -36,11 +36,6 @@ meta:
|
||||||
day: 天前
|
day: 天前
|
||||||
month: 個月前
|
month: 個月前
|
||||||
|
|
||||||
footer:
|
|
||||||
license: '本網誌所有文章除特別聲明外,均採用 %s 授權條款。轉載請註明出處。'
|
|
||||||
info_not_open_source: '本站由 %s 使用 %s 主題建立。'
|
|
||||||
info_open_source: '本站由 %s 使用 %s 主題建立。您可以在 %s 找到本站原始碼。'
|
|
||||||
|
|
||||||
page:
|
page:
|
||||||
error:
|
error:
|
||||||
what: 抱歉,找不到您存取的頁面
|
what: 抱歉,找不到您存取的頁面
|
||||||
|
|
|
@ -13,14 +13,36 @@ a
|
||||||
color: $color-hover
|
color: $color-hover
|
||||||
|
|
||||||
// md > a
|
// md > a
|
||||||
p, li
|
p:not([class]), li:not([class])
|
||||||
>a:not([class])
|
>a:not([class])
|
||||||
|
position: relative
|
||||||
margin: 0 1px
|
margin: 0 1px
|
||||||
padding: 4px
|
padding: 2px
|
||||||
border-radius: 4px
|
&:after
|
||||||
|
content: ''
|
||||||
|
position: absolute
|
||||||
|
border-radius: 2px
|
||||||
|
bottom: 0
|
||||||
|
left: 2px
|
||||||
|
right: 2px
|
||||||
|
height: 1px
|
||||||
|
opacity: 0.5
|
||||||
|
background: $color-link
|
||||||
|
trans1: all
|
||||||
&:hover
|
&:hover
|
||||||
color: darken($color-hover, 10)
|
border-bottom: none
|
||||||
background: alpha($color-hover, 0.08)
|
color: $color-link
|
||||||
|
// color: darken($color-hover, 10)
|
||||||
|
// background: alpha($color-hover, 0.08)
|
||||||
|
&:before
|
||||||
|
opacity: 0
|
||||||
|
&:after
|
||||||
|
height: 100%
|
||||||
|
opacity: 0.2
|
||||||
|
bottom: 0
|
||||||
|
left: 0
|
||||||
|
right: 0
|
||||||
|
// background-color: alpha($color-hover, 0.08)
|
||||||
|
|
||||||
hr
|
hr
|
||||||
color: var(--text-meta)
|
color: var(--text-meta)
|
||||||
|
|
Loading…
Reference in New Issue