Spaces:
Paused
Paused
Create style.css
Browse files
style.css
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Global Body Styling */
|
| 2 |
+
body {
|
| 3 |
+
font-family: 'Arial', sans-serif;
|
| 4 |
+
background-color: #f9f9f9;
|
| 5 |
+
color: #333;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
/* Chat Message Styling */
|
| 9 |
+
.chat-message {
|
| 10 |
+
margin: 1rem 0;
|
| 11 |
+
padding: 1rem;
|
| 12 |
+
border-radius: 10px;
|
| 13 |
+
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
|
| 14 |
+
background-color: #ffffff;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
.chat-message.assistant {
|
| 18 |
+
border-left: 4px solid #007bff;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
.chat-message.user {
|
| 22 |
+
border-left: 4px solid #28a745;
|
| 23 |
+
background-color: #e9f7ef;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
/* Audio Recorder Button */
|
| 27 |
+
.audio-recorder {
|
| 28 |
+
margin: 1rem auto;
|
| 29 |
+
padding: 10px 20px;
|
| 30 |
+
background-color: #007bff;
|
| 31 |
+
color: #fff;
|
| 32 |
+
font-weight: bold;
|
| 33 |
+
border-radius: 5px;
|
| 34 |
+
cursor: pointer;
|
| 35 |
+
transition: background-color 0.3s;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
.audio-recorder:hover {
|
| 39 |
+
background-color: #0056b3;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
/* Footer */
|
| 43 |
+
.footer {
|
| 44 |
+
background-color: #f1f1f1;
|
| 45 |
+
text-align: center;
|
| 46 |
+
padding: 1rem 0;
|
| 47 |
+
position: fixed;
|
| 48 |
+
width: 100%;
|
| 49 |
+
bottom: 0;
|
| 50 |
+
box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
.footer-text {
|
| 54 |
+
font-size: 0.9rem;
|
| 55 |
+
color: #666;
|
| 56 |
+
}
|