# e2pdf/1.32.32/css/e2pdf.frontend.global.css

E2Pdf – Export Pdf Tool for WordPress, version 1.32.32. 29 lines.

- Page: https://pluginprobe.com/plugins/e2pdf/1.32.32/code/css/e2pdf.frontend.global.css
- Raw: https://pluginprobe.com/plugins/e2pdf/1.32.32/raw/css/e2pdf.frontend.global.css
- Modified: 2026-06-25T06:38:38+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/e2pdf/1.32.32/code/css/e2pdf.frontend.global.css#L10-L20`.

```css
a.e2pdf-download-progress,
a.e2pdf-download-progress:focus,
a.e2pdf-download-progress:link,
a.e2pdf-download-progress:visited,
a.e2pdf-download-progress:hover,
#et-boc .et-l a.e2pdf-download-progress
{
    color: #808080;
    text-decoration: none;
    pointer-events: none;
    background: repeating-linear-gradient(
        45deg,
        rgba(128, 128, 128, 0.7) 0%,
        rgba(128, 128, 128, 0.7) 10px,
        rgba(255, 255, 255, 0.7) 10px,
        rgba(255, 255, 255, 0.7) 20px
        );
    background-size: 200% 200%;
    animation: e2pdf-download-animation 1.5s linear infinite;
}
@keyframes e2pdf-download-animation {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

```
