Fork-Awesome/docs/assets/less/tw-bs-201/component-animations.less
2012-03-09 09:45:33 +01:00

19 lines
264 B
Plaintext
Executable file

// COMPONENT ANIMATIONS
// --------------------
.fade {
.transition(opacity .15s linear);
opacity: 0;
&.in {
opacity: 1;
}
}
.collapse {
.transition(height .35s ease);
position:relative;
overflow:hidden;
height: 0;
&.in { height: auto; }
}