PHP Classes

File: assets/font-awesome-4.2.0/scss/_spinning.scss

Recommend this page to a friend!
  Classes of Kishor Mali   PHP User Feedback System   assets/font-awesome-4.2.0/scss/_spinning.scss   Download  
File: assets/font-awesome-4.2.0/scss/_spinning.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP User Feedback System
Application to record feedback from customers
Author: By
Last change:
Date: 3 years ago
Size: 583 bytes
 

Contents

Class file image Download
// 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); } }