Spaces:
Runtime error
Runtime error
File size: 952 Bytes
97afcd0 9da352a 97afcd0 9da352a 97afcd0 9da352a 97afcd0 9da352a 97afcd0 9da352a 97afcd0 9da352a 97afcd0 9da352a 97afcd0 9da352a 97afcd0 9da352a 97afcd0 9da352a 97afcd0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
body {
font-family: Arial, sans-serif;
background-color: #f3f4f6;
color: #333;
}
header {
text-align: center;
padding: 1rem;
background-color: #4caf50;
color: white;
}
main {
max-width: 600px;
margin: 0 auto;
padding: 2rem;
}
#chat-container {
border: 1px solid #ccc;
border-radius: 10px;
padding: 1rem;
background-color: white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#chat-history {
border-bottom: 1px solid #ccc;
padding-bottom: 1rem;
margin-bottom: 1rem;
height: 300px;
overflow-y: auto;
}
input[type="text"] {
width: calc(100% - 80px);
padding: 0.5rem;
margin-right: 1rem;
}
button {
padding: 0.5rem;
cursor: pointer;
}
#voice-chat {
background-color: #4caf50;
color: white;
border: none;
border-radius: 5px;
}
#send-button {
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
}
|