9 lines
229 B
CSS
9 lines
229 B
CSS
|
/* default CSS variables */
|
||
|
.progress {
|
||
|
background: linear-gradient(to right, tomato var(--scroll), transparent 0);
|
||
|
background-repeat: no-repeat;
|
||
|
position: fixed;
|
||
|
width: 100%;
|
||
|
height: 4px;
|
||
|
z-index: 1000;
|
||
|
}
|