I want create this:
loading...(with dots that move)
and I have this code in SASS:
.loading:after
content: ' .'
animation: dots 1s steps(5, end) infinite
@keyframes dots
0%, 20%
color: rgba(0,0,0,0)
text-shadow .25em 0 0 rgba(0,0,0,0), //here this the problem
.5em 0 0 rgba(0,0,0,0)
....
When compile I have this error:
Expected "to" or "from" text-shadow
Anyone knows how can I resolve this?