hexo-theme-keep/source/css/layout/_partial/sidebar-categories.styl

72 lines
1.0 KiB
Stylus
Raw Normal View History

2020-04-28 23:20:17 +08:00
@require "../common/magic-theme.styl"
.sidebar-category {
2020-04-28 23:20:17 +08:00
position relative
background: var(--background-color);
2020-04-30 00:14:16 +08:00
magic-container(1.02, 1.02, 20px);
.category-label {
margin-bottom: 12px;
padding-bottom: 12px;
font-size: 16px;
font-weight: 600;
border-bottom: 1px solid var(--border-color);
}
2020-09-02 19:17:24 +08:00
.post-category-list {
2020-09-02 19:17:24 +08:00
.post-category-list-item {
margin-bottom: 10px;
&:last-child {
margin-bottom: 0;
}
2020-09-02 19:17:24 +08:00
a.post-category-list-link {
2020-09-02 19:17:24 +08:00
&:hover {
font-weight: 550;
}
}
2020-09-02 19:17:24 +08:00
span.post-category-list-count {
2020-09-02 19:17:24 +08:00
float: right;
&::before {
content: '';
}
2020-09-02 19:17:24 +08:00
&::after {
content: '';
}
}
2020-09-02 19:17:24 +08:00
ul.post-category-list-child {
margin-left: 10px;
margin-top: 15px;
li {
&::before {
content: '· ';
}
margin-bottom: 10px;
&:last-child {
margin-bottom: 0;
}
}
}
}
}
}