Removing spinner

It has seemed a little excessive since adding the progress bar
This commit is contained in:
Jeff Avallone
2014-12-29 17:55:57 -05:00
parent d538d7b62a
commit f83e0c6ea8
3 changed files with 0 additions and 54 deletions
-44
View File
@@ -97,45 +97,6 @@ header {
}
}
.spinner {
margin: 10px auto;
width: rhythm(2);
height: rhythm(2);
position: relative;
text-align: center;
@include animation(rotate 3.0s infinite linear);
div {
width: 40%;
height: 40%;
display: inline-block;
position: absolute;
border: 3px solid $green;
@include border-radius(50%);
@include animation(bounce 2.0s infinite ease-in-out);
}
:first-child {
top: 0;
}
:last-child {
bottom: 0px;
@include animation-delay(-1.0s);
}
}
@include keyframes(rotate) {
100% { @include transform(rotate(360deg)); }
}
@include keyframes(bounce) {
0%, 100% { @include transform(scale(0.0)); }
50% { @include transform(scale(1.0)); }
}
#content {
padding: rhythm(1);
@@ -251,11 +212,6 @@ header {
&.loading {
min-width: 100px;
.spinner {
left: 50%;
margin-left: -24px;
}
.svg {
position: absolute;
top: -10000px;