hexo-theme-keep/source/css/layout/_partial/post-tools.styl

78 lines
1.5 KiB
Stylus
Raw Normal View History

2022-09-30 11:36:38 +08:00
$li-border-radius = 0.4rem
$li-margin-bottom = 0.8rem
2021-01-06 23:53:17 +08:00
.post-tools-container {
position relative
box-sizing border-box
padding-top 2rem
.tools-list {
li {
position relative
box-sizing border-box
width $post-tool-button-width
height $post-tool-button-width
margin-bottom $li-margin-bottom
color var(--default-text-color)
font-size 1.2rem
background var(--background-color)
border-radius 50%
cursor pointer
i {
color var(--default-text-color)
2020-09-05 23:08:03 +08:00
}
&:hover {
color var(--background-color)
background var(--primary-color)
i {
color var(--background-color)
}
}
&:last-child {
margin-bottom 0
}
hover-style(true, 1.06, 1.06)
2021-01-21 18:23:22 +08:00
&.toggle-show-toc {
display none
2020-09-07 16:25:37 +08:00
2020-11-20 12:02:22 +08:00
+keep-tablet() {
display none !important
2020-09-07 16:25:37 +08:00
}
2020-09-07 15:56:13 +08:00
}
&.go-to-comments {
.post-comments-count {
position absolute
top 0
right -1rem
display none
align-items center
justify-content center
box-sizing border-box
min-width 1.4rem
height 1.4rem
padding 0 0.2rem
color var(--background-color)
font-size 12px
background var(--border-color)
border-radius 0.4rem
+keep-tablet() {
display none !important
}
}
}
}
}
2020-09-05 23:08:03 +08:00
}