File size: 933 Bytes
53013c4 |
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 |
body {
font-family: Arial, sans-serif;
background-color: #111;
color: #fff;
line-height: 1.6;
padding: 20px;
}
h1 {
text-align: center;
}
#drop-area {
border: 2px dashed #ccc;
border-radius: 20px;
width: 480px;
margin: 50px auto;
padding: 20px;
text-align: center;
}
#drop-area.highlight {
border-color: #007bff;
}
#fileInput {
display: none;
}
#options, #result {
max-width: 480px;
margin: 20px auto;
}
label, input, button {
display: block;
margin: 10px 0;
}
button {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background-color: #0056b3;
}
#audioPlayer, #downloadLink {
display: block;
margin: 20px auto;
}
#downloadLink {
color: #007bff;
text-decoration: none;
}
#downloadLink:hover {
text-decoration: underline;
} |