-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
72 lines (63 loc) · 1.15 KB
/
index.css
File metadata and controls
72 lines (63 loc) · 1.15 KB
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
body {
margin: 0 auto;
width: 700px;
font-family: Helvetica;
}
#log {
margin-top: 50px;
display: block;
max-height: 300px;
overflow: auto;
border: 1px solid #F7F7F7;
}
#audioLog {
display: block;
max-height: 300px;
overflow: auto;
border: 1px solid #F7F7F7;
}
button {
color: white;
height: 44px;
border-radius: 4px;
display: inline-flex;
vertical-align: top;
text-align: center;
display: block;
margin-right: 10px;
}
#auth {
display: none;
/*display: inline-flex;*/
width: 100%;
}
#auth > button {
width: 100px;
background-image: linear-gradient(to bottom, #6FA2FF, #809FFF);
border: solid 1px #809FFF;
}
#rec {
margin-top: 20px;
display: inline-flex;
width: 100%;
}
#startRecording {
margin-top: 20px;
width: 100px;
height: 100px;
background-image: url(./microphone.png);
background-size: contain;
background-repeat: no-repeat;
background-position-x: center;
}
#rec > button {
width: 80px;
background-image: linear-gradient(to bottom, #809FFF, #7745FF);
border: solid 1px #809FFF;
}
#replayAudio {
display: none;
}
#stopAudio {
display: none;
}