We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was just browsing, came across this and and noticed:
@-webkit-keyframes alertPulse { 0% {background-color: #9A2727; opacity: 1;} 50% {opacity: red; opacity: 0.75; } 100% {opacity: #9A2727; opacity: 1;} }
The 50% and 100% attributes reference opacity twice, whereas the first parameter should be background-color
opacity
background-color
Should be:
@-webkit-keyframes alertPulse { 0% {background-color: #9A2727; opacity: 1;} 50% {background-color: red; opacity: 0.75; } 100% {background-color: #9A2727; opacity: 1;} }
cheers
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was just browsing, came across this and and noticed:
The 50% and 100% attributes reference
opacity
twice, whereas the first parameter should bebackground-color
Should be:
cheers
The text was updated successfully, but these errors were encountered: