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.

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