315 lines
6.0 KiB
CSS
315 lines
6.0 KiB
CSS
@charset "UTF-8";
|
|
|
|
.animated {
|
|
-webkit-animation-duration: 1s;
|
|
animation-duration: 1s;
|
|
-webkit-animation-fill-mode: both;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
.animated-quick {
|
|
-webkit-animation-duration: 0.5s;
|
|
animation-duration: 0.5s;
|
|
-webkit-animation-fill-mode: both;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
@-webkit-keyframes badbounce {
|
|
0%,100% {
|
|
-webkit-transform: translateY(0px);
|
|
}
|
|
10% {
|
|
-webkit-transform: translateY(6px);
|
|
}
|
|
30% {
|
|
-webkit-transform: translateY(-4px);
|
|
}
|
|
70% {
|
|
-webkit-transform: translateY(3px);
|
|
}
|
|
90% {
|
|
-webkit-transform: translateY(-2px);
|
|
}
|
|
}
|
|
@-moz-keyframes badbounce {
|
|
0%,100% {
|
|
-moz-transform: translateY(0px);
|
|
}
|
|
10% {
|
|
-moz-transform: translateY(6px);
|
|
}
|
|
30% {
|
|
-moz-transform: translateY(-4px);
|
|
}
|
|
70% {
|
|
-moz-transform: translateY(3px);
|
|
}
|
|
90% {
|
|
-moz-transform: translateY(-2px);
|
|
}
|
|
}
|
|
@keyframes badbounce {
|
|
0%,100% {
|
|
-webkit-transform: translateY(0px);
|
|
-moz-transform: translateY(0px);
|
|
-ms-transform: translateY(0px);
|
|
-o-transform: translateY(0px);
|
|
transform: translateY(0px);
|
|
}
|
|
10% {
|
|
-webkit-transform: translateY(6px);
|
|
-moz-transform: translateY(6px);
|
|
-ms-transform: translateY(6px);
|
|
-o-transform: translateY(6px);
|
|
transform: translateY(6px);
|
|
}
|
|
30% {
|
|
-webkit-transform: translateY(-4px);
|
|
-moz-transform: translateY(-4px);
|
|
-ms-transform: translateY(-4px);
|
|
-o-transform: translateY(-4px);
|
|
transform: translateY(-4px);
|
|
}
|
|
70% {
|
|
-webkit-transform: translateY(3px);
|
|
-moz-transform: translateY(3px);
|
|
-ms-transform: translateY(3px);
|
|
-o-transform: translateY(3px);
|
|
transform: translateY(3px);
|
|
}
|
|
90% {
|
|
-webkit-transform: translateY(-2px);
|
|
-moz-transform: translateY(-2px);
|
|
-ms-transform: translateY(-2px);
|
|
-o-transform: translateY(-2px);
|
|
transform: translateY(-2px);
|
|
}
|
|
}
|
|
.bounce {
|
|
-webkit-animation: badbounce 1s linear;
|
|
-moz-animation: badbounce 1s linear;
|
|
animation: badbounce 1s linear;
|
|
}
|
|
|
|
@-webkit-keyframes fadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.fadeIn {
|
|
-webkit-animation-name: fadeIn;
|
|
animation-name: fadeIn;
|
|
}
|
|
|
|
@-webkit-keyframes fadeInLeft {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(-60%, 0, 0);
|
|
transform: translate3d(-60%, 0, 0);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeInLeft {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(-60%, 0, 0);
|
|
transform: translate3d(-60%, 0, 0);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.fadeInLeft {
|
|
-webkit-animation-name: fadeInLeft;
|
|
animation-name: fadeInLeft;
|
|
}
|
|
|
|
@-webkit-keyframes fadeOutLeft {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(-60%, 0, 0);
|
|
transform: translate3d(-60%, 0, 0);
|
|
}
|
|
}
|
|
|
|
@keyframes fadeOutLeft {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(-60%, 0, 0);
|
|
transform: translate3d(-60%, 0, 0);
|
|
}
|
|
}
|
|
|
|
.fadeOutLeft {
|
|
-webkit-animation-name: fadeOutLeft;
|
|
animation-name: fadeOutLeft;
|
|
}
|
|
|
|
@-webkit-keyframes fadeInDown {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(0, -60%, 0);
|
|
transform: translate3d(0, -60%, 0);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeInDown {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(0, -10%, 0);
|
|
transform: translate3d(0, -10%, 0);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.fadeInDown {
|
|
-webkit-animation-name: fadeInDown;
|
|
animation-name: fadeInDown;
|
|
}
|
|
|
|
@-webkit-keyframes zoomIn {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: scale3d(.3, .3, .3);
|
|
transform: scale3d(.3, .3, .3);
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes zoomIn {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: scale3d(.3, .3, .3);
|
|
transform: scale3d(.3, .3, .3);
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.zoomIn {
|
|
-webkit-animation-name: zoomIn;
|
|
animation-name: zoomIn;
|
|
}
|
|
|
|
@-webkit-keyframes flipInX {
|
|
0% {
|
|
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
-webkit-animation-timing-function: ease-in;
|
|
animation-timing-function: ease-in;
|
|
opacity: 0;
|
|
}
|
|
|
|
40% {
|
|
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
-webkit-animation-timing-function: ease-in;
|
|
animation-timing-function: ease-in;
|
|
}
|
|
|
|
60% {
|
|
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
|
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
|
opacity: 1;
|
|
}
|
|
|
|
80% {
|
|
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
|
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: perspective(400px);
|
|
transform: perspective(400px);
|
|
}
|
|
}
|
|
|
|
@keyframes flipInX {
|
|
0% {
|
|
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
-webkit-animation-timing-function: ease-in;
|
|
animation-timing-function: ease-in;
|
|
opacity: 0;
|
|
}
|
|
|
|
40% {
|
|
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
-webkit-animation-timing-function: ease-in;
|
|
animation-timing-function: ease-in;
|
|
}
|
|
|
|
60% {
|
|
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
|
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
|
opacity: 1;
|
|
}
|
|
|
|
80% {
|
|
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
|
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: perspective(400px);
|
|
transform: perspective(400px);
|
|
}
|
|
}
|
|
|
|
.flipInX {
|
|
-webkit-backface-visibility: visible !important;
|
|
backface-visibility: visible !important;
|
|
-webkit-animation-name: flipInX;
|
|
animation-name: flipInX;
|
|
}
|