Sha256: b543008eda3ecae1979302251715bf18f76bc12eeadc8ba05e6a79c5a905ee35
Contents?: true
Size: 1.21 KB
Versions: 5
Compression:
Stored size: 1.21 KB
Contents
/* EXTRAS * -------------------------- */ /* Stacked and layered icon */ /* Animated rotating icon */ .#{$wi-css-prefix}-spin { -webkit-animation: spin 2s infinite linear; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } @-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); } } @-o-keyframes spin { 0% { -o-transform: rotate(0deg); } 100% { -o-transform: rotate(359deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); } 100% { -ms-transform: rotate(359deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } // Icon rotations & flipping // ------------------------- .#{$wi-css-prefix}-rotate-90 { @include wi-icon-rotate(90deg, 1); } .#{$wi-css-prefix}-rotate-180 { @include wi-icon-rotate(180deg, 2); } .#{$wi-css-prefix}-rotate-270 { @include wi-icon-rotate(270deg, 3); } .#{$wi-css-prefix}-flip-horizontal { @include wi-icon-flip(-1, 1, 0); } .#{$wi-css-prefix}-flip-vertical { @include wi-icon-flip(1, -1, 2); }
Version data entries
5 entries across 5 versions & 1 rubygems