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.
30 lines
516 B
30 lines
516 B
/**
|
|
* jQuery Line Progressbar
|
|
* Author: KingRayhan<rayhan095@gmail.com>
|
|
* Author URL: https://electronthemes.com
|
|
* Version: 1.1.1
|
|
*/
|
|
|
|
/** Progressbar class css*/
|
|
.progressbar {
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
margin-bottom: 35px;
|
|
position: relative;
|
|
background-color: #EEEEEE;
|
|
/*box-shadow: inset 0px 1px 1px rgba(0,0,0,.1);*/
|
|
}
|
|
|
|
.proggress{
|
|
height: 8px;
|
|
width: 10px;
|
|
background-color: #3498db;
|
|
}
|
|
|
|
.percentCount{
|
|
float:right;
|
|
margin-top: 10px;
|
|
clear: both;
|
|
font-weight: bold;
|
|
font-family: Arial
|
|
}
|