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

25 lines
500 B
Stylus
Raw Normal View History

2020-12-01 16:51:38 +08:00
$category-name-font-size = 1.6rem;
.category-container {
2020-04-29 18:41:29 +08:00
keep-container(1.02, 1.02, 30px, 30px);
2020-04-29 18:41:29 +08:00
.category-name {
color: var(--second-text-color);
2020-12-01 16:51:38 +08:00
font-size: $category-name-font-size;
2020-06-04 22:11:27 +08:00
2020-11-20 12:02:22 +08:00
+keep-tablet() {
2020-12-01 16:51:38 +08:00
font-size: $category-name-font-size * 0.9;
2020-06-04 22:11:27 +08:00
}
2020-11-20 12:02:22 +08:00
+keep-mobile() {
2020-12-01 16:51:38 +08:00
font-size: $category-name-font-size * 0.8;
2020-06-04 22:11:27 +08:00
}
font-weight: 600;
2020-04-29 18:41:29 +08:00
padding-bottom: 20px;
margin-bottom: $component-interspace;
border-bottom: 1px solid var(--border-color);
}
2020-11-13 14:43:22 +08:00
}