comparison static/bootstrap/less/component-animations.less @ 61:130eccd396d8

Now using Boostrap with LESS.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 06 Feb 2013 08:22:31 -0800
parents
children d29e2f337b00
comparison
equal deleted inserted replaced
60:8250c977bc50 61:130eccd396d8
1 //
2 // Component animations
3 // --------------------------------------------------
4
5
6 .fade {
7 opacity: 0;
8 .transition(opacity .15s linear);
9 &.in {
10 opacity: 1;
11 }
12 }
13
14 .collapse {
15 position: relative;
16 height: 0;
17 overflow: hidden;
18 .transition(height .35s ease);
19 &.in {
20 height: auto;
21 }
22 }