1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/agendav_ynh.git synced 2024-09-03 20:36:12 +02:00
agendav_ynh/sources/libs/font-awesome/docs/assets/less/twbs-203/component-animations.less
2014-01-07 17:53:08 +01:00

20 lines
No EOL
275 B
Text
Executable file

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