/* commentaire pour le CSS */
body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.container {
  display: grid;
  grid-template-columns: 1000px;
  grid-template-rows: repeat(8, 100px) auto;
}
.container--largeurVariable {
  grid-template-columns: minmax(500px, 1000px);
  grid-template-rows: repeat(2, 100px) auto;
}

article {
  margin-top: 2px;
  display: flex;
}

.example__comment {
  border: 1px dashed #d8d8d8;
  margin-left: 2px;
  padding: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 30%;
  line-height: 80%;
}
.example__comment .style_important {
  color: crimson;
}
.example__result {
  border: 1px solid black;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 70%;
}
.example__result p {
  margin-bottom: 0rem;
}
.example__result .texteA {
  background-color: aqua;
}
.example__result .texteB {
  background-color: burlywood;
}
.example__result--center_horizontally {
  display: flex;
  justify-content: center;
}
.example__result--center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.example__result--marginLeft {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.example__result--paddingLeft {
  padding-left: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.example__result--space-evenly {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.example__result--space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.example__result--space-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.example__result--texte-image {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.example__result--texte-image img {
  width: 200px;
  padding: 1rem;
  margin: 1rem;
  border: solid 5px coral;
  height: auto;
}/*# sourceMappingURL=style.css.map */