-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
94 lines (83 loc) · 1.44 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
83
84
85
86
87
88
89
90
91
92
93
94
* {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
"Helvetica Neue", sans-serif;
}
body {
width: 100%;
height: 100%;
}
.title {
top: 0;
width: 100%;
z-index: 1;
display: block;
position: absolute;
background-color: #444444;
color: white;
margin: 0;
padding: 5px;
}
.entry-modal {
border: 1px solid #444444;
width: 300px;
margin: auto;
z-index: 9999;
position: absolute;
left: 50%;
top: 70;
margin-left: -150px;
padding: 20px;
color: #fff;
background-color: #444444;
text-align: center;
margin-top: 15%;
border-radius: 10px;
}
#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 {
width: 100% !important;
height: auto !important;
}
#local-video {
width: 100% !important;
height: auto !important;
}
#vids-container {
height: 100vh;
max-width: 400px;
}
.float{
position:fixed;
width:60px;
height:60px;
bottom:20px;
right:40%;
background-color:rgb(204, 0, 0);
color:#FFF;
border-radius:50px;
text-align:center;
box-shadow: 2px 2px 3px #999;
}
.my-float{
margin-top:22px;
}