51 lines
814 B
SCSS
51 lines
814 B
SCSS
.post-list {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
> li {
|
|
margin-bottom: 2rem;
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
.post-list-description {
|
|
margin: 0;
|
|
}
|
|
.post-list-title {
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
font-size: 1.5rem;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
.post-list-date {
|
|
display: block;
|
|
}
|
|
.tag-list {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
list-style: none;
|
|
padding-left: 0;
|
|
padding-top: 0.5rem;
|
|
padding-bottom: 0.5rem;
|
|
> li {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.no-posts {
|
|
text-align: center;
|
|
margin: 4rem 0;
|
|
h2 {
|
|
margin: 0;
|
|
color: var(--color-blue);
|
|
}
|
|
img.icon {
|
|
width: 3rem;
|
|
height: 3rem;
|
|
filter: var(--filter-blue);
|
|
}
|
|
}
|