Files

31 lines
615 B
Plaintext

.LoadingBar {
pointer-events: none;
transition: 400ms linear all;
.LoadingBar-Bar {
background: @color-primary;
height: 2px;
position: fixed;
top: 0;
left: 0;
z-index: 10000;
display: none;
width: 100%;
border-radius: 0 1px 1px 0;
transition: width 350ms;
}
.LoadingBar-Shadow {
content: '';
position: absolute;
top: 0;
right: 0;
width: 70px;
height: 2px;
border-radius: 50%;
opacity: .45;
box-shadow: @color-primary 1px 0 6px 1px;
}
}