An issue was opened (and closed) here asking how to encode @keyframes using elm-css.
@rtfeldman indicated that this could be done using the Css.selector function.
After playing around with this a bit, it still isn’t clear how to create nested selectors that would be needed for the following:
@keyframes sk-bouncedelay {
0%, 80%, 100% {
transform: scale(0);
} 40% {
transform: scale(1.0);
}
}
Does anyone know how (or if) this could be done?
Thanks,
Michael