Created
March 14, 2018 10:52
-
-
Save obiPlabon/a5ed55d8e6d1dd6332b511ea9fa12143 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| @-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