Spaces:
Sleeping
Sleeping
Update static/css/design.css
Browse files- static/css/design.css +5 -27
static/css/design.css
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
body {
|
2 |
overflow: hidden;
|
3 |
-
background-color: #121212;
|
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,7 +14,7 @@ body {
|
|
16 |
width: 80px;
|
17 |
height: 80px;
|
18 |
border-radius: 50%;
|
19 |
-
background: #
|
20 |
display: flex;
|
21 |
justify-content: center;
|
22 |
align-items: center;
|
@@ -42,7 +40,7 @@ body {
|
|
42 |
}
|
43 |
|
44 |
.circle.active {
|
45 |
-
background: #ff0000;
|
46 |
|
47 |
&:before {
|
48 |
background: gray;
|
@@ -75,28 +73,8 @@ body {
|
|
75 |
bottom: 20px;
|
76 |
left: 50%;
|
77 |
transform: translateX(-50%);
|
78 |
-
background: rgba(
|
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.
|
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 |
}
|
|
|
1 |
body {
|
2 |
overflow: hidden;
|
3 |
+
/*background-color: #121212; */
|
|
|
|
|
4 |
}
|
5 |
|
6 |
.mic-container {
|
|
|
14 |
width: 80px;
|
15 |
height: 80px;
|
16 |
border-radius: 50%;
|
17 |
+
background: #4b83ad;
|
18 |
display: flex;
|
19 |
justify-content: center;
|
20 |
align-items: center;
|
|
|
40 |
}
|
41 |
|
42 |
.circle.active {
|
43 |
+
background: #ff0000;
|
44 |
|
45 |
&:before {
|
46 |
background: gray;
|
|
|
73 |
bottom: 20px;
|
74 |
left: 50%;
|
75 |
transform: translateX(-50%);
|
76 |
+
background: rgba(255, 255, 255, 0.8);
|
|
|
77 |
border-radius: 10px;
|
78 |
padding: 10px 20px;
|
79 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
}
|