您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

main.css 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. * {
  2. -webkit-user-select: none;
  3. user-select: none;
  4. }
  5. html, body{
  6. margin:0px;
  7. height:100%;
  8. color: #424242;
  9. font-family:'Helvetica Neue', Helvetica, sans-serif;
  10. font-weight: 400;
  11. background: #000000;
  12. overflow-x: hidden;
  13. }
  14. .right-panel {
  15. display:none;
  16. position:absolute;
  17. float: right;
  18. top: 0px;
  19. bottom: 0px;
  20. right: 0px;
  21. width: 20%;
  22. max-width: 200px;
  23. overflow: hidden;
  24. /* background-color:#dfebf1;*/
  25. background-color:#FFFFFF;
  26. border-left:1px solid #424242;
  27. z-index: 5;
  28. }
  29. #nowebrtc {
  30. display:none;
  31. }
  32. .toolbar_span {
  33. display: inline-block;
  34. position: relative;
  35. }
  36. .button {
  37. display: inline-block;
  38. position: relative;
  39. color: #FFFFFF;
  40. top: 0px;
  41. padding: 10px 0px;
  42. width: 38px;
  43. cursor: pointer;
  44. font-size: 11pt;
  45. text-align: center;
  46. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.6);
  47. z-index: 1;
  48. }
  49. .toolbar_span>span {
  50. display: inline-block;
  51. position: absolute;
  52. font-size: 7pt;
  53. color: #ffffff;
  54. text-align:center;
  55. cursor: pointer;
  56. }
  57. #chatButton, #chatBottomButton, #contactListButton, #numberOfParticipants {
  58. -webkit-transition: all .5s ease-in-out;
  59. -moz-transition: all .5s ease-in-out;
  60. transition: all .5s ease-in-out;
  61. }
  62. /*#ffde00*/
  63. #chatButton.active, #contactListButton.glowing, #chatBottomButton.glowing {
  64. -webkit-text-shadow: -1px 0 10px #00ccff,
  65. 0 1px 10px #00ccff,
  66. 1px 0 10px #00ccff,
  67. 0 -1px 10px #00ccff;
  68. -moz-text-shadow: 1px 0 10px #00ccff,
  69. 0 1px 10px #00ccff,
  70. 1px 0 10px #00ccff,
  71. 0 -1px 10px #00ccff;
  72. text-shadow: -1px 0 10px #00ccff,
  73. 0 1px 10px #00ccff,
  74. 1px 0 10px #00ccff,
  75. 0 -1px 10px #00ccff;
  76. }
  77. #numberOfParticipants {
  78. position: absolute;
  79. top: 0px;
  80. right: -1;
  81. color: white;
  82. width: 13px;
  83. height: 13px;
  84. line-height: 13px;
  85. font-weight: bold;
  86. border-radius: 2px;
  87. font-size: 11px;
  88. text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  89. }
  90. #contactListButton.active #numberOfParticipants {
  91. color: #00ccff;
  92. }
  93. #recordButton {
  94. -webkit-transition: all .5s ease-in-out;
  95. -moz-transition: all .5s ease-in-out;
  96. transition: all .5s ease-in-out;
  97. }
  98. /*#ffde00*/
  99. #recordButton.active {
  100. -webkit-text-shadow: -1px 0 10px #00ccff,
  101. 0 1px 10px #00ccff,
  102. 1px 0 10px #00ccff,
  103. 0 -1px 10px #00ccff;
  104. -moz-text-shadow: 1px 0 10px #00ccff,
  105. 0 1px 10px #00ccff,
  106. 1px 0 10px #00ccff,
  107. 0 -1px 10px #00ccff;
  108. text-shadow: -1px 0 10px #00ccff,
  109. 0 1px 10px #00ccff,
  110. 1px 0 10px #00ccff,
  111. 0 -1px 10px #00ccff;
  112. }
  113. a.button:hover,
  114. a.bottomToolbarButton:hover {
  115. top: 0px;
  116. cursor: pointer;
  117. background: rgba(255, 255, 255, 0.1);
  118. border-radius: 6px;
  119. background-clip: padding-box;
  120. -webkit-border-radius: 6px;
  121. -webkit-background-clip: padding-box;
  122. }
  123. .no-fa-video-camera, .fa-microphone-slash {
  124. color: #636363;
  125. }
  126. .header_button_separator {
  127. display: inline-block;
  128. position:relative;
  129. top: 5;
  130. width: 1px;
  131. height: 20px;
  132. background: #373737;
  133. }
  134. .bottom_button_separator {
  135. display: inline-block;
  136. position: relative;
  137. left: 5;
  138. width: 20px;
  139. height: 1px;
  140. background: #373737;
  141. }
  142. input[type='text'], input[type='password'], textarea {
  143. display: inline-block;
  144. font-size: 14px;
  145. padding: 5px;
  146. background: #f3f3f3;
  147. border-radius: 3px;
  148. font-weight: 100;
  149. line-height: 20px;
  150. height: 40px;
  151. color: #333;
  152. text-align: left;
  153. border:1px solid #ACD8F0;
  154. outline: none; /* removes the default outline */
  155. resize: none; /* prevents the user-resizing, adjust to taste */
  156. }
  157. input[type='text'], input[type='password'], textarea:focus {
  158. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  159. replacement to the outline */
  160. }
  161. textarea {
  162. overflow: hidden;
  163. word-wrap: break-word;
  164. resize: horizontal;
  165. }
  166. button.no-icon {
  167. padding: 0 1em;
  168. }
  169. button {
  170. border: none;
  171. height: 35px;
  172. padding: 0 1em 0 2em;
  173. position: relative;
  174. border-radius: 3px;
  175. font-weight: bold;
  176. color: #fff;
  177. line-height: 35px;
  178. background: #2c8ad2;
  179. }
  180. button, input, select, textarea {
  181. margin: 0;
  182. vertical-align: baseline;
  183. }
  184. button, input[type="button"], input[type="reset"], input[type="submit"] {
  185. cursor: pointer;
  186. -webkit-appearance: button;
  187. }
  188. form {
  189. display: block;
  190. }
  191. #downloadlog {
  192. position: absolute;
  193. bottom: 5;
  194. left: 5;
  195. overflow: visible;
  196. z-index: 100;
  197. color: rgba(255,255,255,.50);
  198. }
  199. #bottomToolbar {
  200. display:block;
  201. position: absolute;
  202. right: 0;
  203. margin-right: 5px;
  204. bottom: 40px;
  205. width: 29px;
  206. border-radius: 6px;
  207. color: #FFF;
  208. border: 1px solid rgba(256, 256, 256, 0.2);
  209. background: rgba(0,0,0,0.8);
  210. z-index: 6; /*+1 from #remoteVideos*/
  211. }
  212. .bottomToolbarButton {
  213. display: inline-block;
  214. position: relative;
  215. color: #FFFFFF;
  216. top: 0;
  217. padding-top: 6px;
  218. margin: 2px;
  219. width: 25px;
  220. height: 20px;
  221. cursor: pointer;
  222. font-size: 10pt;
  223. text-align: center;
  224. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  225. z-index: 1;
  226. }
  227. .active {
  228. color: #00ccff;
  229. }
  230. .bottomToolbar_span>span {
  231. display: inline-block;
  232. position: absolute;
  233. font-size: 7pt;
  234. color: #ffffff;
  235. text-align: center;
  236. cursor: pointer;
  237. }
  238. .glow
  239. {
  240. text-shadow: 0px 0px 30px #06a5df, 0px 0px 10px #06a5df, 0px 0px 5px #06a5df,0px 0px 3px #06a5df;
  241. }
  242. .watermark {
  243. display: block;
  244. position: absolute;
  245. top: 15;
  246. width: 186px;
  247. height: 74px;
  248. background-size: contain;
  249. background-repeat: no-repeat;
  250. z-index: 2;
  251. }
  252. .leftwatermark {
  253. display: none;
  254. left: 15;
  255. background-image:url(../images/watermark.png);
  256. background-position: center left;
  257. }
  258. .rightwatermark {
  259. display: none;
  260. right: 15;
  261. background-position: center right;
  262. }
  263. .poweredby {
  264. display: none;
  265. position: absolute;
  266. left: 25;
  267. bottom: 7;
  268. font-size: 11pt;
  269. color: rgba(255,255,255,.50);
  270. text-decoration: none;
  271. z-index: 100;
  272. }
  273. #toast-container.notification-bottom-right {
  274. bottom: 120px;
  275. right: 5px;
  276. }
  277. #toast-container.notification-bottom-right-center {
  278. right: 205px;
  279. }
  280. #toast-container .toast-info {
  281. -webkit-box-shadow: none;
  282. box-shadow: none;
  283. }
  284. .toast-close-button {
  285. right: -7px;
  286. top: -19px;
  287. }
  288. #toast-container .toast-info {
  289. background-color: black;
  290. border: 1px solid #3a3a3a;
  291. width: 220px;
  292. padding: 10px 10px 10px 50px;
  293. }
  294. .connected {
  295. color: forestgreen;
  296. font-size: 12px;
  297. }
  298. .disconnected {
  299. color: darkred;
  300. font-size: 12px;
  301. }
  302. .lastN {
  303. color: #a3a3a3;
  304. font-size: 12px;
  305. }
  306. .toast-close-button:hover,
  307. .toast-close-button:focus {
  308. color: #ffffff;
  309. opacity: 1;
  310. -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  311. filter: alpha(opacity=100);
  312. }
  313. .toast-message .nickname {
  314. font-weight: bold;
  315. }