Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update chat_application/static/styles/styles.css
Browse files
chat_application/static/styles/styles.css
CHANGED
|
@@ -507,6 +507,39 @@ hr {
|
|
| 507 |
background: #016601;
|
| 508 |
}
|
| 509 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 510 |
#idYesBtn {
|
| 511 |
background: green;
|
| 512 |
color: white;
|
|
|
|
| 507 |
background: #016601;
|
| 508 |
}
|
| 509 |
|
| 510 |
+
#feedback-btn {
|
| 511 |
+
color: white;
|
| 512 |
+
font-weight: 800;
|
| 513 |
+
background-color: green;
|
| 514 |
+
text-decoration: none;
|
| 515 |
+
padding: 6px;
|
| 516 |
+
border: 2px solid green;
|
| 517 |
+
display: inline-block;
|
| 518 |
+
margin-top: 5px;
|
| 519 |
+
border-radius: 10px;
|
| 520 |
+
transition: all 0.1s ease-in;
|
| 521 |
+
}
|
| 522 |
+
|
| 523 |
+
#feedback-btn:hover {
|
| 524 |
+
color: green;
|
| 525 |
+
background-color: white;
|
| 526 |
+
}
|
| 527 |
+
|
| 528 |
+
.feedback-col {
|
| 529 |
+
display: flex;
|
| 530 |
+
flex-direction: column;
|
| 531 |
+
gap: 6px;
|
| 532 |
+
|
| 533 |
+
textarea {
|
| 534 |
+
width: 100%;
|
| 535 |
+
min-height: 120px;
|
| 536 |
+
padding: 10px;
|
| 537 |
+
border: 1px solid #ccc;
|
| 538 |
+
border-radius: 6px;
|
| 539 |
+
resize: vertical;
|
| 540 |
+
}
|
| 541 |
+
}
|
| 542 |
+
|
| 543 |
#idYesBtn {
|
| 544 |
background: green;
|
| 545 |
color: white;
|