-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (33 loc) · 972 Bytes
/
style.css
File metadata and controls
40 lines (33 loc) · 972 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
div[data-test-id='FULLSCREEN_PLAYER_MODAL']::before {
background: var(--background);
}
div[data-test-id='FULLSCREEN_PLAYER_MODAL']::after {
opacity: 0;
background: var(--background-next);
}
div[data-test-id='FULLSCREEN_PLAYER_MODAL'].animate::after {
opacity: 1;
}
div[data-test-id='FULLSCREEN_PLAYER_MODAL']::before,
div[data-test-id='FULLSCREEN_PLAYER_MODAL']::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
filter: blur(var(--blur)) brightness(calc(var(--brightness) * var(--brightness-correction)));
background-repeat: no-repeat;
background-size: cover;
background-position: center;
transition:
opacity 0.5s ease-in-out,
filter 0.5s ease-in-out;
}
.PlayQueue_root__ponhw::after,
.PlayQueue_root__ponhw::before,
div[data-test-id='SYNC_LYRICS_CONTENT']::after,
div[data-test-id='SYNC_LYRICS_CONTENT']::before {
display: none;
}