search
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 2m15s

This commit is contained in:
Arnaud Delcasse
2026-03-27 14:50:41 +01:00
parent c3231632ac
commit 2837630e53
7 changed files with 65 additions and 30 deletions

View File

@@ -874,6 +874,38 @@ main {
left: -80px;
}
/* Sidebar Conducteur */
.conducteur-sidebar {
display: flex;
flex-direction: column;
gap: 2rem;
align-items: center;
}
/* CTA Conducteur */
.cta-conducteur {
width: 100%;
text-align: center;
}
.cta-conducteur-button {
display: inline-block;
background-color: var(--color-highlight);
color: var(--color-white);
padding: 1rem 2rem;
border-radius: 25px;
text-decoration: none;
font-size: 20px;
font-weight: 700;
transition: opacity 0.2s, transform 0.2s;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.cta-conducteur-button:hover {
opacity: 0.9;
transform: translateY(-2px);
}
/* Plus d'infos */
.plus-infos {
width: 100%;