style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. :root {
  2. box-sizing: border-box;
  3. font-size: 16px;
  4. line-height: 20px;
  5. font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  6. }
  7. body {
  8. background-color: #ececec;
  9. }
  10. p {
  11. padding: 0;
  12. margin: 0;
  13. }
  14. .container {
  15. max-width: 1200px;
  16. padding: 0 10px;
  17. margin: 0 auto;
  18. }
  19. .form {
  20. display: flex;
  21. justify-content: space-between;
  22. align-items: flex-start;
  23. padding-bottom: 15px;
  24. }
  25. .form input {
  26. width: 20%;
  27. font-size: 1.1em;
  28. line-height: 1.2em;
  29. border: none;
  30. padding: 3px 5px;
  31. border-radius: 3px;
  32. box-shadow: 0px 0px 7px 4px rgb(34 60 80 / 78%);
  33. }
  34. .form textarea {
  35. width: 65%;
  36. resize: none;
  37. font-size: 1.1em;
  38. line-height: 1.2em;
  39. box-shadow: 0px 0px 7px 4px rgb(34 60 80 / 78%);
  40. }
  41. .form button {
  42. width: 10%;
  43. cursor: pointer;
  44. font-size: 1.1em;
  45. line-height: 1.2em;
  46. border: none;
  47. border-radius: 3px;
  48. background-color: transparent;
  49. box-shadow: 0px 0px 7px 4px rgb(34 60 80 / 78%);
  50. }
  51. .error {
  52. background-color: #ff00006c;
  53. }
  54. .title {
  55. font-size: 2em;
  56. text-align: center;
  57. margin-bottom: 10px;
  58. line-height: 1em;
  59. }
  60. .box {
  61. display: flex;
  62. padding: 5px 0;
  63. }
  64. .message {
  65. max-width: 100%;
  66. word-break: break-all;
  67. background-color: rgb(190, 217, 228);
  68. border-radius: 15px;
  69. min-height: 15px;
  70. padding: 8px 15px;
  71. position: relative;
  72. margin-left: 30px;
  73. z-index: 4;
  74. }
  75. .message::before {
  76. content: "";
  77. position: absolute;
  78. height: 20px;
  79. width: 35px;
  80. background-color: rgb(190, 217, 228);
  81. bottom: 0;
  82. left: -20px;
  83. z-index: -2;
  84. }
  85. .message::after {
  86. content: "";
  87. position: absolute;
  88. height: 39px;
  89. width: 25px;
  90. background-color: #ececec;
  91. bottom: -1px;
  92. left: -25px;
  93. border-bottom-right-radius: 26px;
  94. z-index: -1;
  95. }
  96. .nick {
  97. min-width: 15vw;
  98. align-self: flex-end;
  99. font-size: 1.3em;
  100. font-weight: 700;
  101. margin-right: 20px;
  102. }
  103. /* .time {
  104. font-style: italic;
  105. font-size: 0.7em;
  106. color: rgb(6, 0, 87);
  107. display: block;
  108. } */