Pony.fm/public/styles/base/bootstrap/component-animations.less

23 lines
306 B
Text
Raw Normal View History

2013-07-25 23:33:04 +02: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;
}
}