-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (50 loc) · 903 Bytes
/
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
body {
margin: 0;
overflow-y: hidden;
}
video {
width: 100%;
height: 100%;
}
.videos {
display: flex;
align-items: center;
justify-content: center;
}
.preview {
width: 200px;
height: auto;
margin: auto;
position: absolute;
bottom: 1em;
left: 1em;
background: #2c3e50;
z-index: 1;
}
.remote {
position: absolute;
width: 100%;
top: 0;
left: 0;
height: 100vh;
background: #2c3e50;
}
.controls {
position: absolute;
bottom: 20px;
right: 0;
}
/* Style buttons */
.controls .btn {
background-color: DodgerBlue; /* Blue background */
border: none; /* Remove borders */
color: white; /* White text */
padding: 12px 16px; /* Some padding */
font-size: 16px; /* Set a font size */
cursor: pointer; /* Mouse pointer on hover */
margin-right: 0.5em;
}
/* Darker background on mouse-over */
.controls .btn:hover {
background-color: RoyalBlue;
}