website/_includes/styles/pages/blog.scss

48 lines
775 B
SCSS
Raw Normal View History

2023-08-05 14:46:03 -04:00
.post-list {
list-style: none;
padding-left: 0;
font-size: 1rem;
2023-11-29 11:58:53 -05:00
line-height: 1.5;
letter-spacing: normal;
2023-08-05 14:46:03 -04:00
> li {
margin-bottom: 2rem;
&:last-child {
margin-bottom: 0;
}
}
.post-list-description {
margin: 0;
}
.post-list-title {
display: inline-block;
font-family: var(--font--sans-serif-alt);
2023-08-05 14:46:03 -04:00
font-weight: bold;
text-decoration: none;
font-size: 1.5rem;
2023-11-28 21:34:37 -05:00
line-height: initial;
2023-08-05 14:46:03 -04:00
&:hover {
text-decoration: underline;
}
}
.post-list-date {
display: block;
}
.tag-list {
margin: 0;
}
2023-08-05 14:46:03 -04:00
}
.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);
}
}