- Renommage classes/IDs (BEM cohérent, anglais, noms sémantiques) - Correction HTML : h3→h2 FAQ, button>a→a[role=button] CTA mobile - Conversion index.html → index.php (FR/EN) avec cache JSON depuis API Kirby - Pages merci/thanks converties en PHP dynamique - Ajout includes/cache.php + includes/config.php (cache TTL 5min) - Ajout CI Forgejo (deploy FTP via lftp) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
55 lines
No EOL
951 B
SCSS
55 lines
No EOL
951 B
SCSS
|
|
.comment-text{
|
|
font-size: var(--fs-medium);
|
|
font-weight: var(--fw-medium);
|
|
line-height: var(--leading-tight);
|
|
line-height: 1.1;
|
|
max-width: 28ch;
|
|
text-align: center;
|
|
}
|
|
|
|
.comment-name {
|
|
margin-top: calc(var(--spacing)*0.5);
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
|
|
|
|
.swiper {
|
|
width: 100%;
|
|
max-width: 700px;
|
|
height: auto;
|
|
position: relative;
|
|
padding-bottom: 40px; /* espace réservé pour les dots */
|
|
|
|
.swiper-slide{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.comments-dots{
|
|
position: absolute;
|
|
bottom: 10px; /* espace du bas */
|
|
left: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
|
|
.swiper-pagination-bullet{
|
|
background-color: var(--grey-600);
|
|
opacity: 1;
|
|
}
|
|
.swiper-pagination-bullet-active{
|
|
background-color: var(--color-txt);
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|