Is it possible to remove copy-paste for at-rules specified in code below ?
animated {
animation: expand .7s;
-moz-animation: expand .7s;
-webkit-animation: expand .7s;
-o-animation: expand .7s;
}
@keyframes expand {
from {height: 502px;}
to {height: 558px;}
}
@-moz-keyframes expand {
from {height: 502px;}
to {height: 558px;}
}
@-webkit-keyframes expand {
from {height: 502px;}
to {height: 558px;}
}
I want to have single place with definition of keyframes ("from .. to .. " code)