I have some SCSS code here:
.location {
animation-delay: 80ms;
position: relative;
&:before {
font-family: "FontAwesome";
font-size: 24px;
content: "\f041";
position: absolute;
left: 4px;
top: 12px;
}
input {
text-indent: 28px;
}
}
I want to change the text color of .location:before, ON .location input:focus. Is this even possible with pure css?
Any help is appreciated :)