forked from 0x5eba/Video-Meeting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVideo.css
82 lines (68 loc) · 1.2 KB
/
Video.css
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
body {
margin: 0;
}
.flex-container {
/* height: calc(100% - 150px);
width: 100%; */
/* margin: 0 auto; */
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container {
height: 100vh;
width: 100vw;
max-width: 100vw;
max-height: 100vh;
align-items: center;
justify-content: center;
text-align: center;
}
.div-send-msg {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
video {
max-width: 100%;
}
.my-video-container {
position: fixed;
bottom: 0;
right: 0;
width: 200px;
max-width: 40%;
/* Make resizeable: */
/* min-height: 30px;
min-width: 30px;
resize: both;
overflow: auto;
max-height: fit-content;
max-width: fit-content; */
}
video.other-participant {
}
video.my-video-preview {
max-width: 50%;
display: block;
margin: auto;
}
.control-panel {
z-index: 2;
background: white;
opacity: 80%;
}
.icon-button {
color: #424242;
}
.positioned-participant {
border: 1px solid black;
margin: 10px;
display: flex;
}
.username {
font-weight: bold;
}