drupal-erable/web/themes/erabletheme/scss/partials/_articles_teaser.scss

50 lines
1.2 KiB
SCSS
Raw Normal View History

2023-12-13 15:08:55 +01:00
.views-row {
article {
> div:first-of-type {
width: 100%;
height: 30vh;
2023-12-13 15:08:55 +01:00
overflow: hidden;
padding-left: $x_margin;
padding-right: $x_margin;
a {
img {
height: auto;
width: 100%;
}
}
@media (min-width: $breakpoint_tablet) {
height: 20vh;
}
2023-12-13 15:08:55 +01:00
}
.preview_meta {
font-family: "Marianne", sans-serif;
font-size: $m_font_size;
width: auto;
display: flex;
justify-content: space-between;
color: $teal;
border-top: solid 1px $teal;
margin: 0 $x_margin;
margin-top: 1.3rem;
padding-top: 0.7rem;
> div:first-of-type {
font-weight: 800;
}
}
.preview_sous_titre {
font-family: "Marianne", sans-serif;
font-size: $l_font_size;
padding: 5px $x_margin;
@media (min-width: $breakpoint_tablet) {
padding-top: 0;
}
2023-12-13 15:08:55 +01:00
}
h2 {
@include main_title();
}
}
}