mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 02:31:45 +00:00
41 lines
784 B
CSS
41 lines
784 B
CSS
#song-video canvas.html5-blur-canvas {
|
|
filter: blur(var(--blur, 100px));
|
|
opacity: var(--opacity, 1);
|
|
|
|
pointer-events: none;
|
|
}
|
|
|
|
#song-video canvas.html5-blur-canvas:not(.fullscreen) {
|
|
position: absolute;
|
|
|
|
left: var(--left, 0px);
|
|
top: var(--top, 0px);
|
|
}
|
|
|
|
#song-video canvas.html5-blur-canvas.fullscreen {
|
|
position: fixed;
|
|
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
left: 0 !important;
|
|
top: 0 !important;
|
|
}
|
|
|
|
#song-video .html5-video-container > video {
|
|
top: 0 !important;
|
|
}
|
|
|
|
#song-image .html5-blur-image {
|
|
position: absolute;
|
|
|
|
left: var(--left, 0px);
|
|
top: var(--top, 0px);
|
|
width: var(--width, 100%) !important;
|
|
height: var(--height, 100%) !important;
|
|
|
|
filter: blur(var(--blur, 100px));
|
|
opacity: var(--opacity, 1);
|
|
|
|
pointer-events: none;
|
|
}
|