hexo-theme-keep/source/css/layout/category-list.styl

54 lines
819 B
Stylus
Raw Normal View History

2020-09-02 17:49:53 +08:00
.category-list-container {
keep-container(false, 0, 0, 30px, 0)
2020-09-02 17:49:53 +08:00
.category-list-content {
.all-category-list {
li.all-category-list-item {
margin-bottom 15px
font-size 1rem
2020-09-02 17:49:53 +08:00
&:last-child {
margin-bottom 0
2020-09-02 17:49:53 +08:00
}
span.all-category-list-count {
float right
color var(--default-text-color)
2021-01-28 14:50:41 +08:00
&::before {
content '['
2021-01-28 14:50:41 +08:00
}
&::after {
content ']'
2021-01-28 14:50:41 +08:00
}
2020-09-02 17:49:53 +08:00
}
ul.all-category-list-child {
margin-top 15px
2020-09-02 17:49:53 +08:00
margin-left 10px
2020-09-02 17:49:53 +08:00
li {
&::before {
content '- '
2020-09-02 17:49:53 +08:00
}
margin-bottom 10px
2020-09-02 17:49:53 +08:00
&:last-child {
margin-bottom 0
2020-09-02 17:49:53 +08:00
}
}
}
}
}
}
}