hexo-theme-keep/source/css/layout/_partial/comment/comment.styl

39 lines
738 B
Stylus
Raw Normal View History

if (hexo-config('comment.enable') == true && hexo-config('comment.use') != "") {
if (hexo-config('comment.use') == "valine") {
@import "./valine.styl"
}
else if (hexo-config('comment.use') == "gitalk") {
@import "./gitalk.styl"
}
else if (hexo-config('comment.use') == "twikoo") {
@import "./twikoo.styl"
}
2020-10-29 15:42:58 +08:00
}
.comments-container {
display inline-block
width 100%
margin-top $component-spacing-value
2020-10-29 15:42:58 +08:00
#comment-anchor {
width 100%
height 0.8rem
2021-01-25 10:37:39 +08:00
}
.comment-area-title {
width 100%
margin 0.8rem 0
color var(--default-text-color)
font-size 1.38rem
2021-01-19 23:20:27 +08:00
2021-01-21 18:28:00 +08:00
i {
color var(--default-text-color)
2021-01-21 18:28:00 +08:00
}
2021-01-19 23:20:27 +08:00
+keep-tablet() {
margin 0.4rem 0
font-size 1.2rem
2021-01-19 23:20:27 +08:00
}
2020-10-29 15:42:58 +08:00
}
}