48 lines
630 B
Stylus
48 lines
630 B
Stylus
@require '../common/variables.styl'
|
|
|
|
.article-meta-info {
|
|
|
|
color: var(--third-text-color);
|
|
font-size: 0.8em;
|
|
|
|
.article-meta-item {
|
|
margin-right: 10px;
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
|
|
.article-tags, .article-categories {
|
|
display: inline;
|
|
|
|
ul, li {
|
|
display: inline;
|
|
}
|
|
|
|
a {
|
|
color: var(--third-text-color);
|
|
|
|
&:hover {
|
|
color: var(--primary-color);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.article-wordcount, .article-tags {
|
|
+keep-mobile() {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.article-min2read, .article-categories {
|
|
|
|
+keep-tablet() {
|
|
display: none;
|
|
}
|
|
|
|
}
|
|
}
|