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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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. height:39px;
  134. text-align:center;
  135. background-color:#087dba;
  136. }
  137. #toolbar {
  138. visibility:hidden;
  139. height:39px;
  140. }
  141. #left {
  142. display:block;
  143. position: absolute;
  144. left: 0px;
  145. top: 0px;
  146. width: 100px;
  147. height: 39px;
  148. background-image:url(../images/left1.png);
  149. background-repeat:no-repeat;
  150. margin: 0;
  151. padding: 0;
  152. }
  153. #leftlogo {
  154. position:absolute;
  155. top: 5px;
  156. left: 15px;
  157. background-image:url(../images/jitsilogo.png);
  158. background-repeat:no-repeat;
  159. height: 31px;
  160. width: 68px;
  161. z-index:1;
  162. }
  163. #toolbar {
  164. display:block;
  165. position:relative;
  166. height:39px;
  167. width:auto;
  168. overflow: hidden;
  169. z-index:0;
  170. visibility: hidden;
  171. }
  172. .button {
  173. display: inline-block;
  174. position: relative;
  175. color: #FFFFFF;
  176. top: 0;
  177. padding: 10px 0px;
  178. width: 39px;
  179. cursor: pointer;
  180. font-size: 11pt;
  181. text-align: center;
  182. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  183. }
  184. a.button:hover {
  185. top: 0;
  186. cursor: pointer;
  187. background: rgba(0, 0, 0, 0.3);
  188. border-radius: 5px;
  189. background-clip: padding-box;
  190. -webkit-border-radius: 5px;
  191. -webkit-background-clip: padding-box;
  192. }
  193. .no-fa-video-camera, .fa-microphone-slash {
  194. color: #636363;
  195. }
  196. .fade_line {
  197. height: 1px;
  198. background: black;
  199. background: -webkit-gradient(linear, 0 0, 100% 0, from(#e9e9e9), to(#e9e9e9), color-stop(50%, black));
  200. }
  201. .header_button_separator {
  202. display: inline-block;
  203. position:relative;
  204. top: 7;
  205. width: 1px;
  206. height: 25px;
  207. background: white;
  208. background: -webkit-gradient(linear, 0 0, 0 100%, from(#087dba), to(#087dba), color-stop(50%, white));
  209. }
  210. #right {
  211. display:block;
  212. position:absolute;
  213. right: 0px;
  214. top: 0px;
  215. background-image:url(../images/right1.png);
  216. background-repeat:no-repeat;
  217. margin:0;
  218. padding:0;
  219. width:100px;
  220. height:39px;
  221. }
  222. #rightlogo {
  223. position:absolute;
  224. top: 6px;
  225. right: 15px;
  226. background-image:url(../images/estoslogo.png);
  227. background-repeat:no-repeat;
  228. height: 25px;
  229. width: 62px;
  230. z-index:1;
  231. }
  232. input, textarea {
  233. border: 0px none;
  234. display: inline-block;
  235. font-size: 14px;
  236. padding: 5px;
  237. background: #f3f3f3;
  238. border-radius: 3px;
  239. font-weight: 100;
  240. line-height: 20px;
  241. height: 40px;
  242. color: #333;
  243. font-weight: bold;
  244. text-align: left;
  245. border:1px solid #ACD8F0;
  246. outline: none; /* removes the default outline */
  247. resize: none; /* prevents the user-resizing, adjust to taste */
  248. }
  249. input, textarea:focus {
  250. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  251. replacement to the outline */
  252. }
  253. textarea {
  254. overflow: hidden;
  255. word-wrap: break-word;
  256. resize: horizontal;
  257. }
  258. button.no-icon {
  259. padding: 0 1em;
  260. }
  261. button {
  262. border: none;
  263. height: 35px;
  264. padding: 0 1em 0 2em;
  265. position: relative;
  266. border-radius: 3px;
  267. font-weight: bold;
  268. color: #fff;
  269. line-height: 35px;
  270. background: #2c8ad2;
  271. }
  272. button, input, select, textarea {
  273. font-size: 100%;
  274. margin: 0;
  275. vertical-align: baseline;
  276. }
  277. button, input[type="button"], input[type="reset"], input[type="submit"] {
  278. cursor: pointer;
  279. -webkit-appearance: button;
  280. }
  281. form {
  282. display: block;
  283. }
  284. /* Animated text area. */
  285. .animated {
  286. -webkit-transition: height 0.2s;
  287. -moz-transition: height 0.2s;
  288. transition: height 0.2s;
  289. }