mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-14 00:03:42 +08:00
19 lines
529 B
CSS
19 lines
529 B
CSS
/* Web Fullscreen (Window Fullscreen) Styles */
|
|
.kvideo-container.is-web-fullscreen {
|
|
position: fixed !important;
|
|
top: 0 !important;
|
|
left: 0 !important;
|
|
width: 100vw !important;
|
|
height: 100vh !important;
|
|
z-index: 9999 !important;
|
|
background: black !important;
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
/* Ensure controls and video take up full space in web fullscreen */
|
|
.kvideo-container.is-web-fullscreen video {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
border-radius: 0 !important;
|
|
}
|