Catherine of Siena - Orange Park, FL

Footer - Animation - hover over links & underline appears from left side (teal)


Comments & Events

Kyle Sullivan, Web Development at Diocesan
I was able to achieve the desired effect with the following code in /sass/site/primary/footers/_footerFourColumn.scss.
      a {
        font-size: 1.25rem;
        &:hover, &:focus {
          color: $tertiary;
          text-decoration: none;
          p, span {
            color: $tertiary;
          }
          &::after {
            transform: scaleX(1);
            transform-origin: 0% 50%;
          }
        }

        &::after {
          display: block;
          content: "";
          border-bottom: 3px solid $primary;
          transform: scaleX(0);
          transition: transform 250ms ease-in-out;
        }
      }
Kyle Sullivan, Web Development at Diocesan
Kyle Sullivan completed this to-do.