-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 812 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
43
44
<!DOCTYPE html>
<style>
.App-Turntable {
border: 1px solid black;
display: inline-block;
padding: 10px;
margin-right: 10px;
}
.App-Pitch {
-webkit-appearance: slider-vertical; /* WebKit */
height: 360px;
padding: 0;
margin: 0;
width: 1px;
margin-left: 15px;
transform: rotate(180deg);
}
.App-RecordBag {
width: 100%;
margin-bottom: 10px;
}
.App-RecordBag input {
width: 97%;
height: 20px;
font-size: 18px;
color: grey;
}
</style>
<html>
<head>
<meta charset="UTF-8" />
<title>ytdj</title>
</head>
<body>
<div class="app-root"></div>
<script src="./dist/bundle.js"></script>
</body>
</html>