Move css properties to appropriate location (#761)

This commit is contained in:
Andrea Maiolo 2017-12-15 03:13:14 +01:00 committed by Elton Mesquita
parent 8dce1e03fd
commit fb4313ad0c
6 changed files with 5 additions and 11 deletions

View File

@ -6,14 +6,3 @@
.animated.infinite { .animated.infinite {
animation-iteration-count: infinite; animation-iteration-count: infinite;
} }
.animated.hinge {
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
animation-duration: .75s;
}

View File

@ -32,5 +32,6 @@
} }
.bounceIn { .bounceIn {
animation-duration: .75s;
animation-name: bounceIn; animation-name: bounceIn;
} }

View File

@ -15,5 +15,6 @@
} }
.bounceOut { .bounceOut {
animation-duration: .75s;
animation-name: bounceOut; animation-name: bounceOut;
} }

View File

@ -15,6 +15,7 @@
} }
.flipOutX { .flipOutX {
animation-duration: .75s;
animation-name: flipOutX; animation-name: flipOutX;
backface-visibility: visible !important; backface-visibility: visible !important;
} }

View File

@ -15,6 +15,7 @@
} }
.flipOutY { .flipOutY {
animation-duration: .75s;
backface-visibility: visible !important; backface-visibility: visible !important;
animation-name: flipOutY; animation-name: flipOutY;
} }

View File

@ -24,5 +24,6 @@
} }
.hinge { .hinge {
animation-duration: 2s;
animation-name: hinge; animation-name: hinge;
} }