socialnetworknews-web

A open-source Paper.li clone
git clone git://archive.git.mtrnord.blog/SocialNetworkNews/socialnetworknews-web.git
Log | Files | Refs | README | LICENSE

spinner.component.scss (590B)


      1 .sk-scaleout {
      2   top: 50%;
      3   margin: auto;
      4   width: 40px;
      5   height: 40px;
      6   position: relative;
      7   text-align: center;
      8   background-color: #333;
      9   -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
     10   animation: sk-scaleout  1.0s infinite ease-in-out;
     11 }
     12 
     13 @-webkit-keyframes sk-scaleout {
     14   0% { -webkit-transform: scale(0) }
     15   100% {
     16     -webkit-transform: scale(1.0);
     17     opacity: 0;
     18   }
     19 }
     20 
     21 @keyframes sk-scaleout {
     22   0% {
     23     -webkit-transform: scale(0);
     24     transform: scale(0);
     25   } 100% {
     26       -webkit-transform: scale(1.0);
     27       transform: scale(1.0);
     28       opacity: 0;
     29     }
     30 }