-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathstyles.css
More file actions
30 lines (28 loc) · 865 Bytes
/
Copy pathstyles.css
File metadata and controls
30 lines (28 loc) · 865 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
.kindle-ribbon-syncing {
animation: kindle-pulse 1.2s ease-in-out infinite;
color: var(--interactive-accent);
background: color-mix(in srgb, var(--interactive-accent) 18%, transparent);
border-radius: 6px;
box-shadow: 0 0 0 0 color-mix(in srgb, var(--interactive-accent) 35%, transparent);
}
.kindle-ribbon-syncing svg {
color: inherit;
fill: currentColor;
}
@keyframes kindle-pulse {
0%,
100% {
opacity: 1;
box-shadow: 0 0 0 0 color-mix(in srgb, var(--interactive-accent) 35%, transparent);
filter: drop-shadow(
0 0 8px color-mix(in srgb, var(--interactive-accent) 55%, transparent)
);
}
50% {
opacity: 0.65;
box-shadow: 0 0 0 6px color-mix(in srgb, var(--interactive-accent) 0%, transparent);
filter: drop-shadow(
0 0 14px color-mix(in srgb, var(--interactive-accent) 75%, transparent)
);
}
}