Spaces:
Running
Running
File size: 1,165 Bytes
9a2edf8 7ff7037 9a2edf8 7ff7037 9a2edf8 7ff7037 9a2edf8 7ff7037 9a2edf8 7ff7037 9a2edf8 7ff7037 9a2edf8 7ff7037 9a2edf8 7ff7037 |
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 |
/*BODY AND BACKGROUND*/
body {
background-color: #1E1E1E;
color: #FFFFFF;
font-family: 'Inter', sans-serif;
}
/*CHATBOT*/
.gr-chatbot {
background-color: #F5F0E1;
border-radius: 16px;
padding: 20px;
font-family: 'Inter', sans-serif;
color: #1E1E1E;
}
/*CHAT BUBBLES*/
.gr-chatbot .message {
background-color: #F5F0E1 !important;
color: #1E1E1E !important;
border-radius: 12px;
padding: 8px 12px;
margin-bottom: 6px;
}
/*INPUTS AND DROPDOWNS*/
.gr-dropdown, .gr-textbox {
border-radius: 12px;
border: 1px solid #A892FF;
background-color: #F5F0E1;
color: #1E1E1E;
padding: 8px;
}
/*Placeholder text for inputs*/
.gr-textbox::placeholder {
color: #B0B0B0;
}
/*BUTTONS*/
.gr-button {
border-radius: 12px;
background-color: #6C63FF;
color: #FFFFFF;
font-weight: 600;
}
.gr-button:hover {
background-color: #A892FF;
}
/*HEADER TEXT*/
.header-text {
font-family: 'Poppins', sans-serif;
font-weight: 600;
color: #FFFFFF;
}
#agent-avatar {
width: 100px;
height: 100px;
margin-bottom: 12px;
}
/* Avatar default styling */ |