| 1 |
.easyel-reading-progress-bar { |
| 2 |
position: absolute; |
| 3 |
left: 0; |
| 4 |
top: 0; |
| 5 |
width: 100%; |
| 6 |
height: 4px; |
| 7 |
appearance: none; |
| 8 |
-webkit-appearance: none; |
| 9 |
-moz-appearance: none; |
| 10 |
border: none; |
| 11 |
background: transparent; |
| 12 |
z-index: 9999999; |
| 13 |
transition: opacity 0.2s ease; |
| 14 |
} |
| 15 |
|
| 16 |
.easyel-reading-progress-bar::-webkit-progress-bar { |
| 17 |
background-color: transparent; |
| 18 |
} |
| 19 |
|
| 20 |
.easyel-reading-progress-bar::-webkit-progress-value { |
| 21 |
background-color: var(--easyel-progress-color); |
| 22 |
} |
| 23 |
|
| 24 |
.easyel-reading-progress-bar::-moz-progress-bar { |
| 25 |
background-color: var(--easyel-progress-color); |
| 26 |
} |
| 27 |
|
| 28 |
.easyel-progress-wrapper { |
| 29 |
position: fixed; |
| 30 |
left: 0; |
| 31 |
width: 100%; |
| 32 |
height: 4px; |
| 33 |
z-index: 9999999; |
| 34 |
} |
| 35 |
|