fixed gouvernance node page css styles

This commit is contained in:
2024-09-19 12:02:42 +02:00
parent 1a0bd22366
commit 87c7fb881d
3 changed files with 118 additions and 117 deletions

View File

@@ -1,3 +1,60 @@
.paragraph--type--membre-equipe {
height: auto;
display: grid;
grid-template-columns: 30vw auto 1fr;
grid-auto-rows: auto;
margin-bottom: 5vh;
> div:first-of-type {
grid-row: 1 / 3;
display: flex;
align-items: center;
> div {
width: 20vw;
height: 20vw;
overflow: hidden;
border-radius: 10vw;
img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
}
> div:nth-of-type(2),
> div:nth-of-type(3) {
@include sous_titre();
margin-bottom: 2vh;
align-self: flex-end;
}
> div:nth-of-type(3) {
padding-left: 0.5rem;
}
> div:last-of-type {
@include main_text_content();
grid-column: 2 / 4;
}
@media (min-width: $breakpoint_tablet) {
grid-template-columns: 10vw auto 1fr;
> div:first-of-type > div {
width: 10vw;
height: 10vw;
border-radius: 5vw;
}
> div:nth-of-type(2) {
padding-left: 3vw;
}
> div:last-of-type {
padding-left: 3vw;
}
}
}
.content_gouvernance {
.views-row {
margin-bottom: 2vh;
@@ -13,64 +70,7 @@
> div:first-of-type {
height: unset;
flex-direction: column;
}
.paragraph--type--membre-equipe {
height: auto;
display: grid;
grid-template-columns: 30vw auto 1fr;
grid-auto-rows: auto;
margin-bottom: 5vh;
> div:first-of-type {
grid-row: 1 / 3;
display: flex;
align-items: center;
> div {
width: 20vw;
height: 20vw;
overflow: hidden;
border-radius: 10vw;
img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
}
> div:nth-of-type(2),
> div:nth-of-type(3) {
@include sous_titre();
margin-bottom: 2vh;
align-self: flex-end;
}
> div:nth-of-type(3) {
padding-left: 0.5rem;
}
> div:last-of-type {
@include main_text_content();
grid-column: 2 / 4;
}
@media (min-width: $breakpoint_tablet) {
grid-template-columns: 10vw auto 1fr;
> div:first-of-type > div {
width: 10vw;
height: 10vw;
border-radius: 5vw;
}
> div:nth-of-type(2) {
padding-left: 3vw;
}
> div:last-of-type {
padding-left: 3vw;
}
}
}
}
}
}