-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
62 lines (54 loc) · 901 Bytes
/
index.css
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
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #000;
}
.main {
width: 100%;
display: flex;
align-items: flex-end;
justify-content: center;
padding: 1rem;
position: relative;
height: 100vh;
}
canvas {
width: 100%;
height: 100%;
box-shadow: 0 0 4px 1px #fff;
}
.upload_audio {
padding: 1rem;
background-color: #000;
color: #fff;
font-size: 2rem;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 30px;
left: 50%;
transform: translateX(-50%);
}
@media(max-width:490px) {
.upload_audio {
font-size: 1rem;
}
}
.upload_audio i {
margin-left: 0.5rem;
}
input {
position: absolute;
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
cursor: pointer;
}