Ghost_Ruby_Theme/assets/css/site/term.css

52 lines
815 B
CSS
Raw Normal View History

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