Permanent Marker Heading


Uncategorized

Updated Sep 17th, 2022

It may be too display and too informal.

Here was the OG styles for the Site Header text

.siteHeader__logoText a {
  /*  border: 1px dotted orangered; */
  /* font-family: var(--font-primary); */
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.1rem;
  cursor: pointer;
  position: relative;
  color: var(--tertiary);
  line-height: 1;

  @include atSmall {
    font-size: 1.8rem;
  }

  @include atMedium {
    font-size: 1.8rem;
  }

  @include atLarge {
    font-size: 2rem;
    padding-bottom: 0.25rem;
  }

  @include atXLarge {
    font-size: 2.5rem;
  }

  &:hover {
    text-decoration: none;
  }
}

.siteHeader__logoText:hover {
  color: var(--tertiary);
}