-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (64 loc) · 996 Bytes
/
Copy pathstyle.css
File metadata and controls
75 lines (64 loc) · 996 Bytes
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
body, html {
background: black;
font-family: Roboto;
height: 100%;
margin: 0;
padding-top: 1%;
}
.container {
height: 100%;
}
.flex-container {
display: flex;
justify-content: center;
}
button {
font-size: 24px;
height: 50px;
margin-right: 20px;
width: 270px;
}
#midi {
background: #00BA8C;
border: 1px solid #00BA8C;
border-radius: 2px;
color: white;
font-weight: bold;
margin-right: 0;
padding: 5px 20px;
}
#record, #stop, #wav {
background: darkred;
border: 1px solid darkred;
border-radius: 2px;
color: white;
font-size: 24px;
font-weight: bold;
padding: 5px 20px;
}
#record {
background: red;
}
#wav {
background: #F15A2B;
}
.hidden {
display: none;
}
.instructions {
color: white;
font-size: 18px;
line-height: 1.5;
margin: 0 auto;
margin-bottom: 25px;
width: 600px;
}
audio {
margin-bottom: 20px;
margin-top: 20px;
}
@media screen and (max-width: 700px) {
body .glitchButton {
display: none;
}
}