mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
29 lines
520 B
CSS
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;
|
|
}
|
|
}
|
|
|
|
/**************************************************************/ |