File size: 1,361 Bytes
0632cd1 |
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 |
:root {
--main-blue-color: #0e88df;
--main-blue-color-hover: #f51958;
--main-bg-color: #e8edf3;
}
body {
font-family: 'Montserrat', sans-serif;
}
.chat-header {
background-color: #f1f1f1;
border-bottom: 1px solid #bdbdbd;
}
.chat-body {
background-image: url('../../static/images/bg.png');
background-size: cover;
padding-top: 1px;
border-top: 1px solid transparent;
display: flex;
flex-direction: column;
overflow-y: auto;
}
.chatbot-window {
border: 1px solid #bdbdbd;
}
/*::placeholder {*/
/* font-size: 30px;*/
/*}*/
.message {
max-width: 100%;
display: flex;
justify-content: flex-start;
margin-top: 5px;
font-size: 14px;
}
.user_message {
background-color: #f3f2f2;
margin-left: auto;
border: 1px solid #d7d7d7;
/*font-size: 20px;*/
}
.bot_message {
margin-right: auto;
background-color: #d1e8ff;
border: 1px solid #71beff;
}
.bot_message p {
margin-bottom: 0;
}
.bot_message ol {
margin-bottom: 0;
}
.bot_message ul {
margin-bottom: 0;
}
.bot_message h3 {
margin-top: 0.5rem;
font-size: 20px;
}
#toggleButton {
cursor: pointer;
position: fixed;
right: 15px;
bottom: 15px;
background-color: #f7f9fc;
border: 1px solid #ddd;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
|