chihung
1/13/2019 - 2:57 PM

Ex title with animated border bottom image background

.title-border-bottom-brown {
  // display: inline;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  // line-height: 1.9;
  color: #483213;

  @media (min-width: $screen-sm-min) {
    // line-height: 2.083;
  }

  @media (max-width: $screen-sm-max) {
    padding-bottom: 3px;
    font-size: 20px;
  }

  .underline-animated {
    display: inline-block;
    margin-bottom: 18px;

    &:after {
      @include transition(all .8s ease);
      display: block;
      width: 0;
      height: 3px;
      margin-top: 3px;
      line-height: 1.1;
      background: url("../img/border-bottom-brown.png") 0 100% repeat-x;
      content: "";
    }

    &.active {
      &:after {
        width: 100%;
      }
    }
  }
}