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 6.5KB

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