58 lines
1.2 KiB
SCSS
58 lines
1.2 KiB
SCSS
|
|
// .block-entity-fieldnodetitle {
|
|
// // .field--type-string{
|
|
// // color: $white;
|
|
// // background-color: $blue-light;
|
|
// // }
|
|
// }
|
|
.block-entity-fieldnodetitle{
|
|
width: 80%;
|
|
margin: auto;
|
|
.field--name-title{
|
|
font-size: 2rem;
|
|
font-weight: 800;
|
|
color: $white;
|
|
background-color: $blue-light;
|
|
text-transform: uppercase;
|
|
padding: 2rem 1rem 2rem 1rem;
|
|
}
|
|
}
|
|
|
|
.field--name-field-partenaires{
|
|
padding-top: 3rem;
|
|
.paragraph--type--partenaire{
|
|
|
|
padding-bottom: 3rem;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, 120px);
|
|
grid-template-rows: repeat(auto-fill);
|
|
|
|
.field--name-field-logo{
|
|
grid-column: 1 / 4;
|
|
grid-row: 1 / 3;
|
|
}
|
|
.field--name-field-titre{
|
|
grid-column: 3 / 7;
|
|
grid-row: 1;
|
|
font-weight: 800;
|
|
|
|
}
|
|
.field--name-field-texte{
|
|
grid-column: 3 / 7;
|
|
grid-row: 2;
|
|
}
|
|
.field--name-field-lien{
|
|
grid-column: 3 / 7;
|
|
grid-row: 3;
|
|
}
|
|
|
|
}
|
|
a{
|
|
color: $black;
|
|
svg{
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
}
|