blob: 4b66a07bd4e857d0f8d67da5141da386009d5639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
body {
display: flex;
flex-direction: column;
align-items: center;
max-height: 100%;
width: 100vw;
height: 100vh;
}
.video-player {
display: flex;
max-height: calc(100% - 400px);
flex: 1 1 0;
flex-direction: column;
position: relative;
max-width: 100%;
height: 0;
}
.video-layer {
position: relative;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
flex: 1 1 0;
}
video {
object-fit: contain;
display: flex;
flex: auto;
max-width: 100%;
min-height: 0;
min-width: 0;
}
|