Fork-Awesome/src/doc/assets/fork-awesome/scss/animated.scss.txt
todd 6a5ed1863d Renamed .scss files so they are handled properly by Jekyll
Jekyll was ignoring all of the files in src/doc/assets/fork-awesome/scss
that began with an underscore when copying to _site.

Removed the underscore and appended `.txt` so they would be copied to
_site

We put the underscore back and remove the .txt extension in the Makefile
2019-02-25 05:28:41 -05:00

37 lines
813 B
Plaintext

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