This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
lnapp/media/vendor/font-awesome/docs/assets/less/twbs-222/component-animations.less

23 lines
306 B
Plaintext
Raw Normal View History

2013-04-25 00:22:36 +00: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;
}
}