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 {
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 {
animation-duration: .75s;
animation-name: bounceIn;
}

View File

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

View File

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

View File

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

View File

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