# wp-ultimate-post-grid/4.0.1/assets/css/admin/shared/loader.scss

WP Ultimate Post Grid, version 4.0.1. 17 lines.

- Page: https://pluginprobe.com/plugins/wp-ultimate-post-grid/4.0.1/code/assets/css/admin/shared/loader.scss
- Raw: https://pluginprobe.com/plugins/wp-ultimate-post-grid/4.0.1/raw/assets/css/admin/shared/loader.scss
- Modified: 2020-01-24T07:47:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-ultimate-post-grid/4.0.1/code/assets/css/admin/shared/loader.scss#L10-L20`.

```scss
.wpupg-admin-loader {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid rgba(200, 200, 200, 0.3);
    border-radius: 50%;
    border-top-color: #444;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}
  
@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
```
