-
Notifications
You must be signed in to change notification settings - Fork 0
/
spinny.css
98 lines (83 loc) · 1.71 KB
/
spinny.css
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
@keyframes rotating {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
#fad-art,
#fad-art-image {
animation: rotating 75s linear infinite !important;
position: relative !important;
}
#fad-art {
clip-path: circle(50% at 50% 50%) !important;
overflow: hidden; /* Ensures that pseudo-elements do not overflow */
}
#fad-art-image {
width: 100%; /* Make sure the image scales correctly */
height: auto; /* Maintain aspect ratio */
}
#fad-art::after {
content: '' !important;
position: absolute;
top: 50% !important;
left: 50% !important;
width: 100%;
height: 100%;
border-radius: 50%;
pointer-events: none !important;
}
#fad-art::before {
content: '' !important;
position: absolute !important;
top: 50% !important;
left: 50% !important;
width: 12% !important;
height: 12% !important;
border-radius: 50%;
}
#fad-details {
max-width: 520px !important;
}
#fad-details #fad-title {
font-size: 1.8em !important;
font-weight: 800 !important;
}
#fad-details #fad-artist {
margin-top: 0.625em;
font-size: 1.1em !important;
}
#fad-details #fad-album {
margin-top: 6px;
font-size: 1.1em !important;
font-style: italic !important;
}
#fad-details #fad-artist > *,
#fad-details #fad-album > *,
#fad-details #fad-status > #fad-controls > * > svg {
vertical-align: middle;
}
#fad-details #fad-artist > svg {
width: 1em;
height: 1em;
}
#fad-details #fad-album > svg {
width: 1em;
height: 1em;
}
#fad-play > svg {
width: 24px;
height: 24px;
}
#fad-art,
#fad-art-image,
#fad-art::before,
#fad-art::after {
filter: none !important; /* Ensures no blur is applied */
}
#fad-art-inner {
filter: none !important;
backdrop-filter: none !important
}