Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
23 righe
375 B
23 righe
375 B
5 anni fa
|
@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;
|
||
|
}
|