feat(dl): page de téléchargements avec liens modifiables et copie

This commit is contained in:
2026-05-28 18:14:54 +02:00
parent e315b511ee
commit bca5626096
3 changed files with 198 additions and 0 deletions
+37
View File
@@ -259,6 +259,43 @@ main[data-page-content] {
line-height: 1.65;
}
/* Styles page Téléchargements */
.downloads {
margin-top: 1.5rem;
}
.downloads-header h1 { margin: 0 0 0.35rem; }
.download-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
margin-top: 1rem;
}
.download-card {
display: flex;
gap: 1rem;
align-items: stretch;
padding: 0.8rem;
border-radius: 0.75rem;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(148,163,184,0.06);
}
.download-media { width: 220px; flex: 0 0 220px; overflow: hidden; border-radius: 0.5rem; }
.download-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.download-body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.download-actions { display: flex; gap: 0.6rem; margin-top: auto; }
@media (max-width: 880px) {
.download-grid { grid-template-columns: 1fr; }
.download-media { width: 140px; flex-basis: 140px; }
}
.features .card {
flex: 1 1 0;
min-width: 0;