cobuild-angular-stack
Version:
Base stack angular sass jade gulp
44 lines (40 loc) • 1.12 kB
text/less
@bar-regular: rgb(252, 118, 103);
@bar-no-full-account: rgb(0,51,3);
#loading-bar {
.bar {
background: @bar-regular ;
height: 3px;
}
.peg {
-moz-box-shadow: @bar-regular 1px 0 6px 1px ;
-ms-box-shadow: @bar-regular 1px 0 6px 1px ;
-webkit-box-shadow: @bar-regular 1px 0 6px 1px ;
box-shadow: @bar-regular 1px 0 6px 1px ;
}
}
#loading-bar-spinner {
.spinner-icon {
border-top-color: @bar-regular;
border-left-color: @bar-regular;
}
}
.no-full-account{
#loading-bar {
.bar {
background: @bar-no-full-account ;
height: 3px;
}
.peg {
-moz-box-shadow: @bar-no-full-account 1px 0 6px 1px ;
-ms-box-shadow: @bar-no-full-account 1px 0 6px 1px ;
-webkit-box-shadow: @bar-no-full-account 1px 0 6px 1px ;
box-shadow: @bar-no-full-account 1px 0 6px 1px ;
}
}
#loading-bar-spinner {
.spinner-icon {
border-top-color: @bar-no-full-account;
border-left-color: @bar-no-full-account;
}
}
}