36 lines
478 B
SCSS
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);
|
|
} |