@charset "UTF-8";
.bordure-de-template {
  border-style: solid;
  border-width: 3px;
}
#imageBouton {
  border: none;
  background-color: transparent;
  outline: none;
}
#imageBouton:active {
  border: none;
  background-color: transparent;
  outline: none;
}
#imageBouton:focus {
  border: none;
}
/* Pour le bouton nuit jour : */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  display: none;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: #5ba02e;
}
input:focus + .slider {
  box-shadow: 0 0 1px #5ba02e;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
/* Pour la barre de recherche  */
* {
  box-sizing: border-box;
}
.listeRecherche {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.listeRecherche li a {
  /*J'ai commenter parce que c'était pas jolie visuellement*/
  /* border: 1px solid #ddd;
  margin-top: -1px; */
  /* evite une double bordure */
  /* background-color: #f6f6f6;
  padding: 12px;
  text-decoration: none;
  /* font-size: 18px;*/
  color: black;
  /*display: block */
}
.listeRecherche li a:hover:not(.header) {
  color: red;
}

/*# sourceMappingURL=styles.css.map*/