madelinelise
8/20/2019 - 7:11 PM

Fancy List Mixins

@mixin numbered-checklist {
  list-style: none;

  li {
    @include font-stack-secondary;
    break-inside: avoid;
    counter-increment: counter;
    display: flex;
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 3rem;
    padding: 0 1rem;
    width: 100%;

    @include breakpoint($bp-sm) {
      padding: 0 4rem;
    }

    &::before {
      @include font-stack-primary;
      color: $color-pwc-rose;
      content: counter(counter);
      font-size: 5rem;
      font-weight: $font-weight-light;
      line-height: 0.75;
      margin-right: 1.5rem;
    }
  }
}

@mixin unordered-checklist {
  list-style: none;

  li {
    @include font-stack-secondary;
    break-inside: avoid;
    display: flex;
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 25px;
    padding: 0 1rem;

    @include breakpoint($bp-sm) {
      padding: 0 4rem;
    }
  }
}