-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
44 lines (38 loc) · 823 Bytes
/
Copy pathstyles.css
File metadata and controls
44 lines (38 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.vc-autodelete-countdown {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 2px;
font-size: 12px;
font-weight: 500;
line-height: 16px;
color: var(--text-muted);
user-select: none;
}
.vc-autodelete-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: currentcolor;
opacity: 0.6;
animation: vc-autodelete-pulse 2s ease-in-out infinite;
}
.vc-autodelete-imminent {
color: var(--text-danger);
}
.vc-autodelete-imminent .vc-autodelete-dot {
animation-duration: 0.7s;
}
.vc-autodelete-reason {
opacity: 0.7;
}
@keyframes vc-autodelete-pulse {
0%, 100% { opacity: 0.25; }
50% { opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
.vc-autodelete-dot {
animation: none;
opacity: 0.6;
}
}