From 3fef5f4b0653c80ac9d36569a8af6359ebbb0906 Mon Sep 17 00:00:00 2001 From: Dennis Eriksen Date: Wed, 10 Apr 2013 14:00:20 +0200 Subject: added less-version of bootstrap --- public/css/bootstrapless/component-animations.less | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 public/css/bootstrapless/component-animations.less (limited to 'public/css/bootstrapless/component-animations.less') diff --git a/public/css/bootstrapless/component-animations.less b/public/css/bootstrapless/component-animations.less new file mode 100644 index 0000000..d614263 --- /dev/null +++ b/public/css/bootstrapless/component-animations.less @@ -0,0 +1,22 @@ +// +// 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; + } +} -- cgit v1.2.3