1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-23 20:34:21 +00:00
TiddlyWiki5/cssbuild/twitter-bootstrap/less/component-animations.less
2012-10-11 15:58:05 +01:00

23 lines
306 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;
}
}