-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1009 Bytes
/
index.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
40
41
42
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body{
background-color: rgb(30, 29, 29);
height: 100vh;
width: 100vw;
}
.main{
position: absolute;
margin: auto;
text-align: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
h1{
color: azure;
}
button{
background-color: burlywood;
padding: 1rem;
font-size: larger;
}
@media only screen and (max-width: 600px) {
button{
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="main">
<h1>RECORD</h1>
<button id="record-start">START</button>
<button id="record-stop">STOP</button>
</div>
<script src="index.js"></script>
</body>
</html>