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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. html, body{
  2. margin:0px;
  3. height:100%;
  4. color: #424242;
  5. font-family:'YanoneKaffeesatzLight',Verdana,Tahoma,Arial;
  6. font-weight: 400;
  7. background: #e9e9e9;
  8. }
  9. #videospace {
  10. display: block;
  11. position: absolute;
  12. top: 39px;
  13. left: 0px;
  14. right: 0px;
  15. float: left;
  16. }
  17. .videocontainer {
  18. position: relative;
  19. margin-left: auto;
  20. margin-right: auto;
  21. }
  22. .videocontainer>video {
  23. position: absolute;
  24. left: 0px;
  25. top: 0px;
  26. z-index: 0;
  27. width: 100%;
  28. height: 100%;
  29. }
  30. .videocontainer>span {
  31. display: none; /* enable when you want nicks to be shown */
  32. position: absolute;
  33. left: 0px;
  34. bottom: -20px;
  35. z-index: 0;
  36. width: 100%;
  37. font-size: 10pt;
  38. }
  39. #largeVideo {
  40. }
  41. #localVideo {
  42. -moz-transform: scaleX(-1);
  43. -webkit-transform: scaleX(-1);
  44. -o-transform: scaleX(-1);
  45. transform: scaleX(-1);
  46. }
  47. #remoteVideos {
  48. display:block;
  49. position:relative;
  50. text-align:center;
  51. height:196px;
  52. padding-top:10px;
  53. width:auto;
  54. overflow: hidden;
  55. border:1px solid transparent;
  56. z-index: 2;
  57. }
  58. #remoteVideos>span {
  59. display: inline-block;
  60. z-index:0;
  61. border:1px solid #FFFFFF;
  62. }
  63. #remoteVideos>span:hover {
  64. cursor: pointer;
  65. cursor: hand;
  66. transform:scale(1.08, 1.08);
  67. -webkit-transform:scale(1.08, 1.08);
  68. transition-duration: 0.5s;
  69. -webkit-transition-duration: 0.5s;
  70. background-color: #FFFFFF;
  71. -webkit-animation-name: greyPulse;
  72. -webkit-animation-duration: 2s;
  73. -webkit-animation-iteration-count: 1;
  74. -webkit-box-shadow: 0 0 18px #515151;
  75. border:1px solid #FFFFFF;
  76. z-index: 10;
  77. }
  78. #chatspace {
  79. display:block;
  80. position:absolute;
  81. float: right;
  82. top: 40px;
  83. bottom: 0px;
  84. right: 0px;
  85. width:0;
  86. opacity: 0;
  87. overflow: hidden;
  88. background-color:#f6f6f6;
  89. border-left:1px solid #424242;
  90. }
  91. #chatconversation {
  92. display:block;
  93. position:relative;
  94. top: -120px;
  95. float:top;
  96. text-align:left;
  97. line-height:20px;
  98. font-size:14px;
  99. padding:5px;
  100. height:90%;
  101. overflow:scroll;
  102. visibility:hidden;
  103. }
  104. .localuser {
  105. color: #087dba;
  106. }
  107. .remoteuser {
  108. color: #424242;
  109. }
  110. #usermsg {
  111. position:absolute;
  112. bottom: 5px;
  113. left: 5px;
  114. right: 5px;
  115. width: 95%;
  116. height: 40px;
  117. z-index: 5;
  118. visibility:hidden;
  119. max-height:150px;
  120. }
  121. #nickname {
  122. position:relative;
  123. text-align:center;
  124. color: #9d9d9d;
  125. font-size: 18;
  126. top: 100px;
  127. left: 5px;
  128. right: 5px;
  129. width: 95%;
  130. }
  131. #nickinput {
  132. margin-top: 20px;
  133. font-size: 14;
  134. }
  135. #spacer {
  136. height:5px;
  137. }
  138. #settings {
  139. display:none;
  140. }
  141. #nowebrtc {
  142. display:none;
  143. }
  144. #header{
  145. display:block;
  146. height:39px;
  147. text-align:center;
  148. background-color:#087dba;
  149. }
  150. #toolbar {
  151. visibility:hidden;
  152. height:39px;
  153. }
  154. #left {
  155. display:block;
  156. position: absolute;
  157. left: 0px;
  158. top: 0px;
  159. width: 100px;
  160. height: 39px;
  161. background-image:url(../images/left1.png);
  162. background-repeat:no-repeat;
  163. margin: 0;
  164. padding: 0;
  165. }
  166. #leftlogo {
  167. position:absolute;
  168. top: 5px;
  169. left: 15px;
  170. background-image:url(../images/jitsilogo.png);
  171. background-repeat:no-repeat;
  172. height: 31px;
  173. width: 68px;
  174. z-index:1;
  175. }
  176. #toolbar {
  177. display:block;
  178. position:relative;
  179. height:39px;
  180. width:auto;
  181. overflow: hidden;
  182. z-index:0;
  183. visibility: hidden;
  184. }
  185. .button {
  186. display: inline-block;
  187. position: relative;
  188. color: #FFFFFF;
  189. top: 0;
  190. padding: 10px 0px;
  191. width: 39px;
  192. cursor: pointer;
  193. font-size: 11pt;
  194. text-align: center;
  195. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  196. }
  197. a.button:hover {
  198. top: 0;
  199. cursor: pointer;
  200. background: rgba(0, 0, 0, 0.3);
  201. border-radius: 5px;
  202. background-clip: padding-box;
  203. -webkit-border-radius: 5px;
  204. -webkit-background-clip: padding-box;
  205. }
  206. .no-fa-video-camera, .fa-microphone-slash {
  207. color: #636363;
  208. }
  209. .fade_line {
  210. height: 1px;
  211. background: black;
  212. background: -webkit-gradient(linear, 0 0, 100% 0, from(#e9e9e9), to(#e9e9e9), color-stop(50%, black));
  213. }
  214. .header_button_separator {
  215. display: inline-block;
  216. position:relative;
  217. top: 7;
  218. width: 1px;
  219. height: 25px;
  220. background: white;
  221. background: -webkit-gradient(linear, 0 0, 0 100%, from(#087dba), to(#087dba), color-stop(50%, white));
  222. }
  223. #right {
  224. display:block;
  225. position:absolute;
  226. right: 0px;
  227. top: 0px;
  228. background-image:url(../images/right1.png);
  229. background-repeat:no-repeat;
  230. margin:0;
  231. padding:0;
  232. width:100px;
  233. height:39px;
  234. }
  235. #rightlogo {
  236. position:absolute;
  237. top: 6px;
  238. right: 15px;
  239. background-image:url(../images/estoslogo.png);
  240. background-repeat:no-repeat;
  241. height: 25px;
  242. width: 62px;
  243. z-index:1;
  244. }
  245. input, textarea {
  246. border: 0px none;
  247. display: inline-block;
  248. font-size: 14px;
  249. padding: 5px;
  250. background: #f3f3f3;
  251. border-radius: 3px;
  252. font-weight: 100;
  253. line-height: 20px;
  254. height: 40px;
  255. color: #333;
  256. font-weight: bold;
  257. text-align: left;
  258. border:1px solid #ACD8F0;
  259. outline: none; /* removes the default outline */
  260. resize: none; /* prevents the user-resizing, adjust to taste */
  261. }
  262. input, textarea:focus {
  263. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  264. replacement to the outline */
  265. }
  266. textarea {
  267. overflow: hidden;
  268. word-wrap: break-word;
  269. resize: horizontal;
  270. }
  271. button.no-icon {
  272. padding: 0 1em;
  273. }
  274. button {
  275. border: none;
  276. height: 35px;
  277. padding: 0 1em 0 2em;
  278. position: relative;
  279. border-radius: 3px;
  280. font-weight: bold;
  281. color: #fff;
  282. line-height: 35px;
  283. background: #2c8ad2;
  284. }
  285. button, input, select, textarea {
  286. font-size: 100%;
  287. margin: 0;
  288. vertical-align: baseline;
  289. }
  290. button, input[type="button"], input[type="reset"], input[type="submit"] {
  291. cursor: pointer;
  292. -webkit-appearance: button;
  293. }
  294. form {
  295. display: block;
  296. }
  297. /* Animated text area. */
  298. .animated {
  299. -webkit-transition: height 0.2s;
  300. -moz-transition: height 0.2s;
  301. transition: height 0.2s;
  302. }
  303. #downloadlog {
  304. position: absolute;
  305. bottom: 5;
  306. left: 5;
  307. overflow: visible;
  308. z-index: 100;
  309. }
  310. .videocontainer>span.focusindicator {
  311. display: inline-block;
  312. position: absolute;
  313. color: #FFFFFF;
  314. top: 0;
  315. padding: 5px 0px;
  316. width: 25px;
  317. font-size: 11pt;
  318. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  319. border: 0px;
  320. }