CodeNinjaOpenChat / style.css
MosbergControl's picture
Update style.css
dc93d8c
raw
history blame
772 Bytes
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;
}