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.6KB

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