html_instruct_style.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .chat {
  2. margin-left: auto;
  3. margin-right: auto;
  4. max-width: 800px;
  5. height: 66.67vh;
  6. overflow-y: auto;
  7. padding-right: 20px;
  8. display: flex;
  9. flex-direction: column-reverse;
  10. }
  11. .message {
  12. display: grid;
  13. grid-template-columns: 60px 1fr;
  14. padding-bottom: 25px;
  15. font-size: 15px;
  16. font-family: Helvetica, Arial, sans-serif;
  17. line-height: 1.428571429;
  18. }
  19. .text p {
  20. margin-top: 5px;
  21. }
  22. .username {
  23. display: none;
  24. }
  25. .message-body {}
  26. .message-body p {
  27. margin-bottom: 0 !important;
  28. font-size: 15px !important;
  29. line-height: 1.428571429 !important;
  30. }
  31. .dark .message-body p em {
  32. color: rgb(138, 138, 138) !important;
  33. }
  34. .message-body p em {
  35. color: rgb(110, 110, 110) !important;
  36. }
  37. .gradio-container .chat .assistant-message {
  38. padding: 15px;
  39. border-radius: 20px;
  40. background-color: #0000000f;
  41. margin-bottom: 17.5px;
  42. }
  43. .gradio-container .chat .user-message {
  44. padding: 15px;
  45. border-radius: 20px;
  46. margin-bottom: 17.5px !important;
  47. }
  48. .dark .chat .assistant-message {
  49. background-color: #ffffff21;
  50. }