56 lines
1.5 KiB
SCSS
56 lines
1.5 KiB
SCSS
|
.content_gouvernance {
|
||
|
.views-row {
|
||
|
margin-bottom: 2vh;
|
||
|
article {
|
||
|
> h2 {
|
||
|
margin-bottom: 2vh;
|
||
|
a {
|
||
|
color: black;
|
||
|
font-size: 1.6rem;
|
||
|
}
|
||
|
}
|
||
|
> div:first-of-type {
|
||
|
max-height: none;
|
||
|
}
|
||
|
.paragraph--type--membre-equipe {
|
||
|
height: auto;
|
||
|
display: grid;
|
||
|
grid-template-columns: 30vw 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: auto;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
> div:nth-of-type(2) {
|
||
|
@include sous_titre();
|
||
|
margin-bottom: 2vh;
|
||
|
}
|
||
|
|
||
|
> div:nth-of-type(3) {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
> div:last-of-type {
|
||
|
@include main_text_content();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|