-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcustom-css.css
128 lines (111 loc) · 2.43 KB
/
custom-css.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*!
* Copyright 2023 Organic <https://github.com/organization>
*/
alspotron-wrapper {
padding-bottom: 10px;
padding-right: 10px;
}
alspotron-lyrics-item {
background: transparent;
text-shadow: 2px 2px 10px black;
filter: none;
}
alspotron-transition-lyric-enter-active,
alspotron-transition-lyric-exit-active {
transition: all 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
transform-origin: center;
}
alspotron-transition-lyric-move {
transition: all 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
transform-origin: center;
}
alspotron-transition-lyric-enter,
alspotron-transition-lyric-exit-to {
opacity: 0;
}
alspotron-nowplaying {
background: rgba(0, 0, 0, .4);
border-radius: 30px;
display: flex;
flex-direction: column;
padding: 15px 20px;
padding-bottom: 10px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
}
alspotron-nowplaying-cover {
margin: 0 10px;
width: 40px;
height: 40px;
}
alspotron-nowplaying-playing-text {
display: flex;
flex-direction: column;
align-items: flex-start;
}
alspotron-nowplaying-title {
font-size: 1.2rem;
}
alspotron-nowplaying-artist {
opacity: 0.3;
order: 2;
margin-top: -7px;
font-size: 0.9rem;
}
alspotron-nowplaying-divider {
display: none;
}
alspotron-marquee:not(alspotron-marquee--disabled) {
&::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
to right,
black 0%, transparent 5%, transparent 95%, black 100%
);
}
}
alspotron-nowplaying-progress-bar {
position: relative;
display: flex;
align-items: center;
margin-top: 15px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 25px;
min-width: 200px;
order: 2;
&::before, &::after {
font-size: 0.8rem;
opacity: 0.3;
}
&::before {
position: absolute;
right: 0;
bottom: 0;
content: var(--nowplaying-duration);
padding-right: 5px;
}
&::after {
position: absolute;
bottom: 0;
content: var(--nowplaying-progress);
}
}
alspotron-nowplaying-progress {
position: relative;
background: rgba(255, 255, 255, .3);
border-radius: 3px;
height: 4px;
transform: none;
flex: 1;
&::before {
content: '';
position: absolute;
inset: 0;
width: 100%;
background: white;
transform: scaleX(var(--nowplaying-percent));
transform-origin: left;
}
}