-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.css
More file actions
85 lines (72 loc) · 1.74 KB
/
Copy pathfeedback.css
File metadata and controls
85 lines (72 loc) · 1.74 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
78
79
80
81
82
83
84
85
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
position: sticky;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.local-video, .remote-video {
flex: 1;
text-align: center;
margin: 20px;
}
video {
width: 100%;
max-width: 500px; /* Adjust the max-width here to increase the size */
border: 2px solid #ccc;
border-radius: 10px;
box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.423);
}
h2 {
margin-bottom: 10px;
}
.controls {
margin-top: 20px;
}
button {
padding: 10px 20px;
margin: 0 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
@media (max-width: 768px) {
.container {
flex-direction: column;
}
.local-video, .remote-video {
margin: 10px 0;
}
video {
max-width: 100%;
}
.controls {
margin-bottom: 20px;
}
}
.remote-video {
position: relative; /* Ensure the container is positioned relatively */
flex: 1;
text-align: center;
margin: 20px;
background-image: url('/pictures/67.jpg') ;
background-size: contain; /* Ensure the background image is contained within the container */
background-repeat: no-repeat; /* Prevent the background image from repeating */
background-position: center; /* Center the background image */
border: 2px solid #ccc;
border-radius: 10px;
box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.423);
}