23 righe
375 B
23 righe
375 B
@import "compass"; |
|
|
|
@mixin keyframes($name) { |
|
@-webkit-keyframes #{$name} { |
|
@content; |
|
} |
|
@-moz-keyframes #{$name} { |
|
@content; |
|
} |
|
@-ms-keyframes #{$name} { |
|
@content; |
|
} |
|
@keyframes #{$name} { |
|
@content; |
|
} |
|
} |
|
|
|
@mixin animation ($stuff ) { |
|
-webkit-animation: $stuff; |
|
-moz-animation: $stuff; |
|
-ms-animation: $stuff; |
|
animation: $stuff; |
|
} |