File size: 772 Bytes
88b078d dc93d8c 88b078d dc93d8c 88b078d dc93d8c 88b078d dc93d8c 88b078d dc93d8c 88b078d |
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 |
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
#chat-container {
width: 60%;
max-width: 800px;
border: 1px solid #ddd;
padding: 20px;
background-color: white;
box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
#chat-box {
height: 400px;
overflow-y: scroll;
border: 1px solid #ccc;
margin-bottom: 10px;
padding: 10px;
}
#user-input {
width: calc(100% - 80px);
padding: 10px;
}
#send-button {
width: 60px;
height: 38px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}
#send-button:hover {
background-color: #0056b3;
}
|