/* Styles généraux */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
/* Section de Défilement */
.course-slider {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
}
.course-card {
flex: 0 0 300px;
margin: 10px;
padding: 20px;
background-color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
text-align: center;
scroll-snap-align: center;
}
.course-card img {
width: 100px;
height: 100px;
object-fit: cover;
margin-bottom: 10px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #ff6347;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #e74c3c;
}
/* Menu et Contenu Dynamique */
.menu {
background-color: #333;
color: white;
padding: 10px;
}
.menu ul {
list-style: none;
padding: 0;
}
.menu li {
display: inline-block;
margin-right: 20px;
}
.menu a {
color: white;
text-decoration: none;
}
.content-area section {
padding: 20px;
display: none; /* Caché par défaut */
}
.content-area section.hidden {
display: block;
}
#progress-bar {
width: 100%;
height: 20px;
background-color: #ddd;
border-radius: 10px;
overflow: hidden;
}
#progress-bar span {
display: block;
height: 100%;
background-color: #2ecc71;
}