Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
44 righe
636 B
44 righe
636 B
5 anni fa
|
//
|
||
|
// Progress bars
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
// THE BARS
|
||
|
// --------
|
||
|
|
||
|
// Outer container
|
||
|
.progress-hiden {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.progress.vertical {
|
||
|
width: $baseLineHeight;
|
||
|
height: 100%;
|
||
|
margin-right: $baseLineHeight;
|
||
|
}
|
||
|
|
||
|
// Bar of progress
|
||
|
.progress .bar {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.progress .bar p {
|
||
|
margin: 0;
|
||
|
color: $white;
|
||
|
font-size: 11px;
|
||
|
text-align: center;
|
||
|
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
|
||
|
}
|
||
|
|
||
|
.progress.vertical .bar {
|
||
|
width: 100%;
|
||
|
height: 0;
|
||
|
}
|
||
|
|
||
|
.progress.vertical.bottom {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.progress.vertical.bottom .bar {
|
||
|
position: absolute;
|
||
|
bottom: 0;
|
||
|
}
|