1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-22 11:54:22 +00:00
TiddlyWiki5/cssbuild/twitter-bootstrap/less/component-animations.less
Jeremy Ruston f30a7cc61d Added Twitter Bootstrap source
We're going to build a custom version
2012-06-24 13:14:40 +01: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;
}
}