Files
outline/src/components/LoadingIndicator/LoadingIndicator.scss
2016-05-29 11:01:48 -07:00

19 lines
297 B
SCSS

.loader {
position: fixed;
top: 0;
width: 100%;
height: 2px;
background-color: #03A9F4;
}
.loading {
background-color: #03A9F4;
width: 100%;
animation: loading 4s ease-in-out infinite;
}
@keyframes loading {
from {margin-left: -100%; z-index:100;}
to {margin-left: 100%; }
}