-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdropdown.html
More file actions
154 lines (145 loc) · 3.18 KB
/
Copy pathdropdown.html
File metadata and controls
154 lines (145 loc) · 3.18 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html>
<head>
<style>
* {
-webkit-user-select: none;
user-select: none;
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: 'Custom_Font';
src: local('.SFNSText-Light'),
local('.HelveticaNeueDeskInterface-Light'),
local('.LucidaGrandeUI'),
local('Ubuntu Light'),
local('Segoe UI Light'),
local('Roboto-Light'),
local('DroidSans'),
local('Tahoma');
}
html, body {
width: 320px;
background-color: #F3F3F3;
font-family: Custom_Font, sans-serif;
font-size: 14px;
}
.header {
background: #2c3e50;
color: white;
padding: 10px 14px;
font-size: 16px;
font-weight: bold;
}
.section {
padding: 10px 14px;
}
.section-title {
font-size: 12px;
color: #777;
text-transform: uppercase;
margin-bottom: 6px;
}
.radio-group {
display: flex;
gap: 12px;
margin-bottom: 4px;
}
.radio-group label {
cursor: pointer;
display: flex;
align-items: center;
gap: 4px;
}
.toggle-list {
list-style: none;
}
.toggle-list li {
padding: 5px 0;
}
.toggle-list label {
cursor: pointer;
display: flex;
align-items: center;
gap: 6px;
}
hr {
border: 0;
border-top: 1px solid #ddd;
}
.btn-record {
display: block;
width: 100%;
padding: 10px;
font-size: 15px;
font-weight: bold;
color: white;
background: #e74c3c;
border: none;
cursor: pointer;
text-align: center;
}
.btn-record:hover {
background: #c0392b;
}
.btn-record.stop {
background: #555;
}
.btn-record.stop:hover {
background: #333;
}
.footer {
display: flex;
justify-content: space-between;
padding: 8px 14px;
}
.footer a {
color: #0C97BB;
text-decoration: none;
font-size: 13px;
}
.footer a:hover {
text-decoration: underline;
}
</style>
<title>VigoTechTV</title>
</head>
<body>
<div class="header">VigoTechTV</div>
<article id="default-section">
<div class="section">
<div class="section-title">Source</div>
<div class="radio-group">
<label><input type="radio" name="source" value="screen" checked> Screen</label>
<label><input type="radio" name="source" value="tab"> Chrome Tab</label>
</div>
</div>
<hr>
<div class="section">
<div class="section-title">Options</div>
<ul class="toggle-list">
<li><label><input type="checkbox" id="opt-mic"> Microphone</label></li>
<li><label><input type="checkbox" id="opt-camera"> Camera (PiP)</label></li>
<li><label><input type="checkbox" id="opt-speakers"> System audio</label></li>
</ul>
</div>
<hr>
<div class="section">
<button class="btn-record" id="btn-start">Start Recording</button>
</div>
</article>
<article id="stop-section" style="display:none;">
<div class="section">
<button class="btn-record stop" id="btn-stop">Stop Recording</button>
</div>
</article>
<hr>
<div class="footer">
<a href="preview.html" target="_blank">Recordings</a>
<a id="btn-options" href="options.html" target="_blank">Options</a>
</div>
<script src="dropdown.js"></script>
</body>
</html>