décors ponctuels (oiseaux, fleurs) sur home, pages internes et footer

This commit is contained in:
2026-06-05 19:34:15 +02:00
parent 0f1e8bab18
commit 8e5a0c936e
16 changed files with 580 additions and 33 deletions

View File

@@ -168,6 +168,9 @@ main:has(#block-erabletheme-views-block-projets-block-1) {
background-color: white;
border-bottom: 7px solid $fluo_green;
position: relative;
@media (min-width: $breakpoint_desktop) {
margin-bottom: 4vh;
}
h2 {
margin-top: 5vh !important;
margin-bottom: 7vh;
@@ -201,7 +204,12 @@ main:has(#block-erabletheme-views-block-projets-block-1) {
@include main_text_content();
}
p:first-of-type {
// Margin-top sur le tout premier élément textuel du contenu,
// peu importe son type (p / h1-h6) ET peu importe la profondeur
// de wrapping (Drupal wrappe souvent les champs dans une ou deux
// <div>). :first-child garantit qu'on ne matche que le tout
// premier (vs :first-of-type qui matche le 1er de chaque type).
:is(p, h1, h2, h3, h4, h5, h6):first-child {
margin-top: 7vh;
}