Spaces:
Sleeping
Sleeping
Update static/css/design.css
Browse files- static/css/design.css +27 -4
static/css/design.css
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
body {
|
2 |
overflow: hidden;
|
|
|
|
|
|
|
3 |
}
|
4 |
|
5 |
.mic-container {
|
@@ -13,7 +16,7 @@ body {
|
|
13 |
width: 80px;
|
14 |
height: 80px;
|
15 |
border-radius: 50%;
|
16 |
-
background: #4b83ad
|
17 |
display: flex;
|
18 |
justify-content: center;
|
19 |
align-items: center;
|
@@ -39,7 +42,7 @@ body {
|
|
39 |
}
|
40 |
|
41 |
.circle.active {
|
42 |
-
background: #ff0000;
|
43 |
|
44 |
&:before {
|
45 |
background: gray;
|
@@ -72,8 +75,28 @@ body {
|
|
72 |
bottom: 20px;
|
73 |
left: 50%;
|
74 |
transform: translateX(-50%);
|
75 |
-
background: rgba(
|
|
|
76 |
border-radius: 10px;
|
77 |
padding: 10px 20px;
|
78 |
-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
}
|
|
|
1 |
body {
|
2 |
overflow: hidden;
|
3 |
+
background-color: #121212; /* Dark background for the whole app */
|
4 |
+
color: #ffffff; /* Light text color for better contrast */
|
5 |
+
font-family: Arial, sans-serif; /* Optional: Set a default font for better appearance */
|
6 |
}
|
7 |
|
8 |
.mic-container {
|
|
|
16 |
width: 80px;
|
17 |
height: 80px;
|
18 |
border-radius: 50%;
|
19 |
+
background: #ffffff; /* Initial color of the microphone circle #4b83ad */
|
20 |
display: flex;
|
21 |
justify-content: center;
|
22 |
align-items: center;
|
|
|
42 |
}
|
43 |
|
44 |
.circle.active {
|
45 |
+
background: #ff0000; /* Active color of the microphone circle */
|
46 |
|
47 |
&:before {
|
48 |
background: gray;
|
|
|
75 |
bottom: 20px;
|
76 |
left: 50%;
|
77 |
transform: translateX(-50%);
|
78 |
+
background: rgba(0, 0, 0, 0.8); /* Dark background for the output container */
|
79 |
+
color: #ffffff; /* Light text color for the output container */
|
80 |
border-radius: 10px;
|
81 |
padding: 10px 20px;
|
82 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
|
83 |
+
}
|
84 |
+
|
85 |
+
/* Style for the audio player container */
|
86 |
+
#audioPlayerContainer {
|
87 |
+
position: fixed;
|
88 |
+
bottom: 80px; /* Adjust position based on your needs */
|
89 |
+
left: 50%;
|
90 |
+
transform: translateX(-50%);
|
91 |
+
background: rgba(0, 0, 0, 0.8); /* Dark background */
|
92 |
+
color: #ffffff; /* Light text color */
|
93 |
+
border-radius: 10px;
|
94 |
+
padding: 10px 20px;
|
95 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
|
96 |
+
display: none; /* Initially hidden */
|
97 |
+
}
|
98 |
+
|
99 |
+
#audioPlayer {
|
100 |
+
width: 100%;
|
101 |
+
/* Adjust styles for the audio player if needed */
|
102 |
}
|