Sha256: 99a1e2160f920bb6a1830ec31411f6397b84165c1d1328f17a33605f57c0100d

Contents?: true

Size: 1.23 KB

Versions: 13

Compression:

Stored size: 1.23 KB

Contents

@if index($hamburger-types, stand) {
  /*
   * Stand
   */
  .hamburger--stand {
    .hamburger-inner {
      transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
                  background-color 0s 0.075s linear;

      &::before {
        transition: top 0.075s 0.075s ease-in,
                    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
      }

      &::after {
        transition: bottom 0.075s 0.075s ease-in,
                    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
      }
    }

    &.is-active {
      .hamburger-inner {
        transform: rotate(90deg);
        background-color: transparent;

        transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
                    background-color 0s 0.15s linear;

        &::before {
          top: 0;
          transform: rotate(-45deg);
          transition: top 0.075s 0.1s ease-out,
                      transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        &::after {
          bottom: 0;
          transform: rotate(45deg);
          transition: bottom 0.075s 0.1s ease-out,
                      transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
        }
      }
    }
  }
}

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
krad-3.7.5 _sass/hamburgers/types/_stand.scss
krad-3.7.4 _sass/hamburgers/types/_stand.scss
hamburgers-1.1.2 _sass/hamburgers/types/_stand.scss
hamburgers-1.1.0 _sass/hamburgers/types/_stand.scss
krad-3.7.3 _sass/hamburgers/types/_stand.scss
krad-3.7.2 _sass/hamburgers/types/_stand.scss
krad-3.7.1 _sass/hamburgers/types/_stand.scss
krad-3.7.0 _sass/hamburgers/types/_stand.scss
krad-3.6.0 _sass/hamburgers/types/_stand.scss
hamburgers-0.9.3 _sass/hamburgers/types/_stand.scss
hamburgers-0.9.1 _sass/hamburgers/types/_stand.scss
hamburgers-0.9.0 _sass/hamburgers/types/_stand.scss
hamburgers-0.8.1 _sass/hamburgers/types/_stand.scss