1
0

simplechat.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. .role-trim {
  21. background-color: lightpink;
  22. }
  23. .gridx2 {
  24. display: grid;
  25. grid-template-columns: repeat(2, 1fr);
  26. border-bottom-style: dotted;
  27. border-bottom-width: thin;
  28. border-bottom-color: lightblue;
  29. }
  30. .flex-grow {
  31. flex-grow: 1;
  32. }
  33. .float-right {
  34. float: right;
  35. }
  36. #chat-div {
  37. overflow: scroll;
  38. flex-grow: 1;
  39. flex-shrink: 1;
  40. min-height: 40vh;
  41. }
  42. button {
  43. min-width: 8vw;
  44. }
  45. .sameline {
  46. display: flex;
  47. flex-direction: row;
  48. }
  49. .samecolumn {
  50. display: flex;
  51. flex-direction: column;
  52. }
  53. .ul1 {
  54. padding-inline-start: 2vw;
  55. }
  56. .ul2 {
  57. padding-inline-start: 2vw;
  58. }
  59. * {
  60. margin: 0.6vmin;
  61. }
  62. @media print {
  63. #fullbody {
  64. height: auto;
  65. }
  66. }