| 1 |
/** |
| 2 |
* Docket Cache. |
| 3 |
* |
| 4 |
* @author Nawawi Jamili |
| 5 |
* @license MIT |
| 6 |
* |
| 7 |
* @see https://github.com/nawawi/docket-cache |
| 8 |
*/ |
| 9 |
@keyframes docket-cache-page-load { |
| 10 |
from { |
| 11 |
background-color: #ffc422; |
| 12 |
} |
| 13 |
|
| 14 |
to { |
| 15 |
background-color: #c0392b; |
| 16 |
} |
| 17 |
} |
| 18 |
|
| 19 |
.docket-cache-page-loading::before { |
| 20 |
content: " "; |
| 21 |
display: block; |
| 22 |
position: fixed; |
| 23 |
z-index: 99999999; |
| 24 |
height: 2px; |
| 25 |
width: 100%; |
| 26 |
top: 0; |
| 27 |
left: 0; |
| 28 |
background-color: #06D; |
| 29 |
animation: docket-cache-page-load infinite ease-out 2s; |
| 30 |
box-shadow: 0 2px 2px rgba(0, 0, 0, .2); |
| 31 |
} |