rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

_spinning.scss (583B)


      1 // Spinning Icons
      2 // --------------------------
      3 
      4 .#{$fa-css-prefix}-spin {
      5   -webkit-animation: fa-spin 2s infinite linear;
      6           animation: fa-spin 2s infinite linear;
      7 }
      8 
      9 @-webkit-keyframes fa-spin {
     10   0% {
     11     -webkit-transform: rotate(0deg);
     12             transform: rotate(0deg);
     13   }
     14   100% {
     15     -webkit-transform: rotate(359deg);
     16             transform: rotate(359deg);
     17   }
     18 }
     19 
     20 @keyframes fa-spin {
     21   0% {
     22     -webkit-transform: rotate(0deg);
     23             transform: rotate(0deg);
     24   }
     25   100% {
     26     -webkit-transform: rotate(359deg);
     27             transform: rotate(359deg);
     28   }
     29 }