css
This commit is contained in:
parent
5c2cfbc151
commit
dc30d90fb5
|
@ -36,11 +36,6 @@ meta:
|
|||
day: days 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:
|
||||
error:
|
||||
what: Page Not Found
|
||||
|
|
|
@ -36,11 +36,6 @@ meta:
|
|||
day: 天前
|
||||
month: 个月前
|
||||
|
||||
footer:
|
||||
license: '本博客所有文章除特别声明外,均采用 %s 许可协议,转载请注明出处。'
|
||||
info_not_open_source: '本站由 %s 使用 %s 主题创建。'
|
||||
info_open_source: '本站由 %s 使用 %s 主题创建,您可以在 %s 找到本站源码。'
|
||||
|
||||
page:
|
||||
error:
|
||||
what: 很抱歉,您访问的页面不存在
|
||||
|
|
|
@ -36,11 +36,6 @@ meta:
|
|||
day: 天前
|
||||
month: 個月前
|
||||
|
||||
footer:
|
||||
license: '本網誌所有文章除特別聲明外,均採用 %s 授權條款。轉載請註明出處。'
|
||||
info_not_open_source: '本站由 %s 使用 %s 主題建立。'
|
||||
info_open_source: '本站由 %s 使用 %s 主題建立。您可以在 %s 找到本站原始碼。'
|
||||
|
||||
page:
|
||||
error:
|
||||
what: 抱歉,找不到您存取的頁面
|
||||
|
|
|
@ -13,14 +13,36 @@ a
|
|||
color: $color-hover
|
||||
|
||||
// md > a
|
||||
p, li
|
||||
p:not([class]), li:not([class])
|
||||
>a:not([class])
|
||||
position: relative
|
||||
margin: 0 1px
|
||||
padding: 4px
|
||||
border-radius: 4px
|
||||
padding: 2px
|
||||
&:after
|
||||
content: ''
|
||||
position: absolute
|
||||
border-radius: 2px
|
||||
bottom: 0
|
||||
left: 2px
|
||||
right: 2px
|
||||
height: 1px
|
||||
opacity: 0.5
|
||||
background: $color-link
|
||||
trans1: all
|
||||
&:hover
|
||||
color: darken($color-hover, 10)
|
||||
background: alpha($color-hover, 0.08)
|
||||
border-bottom: none
|
||||
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
|
||||
color: var(--text-meta)
|
||||
|
|
Loading…
Reference in New Issue