-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (125 loc) · 2.13 KB
/
style.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: serif;
}
html {
scroll-behavior: smooth;
}
body {
background-image: url("../Sprinkle.svg");
background-size: cover;
background-attachment: fixed;
}
#streams {
overflow: hidden;
position: relative;
display: grid;
place-items: center;
border-radius: 10px;
}
#streams video:nth-child(2) {
position: relative;
width: 95%;
height: 90vh;
border-radius: 10px;
}
#localVideo {
z-index: 99;
height: 8rem;
width: 11rem;
border-radius: 25px;
position: fixed;
top: 10px;
left: 10px;
box-shadow: -1px 0px 6px 2px #ffffffad;
}
#remoteVideo {
border-radius: 25px;
border: 1px solid #000000;
background-color: #bbb8bc57;
}
.head {
text-align: center;
border: 1px solid white;
background-color: #e3e3e37d;
padding: 10px;
}
.head a {
text-decoration: underline;
color: black;
font-weight: bold;
}
#dashboard {
position: absolute;
z-index: 99;
left: 35%;
display: flex;
flex-direction: column;
align-content: center;
flex-wrap: wrap;
padding: 15px;
background: #ffffffc9;
}
#dashboard button {
padding: 8px;
background-color: white;
margin-top: 4px;
}
#dashboard input {
padding: 8px;
border-radius: 5px;
}
#controls {
z-index: 999;
position: fixed;
bottom: 40px;
left: 40%;
background-color: #c6c6c69c;
border-radius: 10px;
padding: 10px;
}
#controls #muteButton {
background-color: transparent;
border-color: transparent;
transform: scale(2, 2);
margin: 20px;
cursor: pointer;
}
#controls #videoButton {
background-color: transparent;
border-color: transparent;
transform: scale(2, 2);
margin: 20px;
cursor: pointer;
}
#controls #closeChat {
background-color: transparent;
border-color: transparent;
transform: scale(2, 2);
margin: 20px;
cursor: pointer;
color: red;
}
#controls #videoButton:hover {
color: #2c2c2cab;
}
#controls #closeChat:hover {
color: #ff000080;
}
#menu {
background-color: white;
padding: 10px;
border-radius: 10px;
margin: 10% 0 0;
}
#controls #muteButton:hover {
color: #2c2c2cab;
}
.hidden {
display: none !important;
}
.block {
display: block;
}