forked from rDrama/rDrama
1
0
Fork 0

Adds the replacement gold animation

Mike Hawk 2024-06-04 18:37:57 -07:00
parent 1f7463964c
commit 3dfdc95fbe
2 changed files with 25 additions and 6 deletions

View File

@ -7621,12 +7621,9 @@ blink {
:not(td) > a[href="/h/highrollerclub"].hole-flair, .effortpost-flair { :not(td) > a[href="/h/highrollerclub"].hole-flair, .effortpost-flair {
font-family: open sans,sans-serif !important; font-family: open sans,sans-serif !important;
background: repeating-linear-gradient( background: url("/i/animations/gold_gradient.svg");
45deg, background-size: 200% 200%;
#a78e00, background-repeat: repeat-x;
#947d00 20px,
#847000 60px
);
font-weight: 700 !important; font-weight: 700 !important;
animation: 60s linear 0s infinite move-colors; animation: 60s linear 0s infinite move-colors;
} }

View File

@ -0,0 +1,22 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="myGradient" x1="0" y1="0" x2="60" y2="0">
<stop offset="0%" stop-color="gold" />
<stop offset="33%" stop-color="#debd00" />
<stop offset="100%" stop-color="#cdae00" />
</linearGradient>
<pattern id="bg" patternUnits="userSpaceOnUse" width="60" height="1" patternTransform="rotate(-45 50 50)">
<rect width="100%" height="100%" fill="url(#myGradient)">
</rect>
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#bg)"></rect>
<animateTransform
attributeName="transform"
attributeType="XML"
type="translate"
from="-84.852"
to="0"
dur="2s"
repeatCount="indefinite" />
</svg>

After

Width:  |  Height:  |  Size: 887 B