Skip to content

Instantly share code, notes, and snippets.

@arbinish
Created November 29, 2014 10:45
Show Gist options
  • Save arbinish/c34b737433a204567780 to your computer and use it in GitHub Desktop.
Save arbinish/c34b737433a204567780 to your computer and use it in GitHub Desktop.
Quick CSS snipper for displaying spinner
#loader {
position: absolute;
background-repeat: no-repeat;
background-position: 50% 50%;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(255, 255, 255, 1);
z-index: 99;
background-image: url('/static/loader.gif');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment