blakenoll
7/26/2019 - 8:09 AM

blurredBackground

Blurred Background #css

.class {
    text-align: center;
    border-radius: 20px;
    border: 2px solid var(--green);
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
    position: relative;
    &:before {
      position: absolute;
      content: "";
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: -1;
      display: block;
      background: var(--clear-grey);
      filter: blur(5px);
    }
  }