File size: 1,475 Bytes
1a25ebd |
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 84 85 86 87 88 89 90 |
/* styles.css */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
#chat-container {
max-width: 400px;
margin: 20px auto;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
#chat-header {
background-color: #6cb2eb;
color: #fff;
padding: 15px;
display: flex;
align-items: center;
}
#llama-icon {
width: 40px;
height: 40px;
margin-right: 10px;
}
#chat-header h1 {
margin: 0;
font-size: 24px;
}
#chat-history {
padding: 15px;
height: 300px;
overflow-y: scroll;
}
#chat-input {
padding: 15px;
display: flex;
align-items: center;
background-color: #f5f5f5;
}
#user-input {
flex: 1;
padding: 10px;
border: none;
border-radius: 20px;
margin-right: 10px;
}
#send-button {
background-color: #6cb2eb;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 20px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#send-button:hover {
background-color: #4a8dc2;
}
.user-message {
background-color: #e2f1fc;
border-radius: 20px;
padding: 10px 15px;
margin-bottom: 10px;
max-width: 70%;
word-wrap: break-word;
}
.bot-message {
background-color: #f5f5f5;
border-radius: 20px;
padding: 10px 15px;
margin-bottom: 10px;
max-width: 70%;
word-wrap: break-word;
}
|