-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
78 lines (66 loc) · 1.31 KB
/
main.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
#videos{
display: grid;
grid-template-columns: 1fr;
height: 100vh;
overflow:hidden;
}
.video-player{
background-color: black;
width: 100%;
height: 100%;
object-fit: cover;
}
#user-2{
display: none;
}
.smallFrame{
position: fixed;
top: 20px;
left: 20px;
height: 170px;
width: 300px;
border-radius: 5px;
border:2px solid #b366f9;
-webkit-box-shadow: 3px 3px 15px -1px rgba(0,0,0,0.77);
box-shadow: 3px 3px 15px -1px rgba(0,0,0,0.77);
z-index: 999;
}
#controls{
position: fixed;
bottom: 20px;
left: 50%;
transform:translateX(-50%);
display: flex;
gap: 1em;
}
.control-container{
background-color: rgb(179, 102, 249, .9);
padding: 20px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.control-container img{
height: 30px;
width: 30px;
}
#leave-btn{
background-color: rgb(255,80,80, 1);
}
@media screen and (max-width:600px) {
.smallFrame{
height: 80px;
width: 120px;
}
.control-container img{
height: 20px;
width: 20px;
}
}