15 lines
342 B
Plaintext
15 lines
342 B
Plaintext
.progress-bar-container {
|
|
width: 80px;
|
|
position: relative;
|
|
height: 7px;
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progress-bar-fill {
|
|
width: 50%;
|
|
height: 100%;
|
|
background-color: #00FF00;
|
|
border-radius: 10px 0 0 10px; /* Rounded corners on the left side */
|
|
} |