Spaces:
Sleeping
Sleeping
File size: 1,364 Bytes
39dcb26 93c0ec9 39dcb26 |
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
body {
font-family: sans-serif;
margin: 0;
background-color: #f0f0f0;
}
#chat-container {
display: flex;
flex-direction: column;
height: 100vh;
max-width: 800px;
margin: 0 auto;
background-color: white;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
}
#header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
border-bottom: 1px solid #ccc;
background-color: #f9f9f9;
}
#header h1 {
margin: 0;
font-size: 1.5em;
}
#chat-window {
flex-grow: 1;
overflow-y: auto;
padding: 20px;
}
#message-list {
list-style: none;
margin: 0;
padding: 0;
}
#message-list li {
margin-bottom: 10px;
padding: 10px;
border-radius: 5px;
}
#message-list .user-message {
background-color: #dcf8c6;
align-self: flex-end;
}
#message-list .bot-message {
background-color: #f1f0f0;
align-self: flex-start;
}
#input-container {
display: flex;
padding: 20px;
border-top: 1px solid #ccc;
}
#message-input {
flex-grow: 1;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
font-size: 16px;
}
#send-button {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
margin-left: 10px;
cursor: pointer;
}
|