This commit is contained in:
2025-12-24 16:14:56 +01:00
parent e615156347
commit a70cfff122
2 changed files with 22 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 425 KiB

+22 -1
View File
@@ -35,7 +35,7 @@ body.pf-home > * {
/* Descendre légèrement le contenu sous le header sur la home */
body.pf-home .pf-main {
padding-top: 60px; /* au lieu de 24px défini dans global.css */
padding-top: 80px;
}
/* === HOME / MODULES CARDS === */
@@ -138,3 +138,24 @@ body.pf-home .pf-section > h2 {
text-align: left;
color: #f9fafb;
}
/* === ALIGNEMENT À DROITE DU BLOC INTRO SUR LA HOME === */
/* On aligne à droite uniquement le bloc d'intro */
body.pf-home .pf-container > h1,
body.pf-home .pf-container > p,
body.pf-home .pf-container > .pf-user-info {
text-align: right;
}
/* On garde le titre "Modules" à gauche, sauf si tu veux aussi le mettre à droite */
body.pf-home .pf-section > h2 {
text-align: left;
}
/* Image de fond spécifique pour le mobile */
@media (max-width: 768px) {
body.pf-home {
background-image: url("/modules/home/assets/img/background_m.jpg");
background-position: center center;
}
}