I constantly like to customize web pages that I use frequently through inspect element to be more pleasing for me, however, I've been constantly failing at adding a @keyframes rule to css. Everytime I click "New Style Rule" and type my code, it simply disappears.
0%{
text-shadow: 0 0px 15px #f0f;
}
33%{
text-shadow:0 0px 15px #0ff;
}
66%{
text-shadow: 0 0px 10px #0f0;
}
100%{
text-shadow: 0 0px 10px #ff0;
}
}
I have noticed in other websites that use keyframes that they are separated from regular classes, and I cannot interact in any way with it through inspect element. @keyframe in inspect element
Is it impossible to add keyframes through inspect element alone?