Release 5.0.0-alpha7

This commit is contained in:
robmadole
2017-07-28 14:11:37 -05:00
committed by Rob Madole
parent dfd21c9399
commit 7f3e9f7300
419 changed files with 18972 additions and 10228 deletions

19
less/_animated.less Normal file
View File

@@ -0,0 +1,19 @@
// Animated Icons
// --------------------------
.@{fa-css-prefix}-spin {
animation: fa-spin 2s infinite linear;
}
.@{fa-css-prefix}-pulse {
animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}