-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (103 loc) · 1.94 KB
/
style.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
body{
margin: 0;
padding: 0;
}
*::-webkit-scrollbar{
display: none;
}
#video-grid{
display: grid;
grid-template-columns: repeat(auto-fill, 400px);
grid-auto-rows: 400px;
}
video{
display: flex;
height: 400px;
width: 500px;
object-fit: cover;
padding: 8px;
}
.main {
height: 100vh;
display: flex;
}
.main__left{
flex: 0.8;
display: flex;
flex-direction: column;
}
.main__right {
flex: 0.2;
}
.main__videos{
flex-grow: 1;
background-color: black;
display: flex;
justify-content: center;
align-items: center;
}
.main__controls{
display: flex;
background-color: #1C1E20;
color: #D2D2D2;
padding: 5px;
justify-content: space-between;
}
.main__controls__block {
display: flex;
}
.main__controls__button {
display: flex;
flex-direction: column;
align-items: center;
padding:8px 10px ;
min-width: 80px;
cursor: pointer;
}
.main__controls__button i {
font-size: 24px;
}
.leave_meeting{
background-color: red;
color: white;
padding: 7px;
margin-top: 5px;
text-align: center;
justify-content: center;
border-radius: 20px;
}
.main__controls__button:hover{
background-color: #343434;
border-radius: 5px;
}
.main__right{
display: flex;
flex-direction: column;
background-color: #242324;
border-left: 1px solid #3D3D42;
}
.main__header{
color: #F5F5F5;
text-align: center;
}
.main__chat_window{
flex-grow: 1;
overflow-y: scroll;
}
.main__message_container{
padding: 22px 12px;
display: flex;
}
.main__message_container input {
flex-grow: 1;
background-color: transparent;
border: none;
color: #F5F5F5;
}
.messages {
color: white;
list-style: none;
}
.unmute, .stop{
color: #CC3833;
}