Skip to content

Instantly share code, notes, and snippets.

@obiPlabon
Created March 14, 2018 10:52
Show Gist options
  • Select an option

  • Save obiPlabon/a5ed55d8e6d1dd6332b511ea9fa12143 to your computer and use it in GitHub Desktop.

Select an option

Save obiPlabon/a5ed55d8e6d1dd6332b511ea9fa12143 to your computer and use it in GitHub Desktop.
@-webkit-keyframes spin {
100% {
-webkit-transform:rotate(360deg);
transform:rotate(360deg)
}
}
@keyframes spin {
100% {
-webkit-transform:rotate(360deg);
transform:rotate(360deg)
}
}
.woocommerce .blockUI.blockOverlay {
position:relative
}
.woocommerce .blockUI.blockOverlay::before {
height:1em;
width:1em;
display:block;
position:absolute;
top:50%;
left:50%;
margin-left:-.5em;
margin-top:-.5em;
content:'';
-webkit-animation:spin 1s ease-in-out infinite;
animation:spin 1s ease-in-out infinite;
background:url("images/icons/loader.svg") center center;
background-size:cover;
line-height:1;
text-align:center;
font-size:2em;
color:rgba(0,0,0,.75)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment