website/_includes/styles/pages/blog.scss

40 lines
605 B
SCSS
Raw Normal View History

2023-08-05 14:46:03 -04:00
.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;
}
}
.no-posts {
text-align: center;
margin: 4rem 0;
h2 {
margin: 0;
color: var(--color-blue);
}
img.icon {
2023-08-05 17:50:59 -04:00
width: 5rem;
height: 5rem;
2023-08-05 14:46:03 -04:00
filter: var(--filter-blue);
}
}