Youtube play icon

by Nikaple

HTML

<input type="checkbox" id="play">
<label for="play"></label>

SCSS

body {
  background-color: #333;
}

input {
  display: none;
  &:checked + label::before {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid white;
    height: 12px;
  }
  &:checked + label::after {
    transform: translate(-2px, 6px);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid white;
    height: 0;
  }
}

label {
  display: block;
  position: relative;
  margin: 32px;
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 24px;
    border-left: 8px solid white;
    border-top: 0 solid transparent;
    border-bottom: 0 solid transparent;
    transition: 0.2s all;
  }
  &::after {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    width: 8px;
    height: 24px;
    border-left: 8px solid white;
    border-top: 0 solid transparent;
    border-bottom: 0 solid transparent;
    transition: 0.2s all;
  }
}