File size: 1,973 Bytes
0632cd1 56779ed 0632cd1 56779ed |
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
: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;
/*z-index: 10;*/
/*position: relative;*/
}
.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);
}
.extraDataLink {
color: #105ead;
text-decoration: none;
position: relative;
}
.extraDataLink:hover {
color: #1164b7;
text-decoration: none;
z-index: 150;
}
.tooltip-elem {
position: absolute;
background-color: black;
color: white;
font-size: 12px;
padding: 8px;
border-radius: 4px;
z-index: 1000;
display: none;
}
.extraDataLink + .tooltip-elem {
position: absolute;
}
.tooltip-img{
border-radius: 4px;
margin-bottom: 5px;
}
.tooltip-elem a{
text-decoration: none;
color: #008dff;
} |