2024-08-14 22:29:36 +02:00

29 lines
563 B
CSS

/**************************************************************/
/* CSS for Page Footer */
/**************************************************************/
a:hover {
text-decoration: none;
}
.blink-text {
color: var(--base-text);
font-weight: bold;
font-size: 2rem;
animation: blinkingText 2s infinite;
}
@keyframes blinkingText {
0% {
color: var(--base-text);
}
50% {
color: var(--red);
}
100% {
color: var(--base-text);
}
}
/**************************************************************/