Added animation-delay

This commit is contained in:
Josh Sherman 2013-05-05 18:28:08 -04:00
parent 194a8241db
commit daa2621aa9
2 changed files with 13 additions and 0 deletions

View file

@ -157,3 +157,10 @@
.debug(@color: red, @sizeStyle: 1px solid) {
border: @sizeStyle @color;
}
.animation-delay(@duration) {
-webkit-animation-delay: @duration;
-moz-animation-delay: @duration;
-o-animation-delay: @duration;
-ms-animation-delay: @duration;
animation-delay: @duration;
}