whitte-h_Lyrio/styles.css

22 lines
318 B
CSS
Raw Permalink Normal View History

2026-04-28 08:23:29 +00:00
.lyrio-status svg {
animation: lyrio-spin 1s linear infinite;
}
2026-04-28 05:50:15 +00:00
2026-04-28 08:23:29 +00:00
@keyframes lyrio-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.lyrio-status {
display: none;
}
.lyrio-status.is-active {
display: flex;
}
.lyrio-tag-marker {
color: var(--lyrio-tag-color);
font-weight: 600;
}