Skip to content

Commit

Permalink
feat: rework page d'accueil
Browse files Browse the repository at this point in the history
  • Loading branch information
Shamzic committed Oct 25, 2024
1 parent cc3c40c commit 54f1ebb
Show file tree
Hide file tree
Showing 14 changed files with 316 additions and 89 deletions.
Binary file added public/img/partners/bordeaux-metropole.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners/demarches-simplifiees.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners/domifa.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners/etudiant.gouv.fr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners/jeunes.gouv.fr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners/mesaidesvelo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners/montpellier-metropole.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners/openfisca.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners/rdv-service-public.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners/toulon-metropole.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/partners/ville-aubervilliers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/resultats_simulation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions src/styles/aides-jeunes.css
Original file line number Diff line number Diff line change
Expand Up @@ -608,3 +608,64 @@ textarea {
inset 0 0 0 4px var(--background-default-grey),
inset 0 0 0 8px var(--background-action-high-blue-france);
}

.aj-hero-highlight {
background-image: linear-gradient(
0deg,
var(--success-975-75) 0%,
var(--success-975-75) 50%,
transparent 50%,
transparent 100%
);
color: black;
padding: 0 0.25rem;
}

.aj-domains-container {
display: flex;
flex-wrap: wrap;
justify-content: left;
gap: 0.5rem;
}

.aj-domain {
font-size: 0.875rem;
color: var(--text-action-high-blue-france);
background-color: var(--background-action-low-blue-france);
padding: 0.25rem 0.75rem;
border-radius: 1rem;
}

.aj-domain:hover {
cursor: default;
}

.aj-partners {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
align-items: center;
}

.aj-partner-logo {
max-width: 150px;
max-height: 75px;
object-fit: contain;
opacity: 0.9;
}

.aj-partner-logo:hover {
opacity: 1;
}

@media (max-width: 767px) {
.aj-partners {
gap: 1rem;
}

.aj-partner-logo {
max-width: 80px;
max-height: 40px;
}
}
Loading

0 comments on commit 54f1ebb

Please sign in to comment.