mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-12 02:51:46 +00:00
27 lines
502 B
CSS
27 lines
502 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;
|
|
}
|