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

54 lines
909 B
Stylus
Raw Normal View History

2020-09-02 17:49:53 +08:00
.category-list-container {
2021-01-21 18:23:22 +08:00
keep-container(false, 0, 0, 30px, 30px);
2020-09-02 17:49:53 +08:00
.category-list-content {
.all-category-list {
li.all-category-list-item {
2021-01-21 18:23:22 +08:00
font-size: 1rem;
2020-09-02 17:49:53 +08:00
margin-bottom: 15px;
2021-01-27 16:39:55 +08:00
display: flex;
justify-content: space-between;
align-items: center;
2020-09-02 17:49:53 +08:00
&:last-child {
margin-bottom: 0;
}
span.all-category-list-count {
color: var(--default-text-color);
2021-01-27 16:39:55 +08:00
background: var(--second-background-color);
padding: 2px 8px;
border-radius: 2px;
2020-09-02 17:49:53 +08:00
}
ul.all-category-list-child {
margin-left: 10px;
margin-top: 15px;
li {
&::before {
2021-01-22 19:09:40 +08:00
content: '- ';
2020-09-02 17:49:53 +08:00
}
margin-bottom: 10px;
&:last-child {
margin-bottom: 0;
}
}
}
}
}
}
}