-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
127 lines (110 loc) · 1.79 KB
/
styles.css
File metadata and controls
127 lines (110 loc) · 1.79 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
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
126
127
body {
margin: 0;
overflow: hidden;
font-family: Arial, sans-serif;
}
div.container {
width: 100%;
height: 100%;
}
video {
width: 100%;
}
.device-selection {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
.selection-panel {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
min-width: 300px;
}
.selection-panel h2 {
margin-top: 0;
margin-bottom: 1.5rem;
color: #333;
text-align: center;
}
.device-group {
margin-bottom: 1rem;
}
.device-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
color: #555;
}
.device-group select {
width: 100%;
padding: 0.5rem;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
}
#startButton {
width: 100%;
padding: 0.75rem;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
margin-top: 1rem;
}
#startButton:hover {
background: #0056b3;
}
.controls {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 20px;
align-items: center;
background: rgba(0, 0, 0, 0.7);
padding: 10px 20px;
border-radius: 8px;
z-index: 10;
}
#fullscreenButton {
padding: 8px 16px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
}
#fullscreenButton:hover {
background: #0056b3;
}
.volume-control {
display: flex;
align-items: center;
gap: 10px;
}
.volume-control label {
color: white;
font-size: 14px;
margin: 0;
}
#volumeSlider {
width: 100px;
}
#volumeValue {
color: white;
font-size: 14px;
min-width: 30px;
}