Sha256: f9f62859865ace4184cdd3ee598cdcb12ac0fca543338ba27df505d7de37c410

Contents?: true

Size: 1.24 KB

Versions: 14

Compression:

Stored size: 1.24 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 !important;

        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

14 entries across 14 versions & 2 rubygems

Version Path
timequake-2.1.0 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.11 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.10 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.9 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.8 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.7 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.6 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.5 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.4 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.3 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.2 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.1 app/assets/stylesheets/hamburgers/types/_stand.scss
timequake-2.0.0 app/assets/stylesheets/hamburgers/types/_stand.scss
hamburgers-1.1.3 _sass/hamburgers/types/_stand.scss