tenna
Version:
A node js application that lets you easily stream most videos from any PC/laptop in your home network, to other devices in the network with a browser.
36 lines (29 loc) • 634 B
text/less
//
// Progress bars
// --------------------------------------------------
// Outer container
.progress {
background: mix(@brand-primary, white, 10%);
border-radius: 32px;
height: @progress-height;
.box-shadow(none);
}
// Bar of progress
.progress-bar {
background: @brand-secondary;
.box-shadow(none);
}
// Variations
// -------------------------
.progress-bar-success {
background-color: @brand-success;
}
.progress-bar-warning {
background-color: @brand-warning;
}
.progress-bar-danger {
background-color: @brand-danger;
}
.progress-bar-info {
background-color: @brand-info;
}