Files
caldwell/assets/sass/posts.scss
Nikolaos Karaolidis ccabcf9d5b Add hero
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2025-08-08 10:19:49 +02:00

43 lines
616 B
SCSS

.posts-list {
.post {
display: block;
color: inherit;
text-decoration: none;
&:not(:first-child) {
margin-top: 4rem;
}
.title {
font-size: 2.25rem;
}
.meta {
font-size: 0.8rem;
.date {
color: var(--text-600);
}
.duration {
color: color-mix(in srgb, var(--text) 50%, var(--background));
}
}
}
.post:hover .title,
.post:hover .summary {
color: var(--text-900);
}
}
@media (max-width: $width-mobile) {
.posts-list {
.post {
&:not(:first-child) {
margin-top: 2rem;
}
}
}
}