html_instruct_style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. .username {
  20. display: none;
  21. }
  22. .message-body {}
  23. .message-body p {
  24. font-size: 15px !important;
  25. }
  26. .message-body li {
  27. margin-top: 0.5em !important;
  28. margin-bottom: 0.5em !important;
  29. }
  30. .message-body li > p {
  31. display: inline !important;
  32. }
  33. .dark .message-body p em {
  34. color: rgb(138, 138, 138) !important;
  35. }
  36. .message-body p em {
  37. color: rgb(110, 110, 110) !important;
  38. }
  39. .gradio-container .chat .assistant-message {
  40. padding: 15px;
  41. border-radius: 20px;
  42. background-color: #0000000f;
  43. margin-top: 9px !important;
  44. margin-bottom: 18px !important;
  45. }
  46. .gradio-container .chat .user-message {
  47. padding: 15px;
  48. border-radius: 20px;
  49. margin-bottom: 9px !important;
  50. }
  51. .dark .chat .assistant-message {
  52. background-color: #374151;
  53. }