Merge master

This commit is contained in:
Ben Word
2013-06-10 12:51:39 -05:00
76 changed files with 513 additions and 277 deletions

View File

@@ -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;
}
}