geethareddy commited on
Commit
aa40fa4
·
verified ·
1 Parent(s): cb0a021

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +43 -7
static/styles.css CHANGED
@@ -1,18 +1,54 @@
1
  body {
2
- text-align: center;
3
  font-family: Arial, sans-serif;
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  }
5
 
6
  h1 {
7
- color: #333;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  }
9
 
10
- #mic-button {
11
- width: 100px;
 
 
 
 
 
 
12
  cursor: pointer;
13
  }
14
 
15
- #status {
16
- font-size: 18px;
17
- color: #555;
 
 
 
 
18
  }
 
1
  body {
 
2
  font-family: Arial, sans-serif;
3
+ text-align: center;
4
+ background: linear-gradient(to bottom, #fff, #ffe5d9);
5
+ margin: 0;
6
+ padding: 0;
7
+ }
8
+
9
+ .container {
10
+ background: white;
11
+ width: 400px;
12
+ padding: 20px;
13
+ border-radius: 10px;
14
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
15
+ margin: 50px auto;
16
  }
17
 
18
  h1 {
19
+ color: #ff6600;
20
+ }
21
+
22
+ label {
23
+ display: block;
24
+ text-align: left;
25
+ margin: 10px 0 5px;
26
+ }
27
+
28
+ input {
29
+ width: 100%;
30
+ padding: 10px;
31
+ border: 1px solid #ddd;
32
+ border-radius: 5px;
33
+ margin-bottom: 10px;
34
  }
35
 
36
+ button {
37
+ background-color: #ff6600;
38
+ color: white;
39
+ padding: 15px;
40
+ width: 100%;
41
+ border: none;
42
+ border-radius: 5px;
43
+ font-size: 16px;
44
  cursor: pointer;
45
  }
46
 
47
+ button:hover {
48
+ background-color: #e65c00;
49
+ }
50
+
51
+ .instructions {
52
+ color: #888;
53
+ margin-top: 10px;
54
  }