Sha256: 443e3aa61188187fd405b546116d0be774511a4fce2e333fffbdf641d2434b0c

Contents?: true

Size: 584 Bytes

Versions: 182

Compression:

Stored size: 584 Bytes

Contents

.pulse {
  &::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    transition: opacity .3s, transform .3s;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
  }

  overflow: visible;
  position: relative;
}

@keyframes pulse-animation {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

Version data entries

182 entries across 182 versions & 6 rubygems

Version Path
j1-template-2023.4.0 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.3.3 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.3.2 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.3.1 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.3.0 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.2.7 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.2.6 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.2.5 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.2.4 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.2.3 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.2.2 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.2.1 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.2.0 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.1.0 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.0.17 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.0.16 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.0.15 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.0.14 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.0.13 assets/themes/j1/modules/materialize/scss/components/_pulse.scss
j1-template-2023.0.12 assets/themes/j1/modules/materialize/scss/components/_pulse.scss