Skip to content

Commit 5a6fab3

Browse files
committed
feat: rework page d'accueil
1 parent 7a25797 commit 5a6fab3

13 files changed

+314
-89
lines changed
5.85 KB
Loading
2.85 KB
Loading

public/img/partners/domifa.png

4.25 KB
Loading
8.13 KB
Loading
3.74 KB
Loading

public/img/partners/mesaidesvelo.png

8.08 KB
Loading
4.56 KB
Loading

public/img/partners/openfisca.png

9.87 KB
Loading
3.04 KB
Loading
10.1 KB
Loading
11.1 KB
Loading

src/styles/aides-jeunes.css

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,3 +608,64 @@ textarea {
608608
inset 0 0 0 4px var(--background-default-grey),
609609
inset 0 0 0 8px var(--background-action-high-blue-france);
610610
}
611+
612+
.aj-hero-highlight {
613+
background-image: linear-gradient(
614+
0deg,
615+
var(--success-975-75) 0%,
616+
var(--success-975-75) 50%,
617+
transparent 50%,
618+
transparent 100%
619+
);
620+
color: black;
621+
padding: 0 0.25rem;
622+
}
623+
624+
.aj-domains-container {
625+
display: flex;
626+
flex-wrap: wrap;
627+
justify-content: left;
628+
gap: 0.5rem;
629+
}
630+
631+
.aj-domain {
632+
font-size: 0.875rem;
633+
color: var(--text-action-high-blue-france);
634+
background-color: var(--background-action-low-blue-france);
635+
padding: 0.25rem 0.75rem;
636+
border-radius: 1rem;
637+
}
638+
639+
.aj-domain:hover {
640+
cursor: default;
641+
}
642+
643+
.aj-partners {
644+
display: flex;
645+
flex-wrap: wrap;
646+
justify-content: center;
647+
gap: 2rem;
648+
align-items: center;
649+
}
650+
651+
.aj-partner-logo {
652+
max-width: 150px;
653+
max-height: 75px;
654+
object-fit: contain;
655+
opacity: 0.9;
656+
}
657+
658+
.aj-partner-logo:hover {
659+
opacity: 1;
660+
}
661+
662+
@media (max-width: 767px) {
663+
.aj-partners {
664+
gap: 1rem;
665+
}
666+
667+
.aj-partner-logo {
668+
max-width: 80px;
669+
max-height: 40px;
670+
}
671+
}

0 commit comments

Comments
 (0)