CSS files converted to Sass. Some style fixes. Created file with sponsors.

This commit is contained in:
Oleh Zasadnyy 2014-08-08 01:23:36 +03:00
parent 1a5c529669
commit a45174a1e4
851 changed files with 19814 additions and 5533 deletions

View file

@ -0,0 +1,52 @@
@if $use-flipOutX == true {
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective($flipper-perspective) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective($flipper-perspective) rotateX($flipper-degrees-max);
opacity: 0;
}
}
@-moz-keyframes flipOutX {
0% {
-moz-transform: perspective($flipper-perspective) rotateX(0deg);
opacity: 1;
}
100% {
-moz-transform: perspective($flipper-perspective) rotateX($flipper-degrees-max);
opacity: 0;
}
}
@-o-keyframes flipOutX {
0% {
-o-transform: perspective($flipper-perspective) rotateX(0deg);
opacity: 1;
}
100% {
-o-transform: perspective($flipper-perspective) rotateX($flipper-degrees-max);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
transform: perspective($flipper-perspective) rotateX(0deg);
opacity: 1;
}
100% {
transform: perspective($flipper-perspective) rotateX($flipper-degrees-max);
opacity: 0;
}
}
.flipOutX {
@include animate-prefixer(animation-name, flipOutX);
@include animate-prefixer(backface-visibility, visible !important);
}
}