middleman/middleman-core/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_component-animations.less
2013-05-09 14:41:26 -07:00

21 lines
272 B
Plaintext
Executable file

// 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;
}
}