cronapp-framework-js
Version:
Javascript library for CronApp's projects
31 lines (26 loc) • 680 B
CSS
.progress {
background-color: #f5f5f5;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
background-color: #2fa4e7;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
transition: width 0.6s ease;
}
.progress-bar-success {
background-color: #73a839;
}
.progress-bar-info {
background-color: #033c73;
}
.progress-bar-warning {
background-color: #dd5600;
}
.progress-bar-danger {
background-color: #c71c22;
}