21 lines
278 B
CSS
Executable File
21 lines
278 B
CSS
Executable File
.progress {
|
|
position: relative;
|
|
width: 400px;
|
|
border: 1px solid #ddd;
|
|
padding: 1px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.bar {
|
|
background-color: #94c1e8;
|
|
width: 0%;
|
|
height: 20px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.percent {
|
|
position: absolute;
|
|
display: inline-block;
|
|
top: 3px;
|
|
left: 48%;
|
|
} |