60 lines
756 B
Stylus
60 lines
756 B
Stylus
.article-meta-info {
|
|
font-size: 0.8rem;
|
|
color: var(--third-text-color);
|
|
|
|
.article-meta-item {
|
|
margin-right: 10px;
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.article-date {
|
|
|
|
.mobile {
|
|
display: none;
|
|
}
|
|
|
|
+keep-tablet() {
|
|
.pc {
|
|
display: none;
|
|
}
|
|
|
|
.mobile {
|
|
display: inline;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
.article-tags, .article-categories {
|
|
display: inline;
|
|
|
|
ul, li {
|
|
display: inline;
|
|
}
|
|
|
|
a {
|
|
color: var(--third-text-color);
|
|
|
|
&:hover {
|
|
color: var(--primary-color);
|
|
}
|
|
}
|
|
}
|
|
|
|
.article-tags {
|
|
+keep-tablet() {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.article-min2read, .article-wordcount {
|
|
+keep-mobile() {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|