File "progress-bar.less"
Full Path: /home/ichhrkpd/public_html/less/less-eduPoint/shortcodes/progress-bar.less
File size: 914 bytes
MIME-type: text/plain
Charset: utf-8
/*
* Shortcode: Progress-Bar.less
* -----------------------------------------------
*/
.progress-item {
margin-top: 20px;
.progress {
background-color: @white-f8;
box-shadow: 0 0 1px fade(@black, 40%) inset;
border-radius: 0;
height: 10px;
margin-bottom: 15px;
overflow: visible;
}
.progress-bar {
font-size: 11px;
padding-left: 10px;
position: relative;
text-align: left;
width: 0;
line-height: 18px;
.transition(all 1s ease 0s);
.percent {
background: none repeat scroll 0 0 @black-555;
border-radius: 8px 0 0;
padding: 3px 5px;
position: absolute;
right: 0;
top: -30px;
}
}
&.progress-white {
.progress {
padding: 2px;
}
}
&.style2 {
.progress {
height: 25px;
}
.progress-bar {
.percent {
background: none;
color: @black-555;
font-size: 14px;
}
}
}
}