
article .todo:before {
  position: absolute;
  left: -40px;
  color: #fff;
  width: 40px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  font-size: 12px;
  content: "TODO";
  background-color: rgb(216, 99, 99);
}

article .todo {
  background: rgb(228, 194, 194);
  border-left: 4px solid rgb(218, 137, 137);
  padding: 0.0015rem 1.5rem;
  position: relative;
  min-height: 3em;
  margin: 0.75rem 0;
  border-left-color: rgb(216, 99, 99);
  /* display: none; */
}

article .todo:hover {
  background: rgb(235, 148, 148);
}

/* article .todo {
  display: none;
} */
