Sha256: 50c7d5b0c89063eb32cbc276ef72b0d111fc6938683a3568d1d163580367c438

Contents?: true

Size: 717 Bytes

Versions: 5

Compression:

Stored size: 717 Bytes

Contents

.#{$wi-css-prefix}-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

@-moz-keyframes spin {
  0% { -moz-transform: rotate(0deg); }
  100% { -moz-transform: rotate(359deg); }
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(359deg); }
}
@-o-keyframes spin {
  0% { -o-transform: rotate(0deg); }
  100% { -o-transform: rotate(359deg); }
}
@-ms-keyframes spin {
  0% { -ms-transform: rotate(0deg); }
  100% { -ms-transform: rotate(359deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(359deg); }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
weather-icons-rails-0.1.1 app/assets/stylesheets/weather-icons/_spinning.css.scss
weather-icons-rails-0.1.0 app/assets/stylesheets/weather-icons/_spinning.css.scss
weather-icons-rails-0.0.3.3 app/assets/stylesheets/weather-icons/_spinning.css.scss
weather-icons-rails-0.0.3 app/assets/stylesheets/weather-icons/_spinning.css.scss
weather-icons-rails-0.0.2 app/assets/stylesheets/weather-icons/_spinning.css.scss