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.

main.css 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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. .remoteuser {
  43. color: #424242;
  44. }
  45. #usermsg {
  46. visibility:hidden;
  47. position: relative;
  48. width: 100%;
  49. height: 5%;
  50. padding: 5px;
  51. max-height:150px;
  52. min-height:50px;
  53. border: 0px none;
  54. border-top: 1px solid #cccccc;
  55. background: #FFFFFF;
  56. box-shadow: none;
  57. border-radius:0;
  58. font-size: 10pt;
  59. overflow: hidden;
  60. }
  61. #usermsg: hover {
  62. border: 0px none;
  63. border-top: 1px solid #cccccc;
  64. box-shadow: none;
  65. }
  66. #nickname {
  67. position: absolute;
  68. text-align: center;
  69. color: #9d9d9d;
  70. font-size: 18;
  71. top: 100px;
  72. left: 5px;
  73. right: 5px;
  74. width: 95%;
  75. }
  76. #nickinput {
  77. margin-top: 20px;
  78. font-size: 14;
  79. }
  80. #settings {
  81. display:none;
  82. }
  83. #nowebrtc {
  84. display:none;
  85. }
  86. #settingsButton {
  87. visibility: hidden;
  88. }
  89. .toolbar_span {
  90. display: inline-block;
  91. position: relative;
  92. }
  93. .button {
  94. display: inline-block;
  95. position: relative;
  96. color: #FFFFFF;
  97. top: 0;
  98. padding: 10px 0px;
  99. width: 39px;
  100. cursor: pointer;
  101. font-size: 11pt;
  102. text-align: center;
  103. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  104. z-index: 1;
  105. }
  106. .toolbar_span>span {
  107. display: inline-block;
  108. position: absolute;
  109. font-size: 7pt;
  110. color: #ffffff;
  111. text-align:center;
  112. cursor: pointer;
  113. }
  114. #chatButton {
  115. -webkit-transition: all .5s ease-in-out;;
  116. -moz-transition: all .5s ease-in-out;;
  117. transition: all .5s ease-in-out;;
  118. }
  119. #chatButton.active {
  120. -webkit-text-shadow: 0 0 10px #ffffff;
  121. -moz-text-shadow: 0 0 10px #ffffff;
  122. text-shadow: 0 0 10px #ffffff;
  123. }
  124. a.button:hover {
  125. top: 0;
  126. cursor: pointer;
  127. background: rgba(0, 0, 0, 0.3);
  128. border-radius: 5px;
  129. background-clip: padding-box;
  130. -webkit-border-radius: 5px;
  131. -webkit-background-clip: padding-box;
  132. }
  133. .no-fa-video-camera, .fa-microphone-slash {
  134. color: #636363;
  135. }
  136. .header_button_separator {
  137. display: inline-block;
  138. position:relative;
  139. top: 5;
  140. width: 1px;
  141. height: 20px;
  142. background: #676767;
  143. }
  144. input[type='text'], textarea {
  145. display: inline-block;
  146. font-size: 14px;
  147. padding: 5px;
  148. background: #f3f3f3;
  149. border-radius: 3px;
  150. font-weight: 100;
  151. line-height: 20px;
  152. height: 40px;
  153. color: #333;
  154. text-align: left;
  155. border:1px solid #ACD8F0;
  156. outline: none; /* removes the default outline */
  157. resize: none; /* prevents the user-resizing, adjust to taste */
  158. }
  159. input[type='text'], textarea:focus {
  160. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  161. replacement to the outline */
  162. }
  163. textarea {
  164. overflow: hidden;
  165. word-wrap: break-word;
  166. resize: horizontal;
  167. }
  168. button.no-icon {
  169. padding: 0 1em;
  170. }
  171. button {
  172. border: none;
  173. height: 35px;
  174. padding: 0 1em 0 2em;
  175. position: relative;
  176. border-radius: 3px;
  177. font-weight: bold;
  178. color: #fff;
  179. line-height: 35px;
  180. background: #2c8ad2;
  181. }
  182. button, input, select, textarea {
  183. margin: 0;
  184. vertical-align: baseline;
  185. }
  186. button, input[type="button"], input[type="reset"], input[type="submit"] {
  187. cursor: pointer;
  188. -webkit-appearance: button;
  189. }
  190. form {
  191. display: block;
  192. }
  193. #downloadlog {
  194. position: absolute;
  195. bottom: 5;
  196. left: 5;
  197. overflow: visible;
  198. z-index: 100;
  199. }