Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

main.css 6.2KB

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