1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/plugin/FloatVideo/floatVideo.css
Daniel Neto 3661adeb02 update
2023-08-04 09:14:16 -03:00

29 lines
No EOL
574 B
CSS

body.floatVideo #videoContainer{
position: fixed;
bottom: 50px;
left: 5px;
width: 20vw;
height: auto;
z-index: 9999;
}
body.floatVideo #floatButtons{
display: block !important;
}
body.floatVideo #floatButtonsClose{
position: absolute;
right: -15px;
top: -15px;
}
@media (max-width: 991px) {
body.floatVideo #floatButtons{
display: none !important;
}
body.floatVideo #videoContainer{
top: 0;
left: 0;
right: 0;
width: 100vw;
height: 30vh;
}
}