[enh] infinite scroll

resolves #649
This commit is contained in:
David A Roberts 2016-08-11 12:21:28 +10:00
parent 975bd5beb5
commit 678b9e994a
4 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,16 @@
@keyframes rotate-forever {
0% { transform: rotate(0deg) }
100% { transform: rotate(360deg) }
}
.loading-spinner {
animation-duration: 0.75s;
animation-iteration-count: infinite;
animation-name: rotate-forever;
animation-timing-function: linear;
height: 30px;
width: 30px;
border: 8px solid #666;
border-right-color: transparent;
border-radius: 50% !important;
margin: 0 auto;
}