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

58 lines
1.5 KiB
SCSS
Raw Normal View History

2023-12-13 15:08:55 +01:00
.views-row {
article.actu-teaser {
background-color: white;
padding: 2rem;
box-sizing: border-box;
2023-12-13 15:08:55 +01:00
> div:first-of-type {
width: 100%;
2024-11-05 01:44:18 +01:00
aspect-ratio: 20 / 9;
2023-12-13 15:08:55 +01:00
overflow: hidden;
padding-left: $x_margin;
padding-right: $x_margin;
2024-01-22 17:20:43 +01:00
display: flex;
align-items: center;
2023-12-13 15:08:55 +01:00
a {
img {
height: auto;
width: 100%;
}
.legende {
display: none !important;
}
}
2023-12-13 15:08:55 +01:00
}
.preview_meta {
font-family: "Marianne", sans-serif;
font-size: $sm_font_size;
2023-12-13 15:08:55 +01:00
width: auto;
display: flex;
justify-content: space-between;
color: $teal;
margin: 0 $x_margin;
margin-top: 1.3rem;
padding-top: 0.7rem;
@media (min-width: $breakpoint_tablet) {
font-size: $m_font_size;
2023-12-13 15:08:55 +01:00
}
}
.preview_sous_titre {
font-family: "Marianne", sans-serif;
font-size: $m_font_size;
padding: 5px $x_margin;
@media (min-width: $breakpoint_tablet) {
font-size: $l_font_size;
padding-top: 0;
}
2023-12-13 15:08:55 +01:00
}
h2 {
margin-bottom: 0.5rem;
2024-11-05 01:44:18 +01:00
margin-top: 1rem !important;
@include main_title();
2023-12-13 15:08:55 +01:00
}
}
}