Makes all text on page shimmer. Why did I do this? I have no idea.
/* ==UserStyle==
@name Shimmer All Text
@namespace greatest.deepsurf.us
@version 1.1
@description Makes all text on page shimmer. Why did I do this? I have no idea.
@license MIT
==/UserStyle== */
p, a, span, div, a, li, td, th, h1, h2, h3, h4, h5, h6 {
background: linear-gradient(90deg, red, orange, yellow, green, blue, purple);
background-size: 400%;
-webkit-background-clip: text;
color: transparent !important;
animation: shine 6s linear infinite;
}
@keyframes shine {
to { background-position: 400% 0; }
}