Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
-
/*
|
| 2 |
body {
|
| 3 |
background-color: #1E1E1E;
|
| 4 |
color: #FFFFFF;
|
| 5 |
font-family: 'Inter', sans-serif;
|
| 6 |
}
|
| 7 |
|
| 8 |
-
/*
|
| 9 |
.gr-chatbot {
|
| 10 |
background-color: #F5F0E1;
|
| 11 |
border-radius: 16px;
|
|
@@ -14,7 +14,7 @@ body {
|
|
| 14 |
color: #1E1E1E;
|
| 15 |
}
|
| 16 |
|
| 17 |
-
/*
|
| 18 |
.gr-chatbot .message {
|
| 19 |
background-color: #F5F0E1 !important;
|
| 20 |
color: #1E1E1E !important;
|
|
@@ -23,7 +23,7 @@ body {
|
|
| 23 |
margin-bottom: 6px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
/*
|
| 27 |
.gr-dropdown, .gr-textbox {
|
| 28 |
border-radius: 12px;
|
| 29 |
border: 1px solid #A892FF;
|
|
@@ -32,12 +32,12 @@ body {
|
|
| 32 |
padding: 8px;
|
| 33 |
}
|
| 34 |
|
| 35 |
-
/*
|
| 36 |
.gr-textbox::placeholder {
|
| 37 |
color: #B0B0B0;
|
| 38 |
}
|
| 39 |
|
| 40 |
-
/*
|
| 41 |
.gr-button {
|
| 42 |
border-radius: 12px;
|
| 43 |
background-color: #6C63FF;
|
|
@@ -49,7 +49,7 @@ body {
|
|
| 49 |
background-color: #A892FF;
|
| 50 |
}
|
| 51 |
|
| 52 |
-
/*
|
| 53 |
.header-text {
|
| 54 |
font-family: 'Poppins', sans-serif;
|
| 55 |
font-weight: 600;
|
|
@@ -57,8 +57,8 @@ body {
|
|
| 57 |
}
|
| 58 |
|
| 59 |
#agent-avatar {
|
| 60 |
-
width:
|
| 61 |
-
height:
|
| 62 |
margin-bottom: 12px;
|
| 63 |
}
|
| 64 |
|
|
|
|
| 1 |
+
/*BODY AND BACKGROUND*/
|
| 2 |
body {
|
| 3 |
background-color: #1E1E1E;
|
| 4 |
color: #FFFFFF;
|
| 5 |
font-family: 'Inter', sans-serif;
|
| 6 |
}
|
| 7 |
|
| 8 |
+
/*CHATBOT*/
|
| 9 |
.gr-chatbot {
|
| 10 |
background-color: #F5F0E1;
|
| 11 |
border-radius: 16px;
|
|
|
|
| 14 |
color: #1E1E1E;
|
| 15 |
}
|
| 16 |
|
| 17 |
+
/*CHAT BUBBLES*/
|
| 18 |
.gr-chatbot .message {
|
| 19 |
background-color: #F5F0E1 !important;
|
| 20 |
color: #1E1E1E !important;
|
|
|
|
| 23 |
margin-bottom: 6px;
|
| 24 |
}
|
| 25 |
|
| 26 |
+
/*INPUTS AND DROPDOWNS*/
|
| 27 |
.gr-dropdown, .gr-textbox {
|
| 28 |
border-radius: 12px;
|
| 29 |
border: 1px solid #A892FF;
|
|
|
|
| 32 |
padding: 8px;
|
| 33 |
}
|
| 34 |
|
| 35 |
+
/*Placeholder text for inputs*/
|
| 36 |
.gr-textbox::placeholder {
|
| 37 |
color: #B0B0B0;
|
| 38 |
}
|
| 39 |
|
| 40 |
+
/*BUTTONS*/
|
| 41 |
.gr-button {
|
| 42 |
border-radius: 12px;
|
| 43 |
background-color: #6C63FF;
|
|
|
|
| 49 |
background-color: #A892FF;
|
| 50 |
}
|
| 51 |
|
| 52 |
+
/*HEADER TEXT*/
|
| 53 |
.header-text {
|
| 54 |
font-family: 'Poppins', sans-serif;
|
| 55 |
font-weight: 600;
|
|
|
|
| 57 |
}
|
| 58 |
|
| 59 |
#agent-avatar {
|
| 60 |
+
width: 100px;
|
| 61 |
+
height: 100px;
|
| 62 |
margin-bottom: 12px;
|
| 63 |
}
|
| 64 |
|