wf4/app/assets/css/blog/author.css
webfussel 579491f216 add: category, date sorting
Add category layouts and date sorting
2025-07-11 13:32:59 +02:00

32 lines
No EOL
552 B
CSS

.BlogAuthor {
display: flex;
align-items: center;
gap: 1rem;
& .meta {
display: flex;
flex-direction: column;
gap: .2rem;
& .name {
font-weight: bold;
}
& .date {
font-size: .8rem;
}
}
& .image {
--size: 50px;
height: var(--size);
width: var(--size);
border-radius: 50%;
overflow: hidden;
& img {
height: 100%;
width: 100%;
object-fit: cover;
}
}
}