| 1 |
@charset "UTF-8"; |
| 2 |
.wpupg-pagination-term, .wpupg-pagination-button { |
| 3 |
display: inline-block; |
| 4 |
cursor: pointer; |
| 5 |
position: relative; } |
| 6 |
|
| 7 |
@keyframes wpupg-spinner { |
| 8 |
to { |
| 9 |
transform: rotate(360deg); } } |
| 10 |
|
| 11 |
@-webkit-keyframes wpupg-spinner { |
| 12 |
to { |
| 13 |
-webkit-transform: rotate(360deg); } } |
| 14 |
|
| 15 |
.wpupg-spinner { |
| 16 |
min-width: 24px; |
| 17 |
min-height: 24px; } |
| 18 |
|
| 19 |
.wpupg-spinner:before { |
| 20 |
content: 'Loading…'; |
| 21 |
position: absolute; |
| 22 |
top: 50%; |
| 23 |
left: 50%; |
| 24 |
width: 16px; |
| 25 |
height: 16px; |
| 26 |
margin-top: -8px; |
| 27 |
margin-left: -8px; } |
| 28 |
|
| 29 |
.wpupg-spinner:not(:required):before { |
| 30 |
content: ''; |
| 31 |
border-radius: 50%; |
| 32 |
border-top: 2px solid #ccc; |
| 33 |
border-right: 2px solid transparent; |
| 34 |
animation: wpupg-spinner .6s linear infinite; |
| 35 |
-webkit-animation: wpupg-spinner .6s linear infinite; } |
| 36 |
|