You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. html, body{
  2. margin:0px;
  3. height:100%;
  4. color: #424242;
  5. font-family:'Helvetica Neue', Helvetica, sans-serif;
  6. font-weight: 400;
  7. background: #000000;
  8. overflow-x: hidden;
  9. }
  10. #chatspace {
  11. display:none;
  12. position:absolute;
  13. float: right;
  14. top: 0px;
  15. bottom: 0px;
  16. right: 0px;
  17. width: 20%;
  18. max-width: 200px;
  19. overflow: hidden;
  20. /* background-color:#dfebf1;*/
  21. background-color:#FFFFFF;
  22. border-left:1px solid #424242;
  23. z-index: 5;
  24. }
  25. #chatconversation {
  26. visibility: hidden;
  27. position: relative;
  28. top: 5px;
  29. padding: 5px;
  30. text-align: left;
  31. line-height: 20px;
  32. font-size: 10pt;
  33. width: 100%;
  34. height: 95%;
  35. overflow-y: scroll;
  36. overflow-x: hidden;
  37. word-wrap: break-word;
  38. }
  39. .localuser {
  40. color: #087dba;
  41. }
  42. .errorMessage {
  43. color: red;
  44. }
  45. .remoteuser {
  46. color: #424242;
  47. }
  48. #usermsg {
  49. visibility:hidden;
  50. position: relative;
  51. width: 100%;
  52. height: 5%;
  53. padding: 5px;
  54. max-height:150px;
  55. min-height:50px;
  56. border: 0px none;
  57. border-top: 1px solid #cccccc;
  58. background: #FFFFFF;
  59. box-shadow: none;
  60. border-radius:0;
  61. font-size: 10pt;
  62. overflow: hidden;
  63. }
  64. #usermsg: hover {
  65. border: 0px none;
  66. border-top: 1px solid #cccccc;
  67. box-shadow: none;
  68. }
  69. #nickname {
  70. position: absolute;
  71. text-align: center;
  72. color: #9d9d9d;
  73. font-size: 18;
  74. top: 100px;
  75. left: 5px;
  76. right: 5px;
  77. width: 95%;
  78. }
  79. #nickinput {
  80. margin-top: 20px;
  81. font-size: 14;
  82. }
  83. #settings {
  84. display:none;
  85. }
  86. #nowebrtc {
  87. display:none;
  88. }
  89. #settingsButton {
  90. visibility: hidden;
  91. }
  92. .toolbar_span {
  93. display: inline-block;
  94. position: relative;
  95. }
  96. .button {
  97. display: inline-block;
  98. position: relative;
  99. color: #FFFFFF;
  100. top: 0;
  101. padding: 10px 0px;
  102. width: 39px;
  103. cursor: pointer;
  104. font-size: 11pt;
  105. text-align: center;
  106. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  107. z-index: 1;
  108. }
  109. .toolbar_span>span {
  110. display: inline-block;
  111. position: absolute;
  112. font-size: 7pt;
  113. color: #ffffff;
  114. text-align:center;
  115. cursor: pointer;
  116. }
  117. #chatButton {
  118. -webkit-transition: all .5s ease-in-out;
  119. -moz-transition: all .5s ease-in-out;
  120. transition: all .5s ease-in-out;
  121. }
  122. /*#ffde00*/
  123. #chatButton.active {
  124. -webkit-text-shadow: -1px 0 10px #00ccff,
  125. 0 1px 10px #00ccff,
  126. 1px 0 10px #00ccff,
  127. 0 -1px 10px #00ccff;
  128. -moz-text-shadow: 1px 0 10px #00ccff,
  129. 0 1px 10px #00ccff,
  130. 1px 0 10px #00ccff,
  131. 0 -1px 10px #00ccff;
  132. text-shadow: -1px 0 10px #00ccff,
  133. 0 1px 10px #00ccff,
  134. 1px 0 10px #00ccff,
  135. 0 -1px 10px #00ccff;
  136. }
  137. #recordButton {
  138. -webkit-transition: all .5s ease-in-out;
  139. -moz-transition: all .5s ease-in-out;
  140. transition: all .5s ease-in-out;
  141. }
  142. /*#ffde00*/
  143. #recordButton.active {
  144. -webkit-text-shadow: -1px 0 10px #00ccff,
  145. 0 1px 10px #00ccff,
  146. 1px 0 10px #00ccff,
  147. 0 -1px 10px #00ccff;
  148. -moz-text-shadow: 1px 0 10px #00ccff,
  149. 0 1px 10px #00ccff,
  150. 1px 0 10px #00ccff,
  151. 0 -1px 10px #00ccff;
  152. text-shadow: -1px 0 10px #00ccff,
  153. 0 1px 10px #00ccff,
  154. 1px 0 10px #00ccff,
  155. 0 -1px 10px #00ccff;
  156. }
  157. a.button:hover {
  158. top: 0;
  159. cursor: pointer;
  160. background: rgba(0, 0, 0, 0.3);
  161. border-radius: 5px;
  162. background-clip: padding-box;
  163. -webkit-border-radius: 5px;
  164. -webkit-background-clip: padding-box;
  165. }
  166. .no-fa-video-camera, .fa-microphone-slash {
  167. color: #636363;
  168. }
  169. .header_button_separator {
  170. display: inline-block;
  171. position:relative;
  172. top: 5;
  173. width: 1px;
  174. height: 20px;
  175. background: #676767;
  176. }
  177. input[type='text'], textarea {
  178. display: inline-block;
  179. font-size: 14px;
  180. padding: 5px;
  181. background: #f3f3f3;
  182. border-radius: 3px;
  183. font-weight: 100;
  184. line-height: 20px;
  185. height: 40px;
  186. color: #333;
  187. text-align: left;
  188. border:1px solid #ACD8F0;
  189. outline: none; /* removes the default outline */
  190. resize: none; /* prevents the user-resizing, adjust to taste */
  191. }
  192. input[type='text'], textarea:focus {
  193. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  194. replacement to the outline */
  195. }
  196. textarea {
  197. overflow: hidden;
  198. word-wrap: break-word;
  199. resize: horizontal;
  200. }
  201. button.no-icon {
  202. padding: 0 1em;
  203. }
  204. button {
  205. border: none;
  206. height: 35px;
  207. padding: 0 1em 0 2em;
  208. position: relative;
  209. border-radius: 3px;
  210. font-weight: bold;
  211. color: #fff;
  212. line-height: 35px;
  213. background: #2c8ad2;
  214. }
  215. button, input, select, textarea {
  216. margin: 0;
  217. vertical-align: baseline;
  218. }
  219. button, input[type="button"], input[type="reset"], input[type="submit"] {
  220. cursor: pointer;
  221. -webkit-appearance: button;
  222. }
  223. form {
  224. display: block;
  225. }
  226. #downloadlog {
  227. position: absolute;
  228. bottom: 5;
  229. left: 5;
  230. overflow: visible;
  231. z-index: 100;
  232. }