mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-02-08 16:19:03 +01:00
36 lines
664 B
CSS
36 lines
664 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);
|
|
}
|
|
}
|
|
|
|
#kofiframe {
|
|
border: none;
|
|
width: 100%;
|
|
padding: 4px;
|
|
background: var(--deep-bg);
|
|
}
|
|
|
|
/**************************************************************/ |