Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. #chatspace {
  2. background-color: black;
  3. border-left: 1px solid #424242;
  4. }
  5. #chatspace * {
  6. -webkit-user-select: text;
  7. user-select: text;
  8. }
  9. #chatconversation {
  10. visibility: hidden;
  11. position: relative;
  12. top: 5px;
  13. padding: 5px;
  14. text-align: left;
  15. line-height: 20px;
  16. font-size: 10pt;
  17. width: 100%;
  18. height: 90%;
  19. overflow-y: scroll;
  20. overflow-x: hidden;
  21. word-wrap: break-word;
  22. }
  23. .localuser {
  24. color: #087dba;
  25. }
  26. .errorMessage {
  27. color: red;
  28. }
  29. .remoteuser {
  30. color: white;
  31. }
  32. #usermsg {
  33. visibility:hidden;
  34. position: absolute;
  35. bottom: 0px;
  36. right: 0px;
  37. width: 83%;
  38. height: 30px;
  39. padding: 5px 5px 5px 0px;
  40. max-height:150px;
  41. min-height:35px;
  42. border: 0px none;
  43. background: #231F20;
  44. color: #a7a7a7;
  45. box-shadow: none;
  46. border-radius:0;
  47. font-size: 10pt;
  48. line-height: 30px;
  49. overflow: hidden;
  50. resize: none;
  51. }
  52. #usermsg:hover {
  53. border: 0px none;
  54. box-shadow: none;
  55. }
  56. #nickname {
  57. position: absolute;
  58. text-align: center;
  59. color: #9d9d9d;
  60. font-size: 18px;
  61. top: 100px;
  62. left: 5px;
  63. right: 5px;
  64. width: 95%;
  65. }
  66. #nickinput {
  67. margin-top: 20px;
  68. font-size: 14px;
  69. background: #231F20;
  70. box-shadow: inset 0 0 3px 2px #a7a7a7;
  71. border: 1px solid #a7a7a7;
  72. color: #a7a7a7;
  73. }
  74. #chatspace .username {
  75. float: left;
  76. padding-left: 5px;
  77. font-weight: bold;
  78. }
  79. #chatspace .timestamp {
  80. float: right;
  81. padding-right: 5px;
  82. font-size: 11px;
  83. }
  84. #chatspace .usermessage {
  85. padding-top: 20px;
  86. padding-left: 5px;
  87. }
  88. .chatArrow {
  89. position: absolute;
  90. height: 15px;
  91. left: 5px;
  92. }
  93. .chatmessage {
  94. background: #231F20;
  95. width: 93%;
  96. margin-left: 5%;
  97. margin-right: auto;
  98. border-radius: 5px;
  99. border-top-left-radius: 0px;
  100. margin-top: 3px;
  101. left: 5px;
  102. color: #a7a7a7;
  103. overflow: hidden;
  104. padding-bottom: 3px;
  105. }
  106. .smiley {
  107. height: 26px;
  108. }
  109. #smileys {
  110. position: absolute;
  111. bottom: 7px;
  112. right: 5px;
  113. background: white;
  114. border-radius: 50px;
  115. height: 26px;
  116. margin: auto;
  117. cursor: pointer;
  118. }
  119. #smileys img {
  120. width: 22px;
  121. padding: 2px;
  122. }
  123. #smileysarea {
  124. position: absolute;
  125. bottom: 0px;
  126. left: 0px;
  127. width: 17%;
  128. min-width: 31px;
  129. height: 40px;
  130. padding: 0px;
  131. max-height:150px;
  132. min-height:35px;
  133. border: 0px none;
  134. background: #231F20;
  135. overflow: hidden;
  136. visibility: hidden;
  137. }
  138. #smileysContainer {
  139. display: none;
  140. position: absolute;
  141. background: #231F20;
  142. border-bottom: 1px solid;
  143. border-top: 1px solid;
  144. width: 100%;
  145. bottom: 10%;
  146. }
  147. #smileysContainer .smiley {
  148. padding: 7px;
  149. }
  150. .smileyContainer {
  151. width: 40px;
  152. height: 40px;
  153. display: inline-block;
  154. }
  155. .smileyContainer:hover {
  156. background: #3e3e3e;
  157. }
  158. #usermsg::-webkit-input-placeholder {
  159. line-height: 30px;
  160. }
  161. ::-webkit-scrollbar {
  162. background: #06a5df;
  163. width: 7px;
  164. }
  165. ::-webkit-scrollbar-button {
  166. display: none;
  167. }
  168. ::-webkit-scrollbar-track {
  169. background: black;
  170. }
  171. ::-webkit-scrollbar-track-piece {
  172. background: black;
  173. }
  174. ::-webkit-scrollbar-thumb {
  175. background: #06a5df;
  176. border-radius: 4px;
  177. }
  178. #usermsg::-webkit-scrollbar-track-piece {
  179. background: #231F20;
  180. }