43 lines
616 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|