Initial upload of legacy repository

This commit is contained in:
Ethan N. Paul
2017-01-30 12:29:45 -05:00
commit 4eff0ac39b
344 changed files with 102254 additions and 0 deletions

29
new/font-awesome/scss/_spinning.scss vendored Normal file
View File

@@ -0,0 +1,29 @@
// Spinning Icons
// --------------------------
.#{$fa-css-prefix}-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}