23 lines
370 B
SCSS
23 lines
370 B
SCSS
/* Bootstrap Progress */
|
|
|
|
.progress {
|
|
box-shadow: inset 2px 2px 5px #b8b9be, inset -3px -3px 7px #fff;
|
|
@include border-radius(3px);
|
|
height: 8px;
|
|
.progress-bar {
|
|
@include border-radius(3px);
|
|
}
|
|
|
|
&.progress-sm{
|
|
height: 0.375rem;
|
|
}
|
|
&.progress-md {
|
|
height: 8px;
|
|
}
|
|
&.progress-lg {
|
|
height: 15px;
|
|
}
|
|
&.progress-xl {
|
|
height: 18px;
|
|
}
|
|
} |