Skip to content

Commit

Permalink
Move css properties to appropriate location (#761)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreamaiolo authored and eltonmesquita committed Dec 15, 2017
1 parent 8dce1e0 commit fb4313a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 11 deletions.
11 changes: 0 additions & 11 deletions source/_base.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
1 change: 1 addition & 0 deletions source/bouncing_entrances/bounceIn.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@
}

.bounceIn {
animation-duration: .75s;
animation-name: bounceIn;
}
1 change: 1 addition & 0 deletions source/bouncing_exits/bounceOut.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
}

.bounceOut {
animation-duration: .75s;
animation-name: bounceOut;
}
1 change: 1 addition & 0 deletions source/flippers/flipOutX.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
}

.flipOutX {
animation-duration: .75s;
animation-name: flipOutX;
backface-visibility: visible !important;
}
1 change: 1 addition & 0 deletions source/flippers/flipOutY.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
}

.flipOutY {
animation-duration: .75s;
backface-visibility: visible !important;
animation-name: flipOutY;
}
1 change: 1 addition & 0 deletions source/specials/hinge.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@
}

.hinge {
animation-duration: 2s;
animation-name: hinge;
}

0 comments on commit fb4313a

Please sign in to comment.