| 1 |
a.e2pdf-download-progress, |
| 2 |
a.e2pdf-download-progress:focus, |
| 3 |
a.e2pdf-download-progress:link, |
| 4 |
a.e2pdf-download-progress:visited, |
| 5 |
a.e2pdf-download-progress:hover, |
| 6 |
#et-boc .et-l a.e2pdf-download-progress |
| 7 |
{ |
| 8 |
color: #808080; |
| 9 |
text-decoration: none; |
| 10 |
pointer-events: none; |
| 11 |
background: repeating-linear-gradient( |
| 12 |
45deg, |
| 13 |
rgba(128, 128, 128, 0.7) 0%, |
| 14 |
rgba(128, 128, 128, 0.7) 10px, |
| 15 |
rgba(255, 255, 255, 0.7) 10px, |
| 16 |
rgba(255, 255, 255, 0.7) 20px |
| 17 |
); |
| 18 |
background-size: 200% 200%; |
| 19 |
animation: e2pdf-download-animation 1.5s linear infinite; |
| 20 |
} |
| 21 |
@keyframes e2pdf-download-animation { |
| 22 |
0% { |
| 23 |
background-position: 0% 0%; |
| 24 |
} |
| 25 |
100% { |
| 26 |
background-position: 100% 100%; |
| 27 |
} |
| 28 |
} |
| 29 |
|