mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
57 lines
No EOL
1.3 KiB
CSS
57 lines
No EOL
1.3 KiB
CSS
|
|
#floatButtons {
|
|
z-index: 110;
|
|
position: absolute;
|
|
right: -10px;
|
|
top: -10px;
|
|
}
|
|
#floatButtons .btn-outline:hover,
|
|
#floatButtons .btn-outline:focus,
|
|
#floatButtons .btn-outline:active {
|
|
color: rgba(255, 255, 255, 1);
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
#floatButtons .btn-outline {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
transition: all 0.3s ease-in-out;
|
|
border-radius: 10px;
|
|
}
|
|
.floatVideo {
|
|
position: fixed !important;
|
|
width: 550px;
|
|
top: 70px;
|
|
left: 10px;
|
|
z-index: 100;
|
|
overflow: visible;
|
|
}
|
|
.floatVideo > #main-video {
|
|
-webkit-box-shadow: 2px 0px 19px 2px rgba(0, 0, 0, 1);
|
|
-moz-box-shadow: 2px 0px 19px 2px rgba(0, 0, 0, 1);
|
|
box-shadow: 2px 0px 19px 2px rgba(0, 0, 0, 1);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
@media (max-width: 1200px) {
|
|
.floatVideo {
|
|
width: 500px;
|
|
}
|
|
}
|
|
@media (max-width: 992px) {
|
|
.floatVideo {
|
|
width: 450px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.floatVideo {
|
|
top: 0 !important;
|
|
left: 0 !important;
|
|
width: 100% !important;
|
|
z-index: 1050;
|
|
}
|
|
#floatButtons{
|
|
display: none !important;
|
|
}
|
|
} |