Sergidev commited on
Commit
53013c4
·
verified ·
1 Parent(s): bbfd7c9

Create styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +65 -0
static/styles.css ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #111;
4
+ color: #fff;
5
+ line-height: 1.6;
6
+ padding: 20px;
7
+ }
8
+
9
+ h1 {
10
+ text-align: center;
11
+ }
12
+
13
+ #drop-area {
14
+ border: 2px dashed #ccc;
15
+ border-radius: 20px;
16
+ width: 480px;
17
+ margin: 50px auto;
18
+ padding: 20px;
19
+ text-align: center;
20
+ }
21
+
22
+ #drop-area.highlight {
23
+ border-color: #007bff;
24
+ }
25
+
26
+ #fileInput {
27
+ display: none;
28
+ }
29
+
30
+ #options, #result {
31
+ max-width: 480px;
32
+ margin: 20px auto;
33
+ }
34
+
35
+ label, input, button {
36
+ display: block;
37
+ margin: 10px 0;
38
+ }
39
+
40
+ button {
41
+ background-color: #007bff;
42
+ color: #fff;
43
+ border: none;
44
+ padding: 10px 20px;
45
+ cursor: pointer;
46
+ border-radius: 5px;
47
+ }
48
+
49
+ button:hover {
50
+ background-color: #0056b3;
51
+ }
52
+
53
+ #audioPlayer, #downloadLink {
54
+ display: block;
55
+ margin: 20px auto;
56
+ }
57
+
58
+ #downloadLink {
59
+ color: #007bff;
60
+ text-decoration: none;
61
+ }
62
+
63
+ #downloadLink:hover {
64
+ text-decoration: underline;
65
+ }