<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">ul {
  margin:0;
  padding:0  
}
li {
  list-style: none;
}
body{
  height: 500vh;
}
.menu {
  position: sticky;
  top: 0;
  left: 0px;
  width: 870px;
  font-weight: 600;
  background-color: #e2dfdf;     /* Ajout de la couleur d'arriÃ¨re-plan */
  
 }

.menu &gt; ul {
  display: flex;
  margin-left: 0px;
  list-style: none;
  color: rgb(207, 218, 205);
   }
.menu li a {
  text-decoration: none;
  display: block;
  padding: 20px 12px;
  min-width: 107px;             /* Largeur minimale des liens */     margin: 0.5rem;               /* Marges externes (1 valeurs = 4 directions) */
  padding: 0.4rem 0;            /* Marges internes (2 valeurs = haut/bas et gauche/droite)*/
  text-align: center;           /* Centrage du texte */   
  background-color: #1ABC9C;    /* Couleur d'arriÃ¨re-plan */
  color: #fff;                  /* Couleur du texte */
  text-decoration: none;        /* Suppression du soulignement */
  border: 1px solid #fff;       /* Ajout d'une bordure */
  border-radius: 4px;           /* Arrondis des bordures */
  

 }
.menu li a:hover {
  background-color: rgb(181, 219, 183);
}

.has-sous-nav {
  position: relative;
}
.sous-nav {
list-style: none;
  display: none;
  position: absolute;
  top: 40px;
  left 0;
  background-color: #e2dfdf;
  width: max-content;
}
.has-sous-nav:hover .sous-nav {
  display: block;
}
.sous-nav li a:hover{
  background-color: rgb(181, 219, 183);
}
.has-sous-nav &gt; a::after{
  content:" &gt;";
  font-size: 12px;
}
.custom-slider { display: none; }
.slide-container {
  max-width: 800px;
  position: relative;
  margin: auto;
}
.prev, .next {
  cursor: pointer;
  position: absolute;        
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  background-color: rgba(0,0,0,0);
  transition: background-color 0.6s ease;
}
.prev{ left: 15px; }
.next { right: 15px; }
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.5);
}
.slide-text {
  position: absolute;
  color: #250757;
  font-size: 25px;
  font-weight: bold;
  padding: 15px;
  bottom: 30px;
  width: 100%;
  text-align: center;
}
.slide-index {
  color: #ffffff;
  font-size: 13px;
  padding: 15px;
  position: absolute;
  top: 0;
}
.slide-img{ 
  width: 100%; 
  height: 300px;
  object-fit: cover;
  object-position: center;
 }
.slide-dot{ text-align: center; }
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 20px 2px;
  background-color: #999999;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover { background-color: #111111; }
.fade {
  animation-name: fade;
  animation-duration: 1s;
}
@keyframes fade {
  from {opacity: 0} 
  to {opacity: 1}
}</pre></body></html>