File size: 1,152 Bytes
183ee92 |
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 |
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #eaeff2;
}
.container {
text-align: center;
margin-top: 50px;
}
header {
background-color: #007bff;
color: white;
padding: 20px 0;
}
main {
background-color: #ffffff;
padding: 20px;
margin: 20px auto;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 800px;
}
section {
margin-bottom: 20px;
}
h1, h2 {
margin-bottom: 10px;
}
button {
background-color: #28a745;
color: white;
border: none;
padding: 10px 15px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #218838;
}
#results {
padding: 20px;
background-color: #f4f4f4;
border: 1px solid #cccccc;
border-radius: 5px;
}
.start-button {
background-color: #28a745; /* Green */
/* other styling */
}
.stop-button {
background-color: #dc3545; /* Red */
/* other styling */
}
#audio-chunks {
padding: 20px;
background-color: #f4f4f4;
border: 1px solid #cccccc;
border-radius: 5px;
} |