-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathstyles.css
82 lines (73 loc) · 1.22 KB
/
styles.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;
font-family: Arial, Helvetica, sans-serif;
}
.title{
top: 0;
width: 100%;
max-width: 100%;
z-index: 1;
display: block;
position: absolute;
background-color: #444444;
color: white;
margin: 0;
}
.entry-modal{
border: 1px solid #444444;
width: 300px;
margin: auto;
z-index: 9999;
position: absolute;
left: 50%;
top: 70;
margin-left: -150px;
padding: 5px;
color: #fff;
background-color: #444444;
text-align: center;
}
#notification{
position: absolute;
z-index: 1;
text-align: center;
color: #fff;
margin: 0;
top: 47.33px;
font-size: 18pt;
width: 100%;
background-color: orange;
}
.room-input{
border: none;
padding:5px;
}
button{
margin: 3px;
padding: 5px;
}
#remote-video{
top: 0;
height: 100%;
width: 100%;
left: 0;
background-color: lightgray;
position: absolute;
}
#local-video{
top: 60;
width: 300;
object-fit: cover;
height: 150;
z-index: 1;
right: 15;
background-color: #444444;
position: absolute;
}
.meet-controls-bar{
bottom: 0;
background-color: black;
left: 0;
position: absolute;
width: 100%;
}