mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2025-06-08 14:31:28 +02:00
CSS files converted to Sass. Some style fixes. Created file with sponsors.
This commit is contained in:
parent
1a5c529669
commit
a45174a1e4
851 changed files with 19814 additions and 5533 deletions
51
_sass/vendor/animations/flippers/_flipOutY.scss
vendored
Normal file
51
_sass/vendor/animations/flippers/_flipOutY.scss
vendored
Normal file
|
@ -0,0 +1,51 @@
|
|||
@if $use-flipOutY == true {
|
||||
|
||||
@-webkit-keyframes flipOutY {
|
||||
0% {
|
||||
-webkit-transform: perspective($flipper-perspective) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: perspective($flipper-perspective) rotateY($flipper-degrees-max);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes flipOutY {
|
||||
0% {
|
||||
-moz-transform: perspective($flipper-perspective) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
-moz-transform: perspective($flipper-perspective) rotateY($flipper-degrees-max);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes flipOutY {
|
||||
0% {
|
||||
-o-transform: perspective($flipper-perspective) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
-o-transform: perspective($flipper-perspective) rotateY($flipper-degrees-max);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes flipOutY {
|
||||
0% {
|
||||
transform: perspective($flipper-perspective) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: perspective($flipper-perspective) rotateY($flipper-degrees-max);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.flipOutY {
|
||||
@include animate-prefixer(backface-visibility, visible !important);
|
||||
@include animate-prefixer(animation-name, flipOutY);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue