simplechat.css 721 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. * {
  44. margin: 0.6vmin;
  45. }
  46. @media print {
  47. #fullbody {
  48. height: auto;
  49. }
  50. }