Font-Awesome/build/assets/less/twbs-2.3.1/component-animations.less

23 lines
306 B
Plaintext
Raw Normal View History

2012-12-20 21:09:28 +08:00
//
// Component animations
// --------------------------------------------------
.fade {
opacity: 0;
.transition(opacity .15s linear);
&.in {
opacity: 1;
}
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
&.in {
height: auto;
}
}