| 1 |
progress { |
| 2 |
width: 100%; |
| 3 |
position: fixed; |
| 4 |
height: 10px; |
| 5 |
appearance: none; |
| 6 |
background-color: transparent; |
| 7 |
border: none; |
| 8 |
color: yellow; |
| 9 |
} |
| 10 |
|
| 11 |
progress::-webkit-progress-bar { |
| 12 |
background-color: transparent; |
| 13 |
} |
| 14 |
|
| 15 |
progress::-webkit-progress-value { |
| 16 |
background-color: yellow; |
| 17 |
} |
| 18 |
|
| 19 |
progress::-moz-progress-bar { |
| 20 |
background-color: yellow; |
| 21 |
} |
| 22 |
|
| 23 |
.easyel-reading-progress-bar { |
| 24 |
position: absolute; |
| 25 |
left: 0; |
| 26 |
top: 0; |
| 27 |
width: 100%; |
| 28 |
height: 4px; |
| 29 |
appearance: none; |
| 30 |
border: none; |
| 31 |
background: transparent; |
| 32 |
z-index: 9999999; |
| 33 |
} |
| 34 |
|
| 35 |
.easyel-reading-progress-bar { |
| 36 |
transition: opacity 0.2s ease; |
| 37 |
} |
| 38 |
|
| 39 |
|
| 40 |
.easyel-reading-progress-bar::-webkit-progress-value { |
| 41 |
background-color: var(--easyel-progress-color); |
| 42 |
} |
| 43 |
.easyel-reading-progress-bar::-moz-progress-bar { |
| 44 |
background-color: var(--easyel-progress-color); |
| 45 |
} |
| 46 |
|
| 47 |
.easyel-progress-wrapper { |
| 48 |
position: fixed; |
| 49 |
width: 100%; |
| 50 |
height: 4px; |
| 51 |
z-index: 9999999; |
| 52 |
} |
| 53 |
|
| 54 |
|