lib/generators/tmatt_cms/templates/css/application/mixin.css.scss in tmatt_cms-0.1.6 vs lib/generators/tmatt_cms/templates/css/application/mixin.css.scss in tmatt_cms-0.1.7
- old
+ new
@@ -40,5 +40,20 @@
background: -webkit-linear-gradient($color_from, $color_from, $color_from, $color_to);
background: -o-linear-gradient($color_from, $color_from, $color_from, $color_to);
background: -moz-linear-gradient($color_from, $color_from, $color_from, $color_to);
background: linear-gradient($color_from, $color_from, $color_from, $color_to);
}
+
+@mixin rotate($degree) {
+ -webkit-transform: rotate($degree);
+ -moz-transform: rotate($degree);
+ -o-transform: rotate($degree);
+ -ms-transform: rotate(45deg);
+ transform: rotate($degree);
+}
+
+@mixin transition_delay($time) {
+ -webkit-transition-delay: 0.10s;
+ -moz-transition-delay: 0.10s;
+ -o-transition-delay: 0.10s;
+ transition-delay: 0.10s;
+}