You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
.progress_bar .pro-bar {
|
|
background: hsl(0, 0%, 97%);
|
|
box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.1) inset;
|
|
height: 4px;
|
|
width: 200px;
|
|
margin-bottom: 15px;
|
|
margin-top: 10px;
|
|
position: relative;
|
|
}
|
|
.progress_bar .progress_bar_title{
|
|
color: hsl(218, 4%, 50%);
|
|
font-size: 15px;
|
|
font-weight: 300;
|
|
position: relative;
|
|
top: -28px;
|
|
z-index: 1;
|
|
}
|
|
.progress_bar .progress_number {
|
|
float: right;
|
|
margin-top: -6px;
|
|
margin-right: -50px;
|
|
}
|
|
.progress_bar .progress-bar-inner {
|
|
background-color: green;
|
|
display: block;
|
|
width: 0;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
transition: width 1s linear 0s;
|
|
}
|
|
.progress_bar .progress-bar-inner:before {
|
|
content: "";
|
|
background-color: hsl(0, 0%, 100%);
|
|
border-radius: 50%;
|
|
width: 4px;
|
|
height: 4px;
|
|
position: absolute;
|
|
right: 1px;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
.progress_bar .progress-bar-inner:after {
|
|
content: "";
|
|
width: 14px;
|
|
height: 14px;
|
|
background-color: inherit;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
right: -4px;
|
|
top: -5px;
|
|
}
|