From dc2deb9a1b1995bbabee91bfd579d9b466fe78f2 Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Thu, 26 Jan 2012 21:48:46 -0800 Subject: moving structure around + more work on builder... --- less/component-animations.less | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 less/component-animations.less (limited to 'less/component-animations.less') diff --git a/less/component-animations.less b/less/component-animations.less new file mode 100644 index 000000000..4f2a4fd11 --- /dev/null +++ b/less/component-animations.less @@ -0,0 +1,18 @@ +// 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; } +} -- cgit v1.2.3