blog_theme/assets/css/site/term.css
2020-10-19 09:07:40 +08:00

52 lines
877 B
CSS

.term-tags {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-bottom: 20px;
}
.term-tags .tag {
margin-right: 20px;
margin-bottom: 10px;
color: var(--secondary-text-color);
font-weight: 700;
}
.term-tags .tag-current {
padding: 2px 10px 3px;
color: var(--white-color);
background-color: var(--primary-color);
border-radius: 15px;
}
@media (max-width: 767px) {
.term-tags {
flex-wrap: nowrap;
-webkit-overflow-scrolling: touch;
overflow-x: scroll;
}
.term-tags .tag {
white-space: nowrap;
}
}
.term-author {
display: flex;
margin-bottom: 30px;
}
.term-author .author-image-placeholder {
margin-right: 15px;
width: 40px;
height: 40px;
}
.term-author .author-name {
font-size: 20px;
}
.term-author .author-name::after {
display: none;
}