Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (22 loc) · 316 Bytes

File metadata and controls

26 lines (22 loc) · 316 Bytes
input {
  display: none;
}

span {
  display: flex;
  align-items: center;
}

span::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

input:checked + span::before {
  background-color: green;
}

input:not(:checked) + span::before {
  background-color: gray;
}