-
Notifications
You must be signed in to change notification settings - Fork 465
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (97 loc) · 1.64 KB
/
style.css
File metadata and controls
117 lines (97 loc) · 1.64 KB
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
#video-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
video {
height: 300px;
width: 400px;
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;
padding: 40px;
}
.main__controls {
background-color: #1C1E20;
}
.main__right {
background-color: #242324;
border-left: 1px solid #3D3D42;
}
.main__controls {
color: #D2D2D2;
display: flex;
justify-content: space-between;
padding: 5px;
}
.main__controls__block {
display: flex;
}
.main__controls__button {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 8px 10px;
min-width: 80px;
cursor: pointer;
}
.main__controls__button:hover {
background-color: #343434;
border-radius: 5px;
}
.main__controls__button i {
font-size: 24px;
}
.main__right {
display: flex;
flex-direction: column;
}
.main__header {
padding-top: 5px;
color: #F5F5F5;
text-align: center;
}
.main__chat_window {
flex-grow: 1;
overflow-y: auto;
}
.messages {
color: white;
list-style: none;
}
.main__message_container {
padding: 22px 12px;
display: flex;
}
.main__message_container input {
flex-grow: 1;
background-color: transparent;
border: none;
color: #F5F5F5;
}
.leave_meeting {
color: #EB534B;
}
.unmute,
.stop {
color: #CC3B33;
}