Spaces:
Sleeping
Sleeping
Create chatgpt.css
Browse files- static/css/chatgpt.css +47 -0
static/css/chatgpt.css
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
display: flex;
|
4 |
+
justify-content: center;
|
5 |
+
align-items: center;
|
6 |
+
height: 100vh;
|
7 |
+
background-color: #f0f0f0;
|
8 |
+
margin: 0;
|
9 |
+
}
|
10 |
+
|
11 |
+
.container {
|
12 |
+
text-align: center;
|
13 |
+
}
|
14 |
+
|
15 |
+
.record-button {
|
16 |
+
background-color: #f44336;
|
17 |
+
color: white;
|
18 |
+
border: none;
|
19 |
+
padding: 20px;
|
20 |
+
border-radius: 50%;
|
21 |
+
font-size: 16px;
|
22 |
+
cursor: pointer;
|
23 |
+
transition: background-color 0.3s, box-shadow 0.3s;
|
24 |
+
}
|
25 |
+
|
26 |
+
.record-button.pulsing {
|
27 |
+
background-color: #d32f2f;
|
28 |
+
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
|
29 |
+
animation: pulse 1s infinite;
|
30 |
+
}
|
31 |
+
|
32 |
+
@keyframes pulse {
|
33 |
+
0% {
|
34 |
+
transform: scale(1);
|
35 |
+
}
|
36 |
+
50% {
|
37 |
+
transform: scale(1.1);
|
38 |
+
}
|
39 |
+
100% {
|
40 |
+
transform: scale(1);
|
41 |
+
}
|
42 |
+
}
|
43 |
+
|
44 |
+
#transcriptionResult {
|
45 |
+
margin-top: 20px;
|
46 |
+
font-size: 18px;
|
47 |
+
}
|