32 lines
633 B
CSS
32 lines
633 B
CSS
/* Nur die Steuerungselemente ausblenden */
|
|
#buttonsBar,
|
|
#chatModule,
|
|
#settingsModule,
|
|
.left-header,
|
|
.right-header,
|
|
#msger,
|
|
.status-info {
|
|
display: none !important;
|
|
}
|
|
|
|
/* DAS VIDEO EXPLIZIT SICHTBAR MACHEN */
|
|
#videoGrid,
|
|
.video-container,
|
|
video {
|
|
display: block !important;
|
|
visibility: visible !important;
|
|
width: 100vw !important;
|
|
height: 100vh !important;
|
|
object-fit: cover !important;
|
|
position: fixed !important;
|
|
top: 0 !important;
|
|
left: 0 !important;
|
|
z-index: 1 !important;
|
|
}
|
|
|
|
/* Verstecke nur die Overlays auf dem Video */
|
|
.video-name,
|
|
.video-status-icon {
|
|
display: none !important;
|
|
}
|