<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* INTERLINKS BLINK */
#Interlinks &gt; li:first-child &gt; a {
    -webkit-animation: textColorBlink 1.5s ease-in-out infinite alternate;
    font-weight: bold;
}

@keyframes textColorBlink {
    0% {
        color: #00ff00;
    }
    33% {
        color: #00ff00;
    }
    34% {
        color: red;
    }
    66% {
        color: red;
    }
    67% {
        color: yellow;
    }
    100% {
        color: yellow;
    }
}
/* INTERLINKS BLINK */</pre></body></html>