Sha256: 420f98c77645b14a2eaa61c8fdf28bfc3141f96a84185602aa45fa197320c2ad

Contents?: true

Size: 1.59 KB

Versions: 12

Compression:

Stored size: 1.59 KB

Contents

//ajax spinner

.spinner{
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  z-index: 9999;
  display: none;
  background-color: rgba(134, 134, 134, 0.66);;

  .ajax-spinner{
    width: 30px;
    height: 30px;
    margin: 100px auto;
    border: 8px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    box-shadow: 0 0 25px 2px #eee;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -ms-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
  }
}

@-webkit-keyframes spin
  {
      from { -webkit-transform: rotate(0deg); opacity: 0.4; }
      50%  { -webkit-transform: rotate(180deg); opacity: 1; }
      to   { -webkit-transform: rotate(360deg); opacity: 0.4; }
  }

  @-moz-keyframes spin
  {
      from { -moz-transform: rotate(0deg); opacity: 0.4; }
      50%  { -moz-transform: rotate(180deg); opacity: 1; }
      to   { -moz-transform: rotate(360deg); opacity: 0.4; }
  }

  @-ms-keyframes spin
  {
      from { -ms-transform: rotate(0deg); opacity: 0.4; }
      50%  { -ms-transform: rotate(180deg); opacity: 1; }
      to   { -ms-transform: rotate(360deg); opacity: 0.4; }
  }

  @-o-keyframes spin
  {
      from { -o-transform: rotate(0deg); opacity: 0.4; }
      50%  { -o-transform: rotate(180deg); opacity: 1; }
      to   { -o-transform: rotate(360deg); opacity: 0.4; }
  }

  @keyframes spin
  {
      from { transform: rotate(0deg); opacity: 0.2; }
      50%  { transform: rotate(180deg); opacity: 1; }
      to   { transform: rotate(360deg); opacity: 0.2; }
  }

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
waterfall_bourbon_neat_rails-1.2.0 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-1.1.5 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-1.1.4 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-1.1.3 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-1.1.2 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-1.1.1 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-1.1.0 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-1.0.3 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-1.0.2 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-1.0.1 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-1.0 app/assets/stylesheets/custom/components/_ajax_spinner.scss
waterfall_bourbon_neat_rails-0.2.0.0 app/assets/stylesheets/custom/components/_ajax_spinner.scss