simplechat.css 802 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /**
  2. * the styling of the simplechat web frontend
  3. * by Humans for All
  4. */
  5. #fullbody {
  6. height: 98vh;
  7. }
  8. .heading {
  9. background-color: lightgray;
  10. }
  11. .session-selected {
  12. background-color: lightblue;
  13. }
  14. .role-system {
  15. background-color: lightblue;
  16. }
  17. .role-user {
  18. background-color: lightgray;
  19. }
  20. .flex-grow {
  21. flex-grow: 1;
  22. }
  23. .float-right {
  24. float: right;
  25. }
  26. #chat-div {
  27. overflow: scroll;
  28. flex-grow: 1;
  29. flex-shrink: 1;
  30. min-height: 40vh;
  31. }
  32. button {
  33. min-width: 8vw;
  34. }
  35. .sameline {
  36. display: flex;
  37. flex-direction: row;
  38. }
  39. .samecolumn {
  40. display: flex;
  41. flex-direction: column;
  42. }
  43. .ul1 {
  44. padding-inline-start: 2vw;
  45. }
  46. .ul2 {
  47. padding-inline-start: 2vw;
  48. }
  49. * {
  50. margin: 0.6vmin;
  51. }
  52. @media print {
  53. #fullbody {
  54. height: auto;
  55. }
  56. }