Created
November 29, 2014 10:45
-
-
Save arbinish/c34b737433a204567780 to your computer and use it in GitHub Desktop.
Quick CSS snipper for displaying spinner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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