1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 13:42:30 +02:00
cdt/doc/org.eclipse.cdt.doc.user/font-awesome/scss/_animated.scss
Jonah Graham f019b916a6 Font Awesome 4.7
As downloaded from https://fontawesome.com/v4/assets/font-awesome-4.7.0.zip
Will be used in next commit to remove remote use of font awesome
in asciidoctor:
https://docs.asciidoctor.org/asciidoctor/latest/html-backend/local-font-awesome/
2025-01-14 13:05:53 -05:00

34 lines
715 B
SCSS

// Spinning Icons
// --------------------------
.#{$fa-css-prefix}-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
.#{$fa-css-prefix}-pulse {
-webkit-animation: fa-spin 1s infinite steps(8);
animation: fa-spin 1s infinite steps(8);
}
@-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);
}
}