Sha256: 94b2a3aa44d84f33d8c67a5ed93d59e8af0ae6fba72218537a56095d4f021bc2

Contents?: true

Size: 284 Bytes

Versions: 3

Compression:

Stored size: 284 Bytes

Contents

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
rails_modular_admin-1.0.0 app/assets/node_modules/animate.css/source/attention_seekers/pulse.css
rails_modular_admin-0.4.0 app/assets/node_modules/animate.css/source/attention_seekers/pulse.css
rails-animations-1.0.0 app/assets/stylesheets/animations/attention_seekers/pulse.css