36 lines
664 B
CSS
Raw Normal View History

2024-06-15 14:30:56 +02:00
/**************************************************************/
/* CSS for Page Footer */
/**************************************************************/
a:hover {
text-decoration: none;
}
.blink-text {
2024-08-14 22:29:36 +02:00
color: var(--base-text);
2024-06-15 14:30:56 +02:00
font-weight: bold;
font-size: 2rem;
animation: blinkingText 2s infinite;
}
@keyframes blinkingText {
0% {
2024-08-14 22:29:36 +02:00
color: var(--base-text);
2024-06-15 14:30:56 +02:00
}
50% {
2024-08-14 22:29:36 +02:00
color: var(--red);
2024-06-15 14:30:56 +02:00
}
100% {
2024-08-14 22:29:36 +02:00
color: var(--base-text);
2024-06-15 14:30:56 +02:00
}
}
2024-10-04 23:40:19 +02:00
#kofiframe {
border: none;
width: 100%;
padding: 4px;
background: var(--deep-bg);
}
2024-06-15 14:30:56 +02:00
/**************************************************************/