mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
29 lines
No EOL
574 B
CSS
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;
|
|
}
|
|
} |