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
87
_sass/vendor/animations/bounce-exit/_bounceOut.scss
vendored
Normal file
87
_sass/vendor/animations/bounce-exit/_bounceOut.scss
vendored
Normal file
|
@ -0,0 +1,87 @@
|
|||
@if $use-bounceOut == true {
|
||||
|
||||
@-webkit-keyframes bounceOut {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
}
|
||||
|
||||
25% {
|
||||
-webkit-transform: scale(0.95);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
-webkit-transform: scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(0.3);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceOut {
|
||||
0% {
|
||||
-moz-transform: scale(1);
|
||||
}
|
||||
|
||||
25% {
|
||||
-moz-transform: scale(0.95);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
-moz-transform: scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: scale(0.3);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceOut {
|
||||
0% {
|
||||
-o-transform: scale(1);
|
||||
}
|
||||
|
||||
25% {
|
||||
-o-transform: scale(0.95);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
-o-transform: scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: scale(0.3);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceOut {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
25% {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: scale(0.3);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOut {
|
||||
@include animate-prefixer(animation-name, bounceOut);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue