This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/styles/pages/feeds.css
2024-09-16 12:24:59 -07:00

47 lines
No EOL
778 B
CSS

.feed {
& .item {
&:not(:last-of-type) {
border-bottom: var(--border-gray);
margin-bottom: var(--spacing-base);
padding-bottom: var(--spacing-base);
}
& .date {
display: block;
color: var(--gray-dark);
font-size: var(--font-size-sm);
margin-bottom: 0;
}
& h3 {
margin-top: 0;
}
& img {
border: var(--border-default);
border-radius: var(--border-radius-slight);
height: auto;
width: 100%;
display: block;
margin-top: var(--sizing-base);
}
}
& p {
&:first-of-type {
margin-top: 0;
}
&:last-of-type {
margin-bottom: 0;
}
}
& ol > li p {
display: inline;
}
& footer {
padding-bottom: var(--spacing-3xl);
}
}