styles.css 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* reseting browser styles */
  2. * {
  3. box-sizing: border-box;
  4. font-family: system-ui;
  5. }
  6. body {
  7. margin: 0;
  8. }
  9. header {
  10. border-bottom: 1px solid grey;
  11. height: 15vh;
  12. padding: 20px 10px;
  13. width: 100%;
  14. border-top: 1px solid grey;
  15. border-bottom: 1px solid grey;
  16. }
  17. header h1,
  18. header h2 {
  19. margin-right: 10px;
  20. margin-left: 10px;
  21. }
  22. sidebar header.open {
  23. height: 225px;
  24. }
  25. sidebar header input {
  26. margin: 10px 0;
  27. }
  28. #thread-list,
  29. #message-list {
  30. list-style: none;
  31. margin: 0;
  32. padding: 0;
  33. }
  34. #message-list {
  35. height: 55vh;
  36. overflow: scroll;
  37. }
  38. #thread-list li {
  39. border-bottom: 1px solid grey;
  40. }
  41. #thread-list li h2 {
  42. padding: 20px 10px;
  43. margin: 0;
  44. }
  45. #message-list li {
  46. padding: 10px 20px;
  47. border-bottom: 1px solid grey;
  48. }
  49. #new-message-form {
  50. height: 100%;
  51. display: flex;
  52. flex-direction: column;
  53. }
  54. #new-message {
  55. height: 30vh;
  56. border-top: 1px solid grey;
  57. }
  58. #new-message-form textarea {
  59. height: 100%;
  60. margin: 10px;
  61. border-radius: 5px;
  62. }
  63. #new-message-form button {
  64. height: 50px;
  65. margin: 10px;
  66. border-radius: 5px
  67. }