mirror of
https://github.com/TryGhost/Ruby.git
synced 2024-10-30 04:48:33 +02:00
52 lines
877 B
CSS
52 lines
877 B
CSS
.term-tags {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.term-tags .tag {
|
|
color: var(--secondary-text-color);
|
|
font-weight: 700;
|
|
margin-bottom: 10px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.term-tags .tag-current {
|
|
background-color: var(--primary-color);
|
|
border-radius: 15px;
|
|
color: var(--white-color);
|
|
padding: 2px 10px 3px;
|
|
}
|
|
|
|
@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 {
|
|
height: 40px;
|
|
margin-right: 15px;
|
|
width: 40px;
|
|
}
|
|
|
|
.term-author .author-name {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.term-author .author-name::after {
|
|
display: none;
|
|
}
|