-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
77 lines (72 loc) · 1.47 KB
/
Copy pathmain.css
File metadata and controls
77 lines (72 loc) · 1.47 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
body{
background:#252525;
/* background:-webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027) ;
background: linear-gradient(to right, #2C5364, #203A43, #0F2027); */
height: 100%;
}
h1{
position: fixed;
top: 10%;
width: 700px;
left: 50%;
text-align: center;
/* margin-top: 150px; */
color: #fff;
font-size: 60px;
font-family: sans-serif;
/* margin-top: -50px; */
margin-left: -330px;
}
#join-btn{
position: fixed;
top:50%;
left:50%;
margin-top:-50px;
margin-left:-100px;
font-size:25px;
padding:20px 40px;
border-radius: 2px;
border: 3px solid #05a1e4;
background-color: #2c2c2c;
transition: all 0.5s ease;
}
#join-btn:hover{
background-color: #05a1e4;
color: #000000;
}
#video-streams{
display:grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
height: 90vh;
width: 1400px;
margin:0 auto;
}
.video-container{
max-height: 100%;
border: 2px solid black;
background-color: #203A49;
}
.video-player{
height: 100%;
width: 100%;
}
button{
border:none;
background-color: cadetblue;
color:#fff;
padding:10px 20px;
font-size:16px;
margin:2px;
cursor: pointer;
}
#stream-controls{
display: none;
justify-content: center;
margin-top:0.5em;
}
@media screen and (max-width:1400px){
#video-streams{
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
width: 95%;
}
}