-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvoice.css
More file actions
43 lines (37 loc) · 742 Bytes
/
voice.css
File metadata and controls
43 lines (37 loc) · 742 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
body {
font-family: Arial, sans-serif;
margin: 20px;
background: #f4f4f4;
color: #333;
text-align: center;
}
h1 {
color: #2c3e50;
}
#controls {
margin: 20px 0;
}
#controls button {
margin: 10px;
padding: 10px 20px;
background: #3498db;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
#controls button:disabled {
background: #aaa;
}
#status, #result {
margin-top: 20px;
padding: 10px;
border: 1px solid #ccc;
background: #fff;
width: 80%;
max-width: 600px;
margin-left: auto;
margin-right: auto;
white-space: pre-wrap;
word-wrap: break-word;
}