-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
39 lines (39 loc) · 995 Bytes
/
welcome.html
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
body{font-size: 16px;font-family: arial, sans-serif;color:#444;margin-bottom:64px;}
button{font-size: 16px;font-family: sans-serif;cursor:pointer;outline:none;padding:8px;background-color: deepskyblue;border:0;border-radius: 16px;}
button:hover{opacity: 0.8;}
.video{
width:200px;
height:auto;
cursor: pointer;
}
.file{
display: flex;
flex-direction: row;
align-items: center;
border-bottom: 1px solid lightgray;
}
.details{
margin:8px;
line-height: 1.6;
}
h1{
display: flex;
flex-direction: row;
align-items: center;
}
</style>
<body>
<h1><img height='64px' src='icons/off.png'>ScreenDrop</h1>
<p>In order to record your microphone with your screen <button id='mic'>enable microphone access</button> <span id='result'></span></p>
<label><input id="keep" type="checkbox"> Keep last file only</label>
<h4>My recordings</h4>
<div id='myfiles'>
</div>
<script src='welcome.js'></script>
</body>
</html>