crafty-4/app/frontend/static/assets/css/partial/crafty-footer.css

29 lines
520 B
CSS
Raw Normal View History

2024-06-15 12:30:56 +00:00
/**************************************************************/
/* 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;
}
}
/**************************************************************/