crafty-4/app/frontend/static/assets/css/partial/crafty-footer.css
2024-06-15 14:30:56 +02:00

29 lines
520 B
CSS

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