Added simple theming system

This commit is contained in:
Klaus Silveira
2014-05-17 10:03:18 -03:00
parent 87355db0ab
commit f8b29db8c3
127 changed files with 5921 additions and 30 deletions

View File

@@ -0,0 +1,20 @@
// 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;
}
}