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

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