Files
neuf-www/web/src/components/news/newsItem.module.scss
2024-05-10 20:31:05 +02:00

36 lines
478 B
SCSS

.newsItem {
position: relative;
list-style: none;
}
.image {
width: 100%;
padding-top: 60%;
background: var(--color-placeholder);
position: relative;
img {
position: absolute;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
}
.text {
padding: .8rem 0 2rem;
}
.date {
font-family: var(--font-serif);
font-size: var(--font-size-caption);
}
.title {
margin: .4rem 0 .6rem;
}
.lead {
font-size: var(--font-size-caption);
}