hexo-theme-keep/source/css/layout/_partial/article-meta-info.styl

60 lines
758 B
Stylus
Raw Normal View History

.article-meta-info {
2020-12-01 16:51:38 +08:00
font-size: 0.8rem;
.article-meta-item {
margin-right: 10px;
color: var(--third-text-color);
2020-04-01 23:03:38 +08:00
&:last-child {
margin-right: 0;
}
}
2021-11-22 21:25:07 +08:00
.article-date {
.mobile {
display: none;
}
+keep-tablet() {
.pc {
display: none;
}
.mobile {
display: inline;
}
}
}
2020-10-27 18:11:10 +08:00
.article-tags, .article-categories {
display: inline;
ul, li {
display: inline;
}
a {
color: var(--third-text-color);
&:hover {
color: var(--primary-color);
}
}
}
2020-10-27 18:11:10 +08:00
2021-11-22 21:25:07 +08:00
.article-tags {
+keep-tablet() {
2020-10-27 18:11:10 +08:00
display: none;
}
}
2021-11-22 21:25:07 +08:00
.article-min2read, .article-wordcount {
+keep-mobile() {
2020-10-27 18:11:10 +08:00
display: none;
}
}
}