Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

main.css 7.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. html, body{
  2. margin:0px;
  3. height:100%;
  4. color: #424242;
  5. font-family:'Helvetica Neue', Helvetica, sans-serif;
  6. font-weight: 400;
  7. background: #e9e9e9;
  8. overflow-x: hidden;
  9. }
  10. #videospace {
  11. display: block;
  12. position: absolute;
  13. top: 39px;
  14. left: 0px;
  15. right: 0px;
  16. float: left;
  17. }
  18. .videocontainer {
  19. position: relative;
  20. margin-left: auto;
  21. margin-right: auto;
  22. }
  23. #presentation, #etherpad, .videocontainer>video {
  24. position: absolute;
  25. left: 0px;
  26. top: 0px;
  27. z-index: 1;
  28. width: 100%;
  29. height: 100%;
  30. }
  31. #etherpad {
  32. z-index: 0;
  33. }
  34. .videocontainer>span {
  35. display: none; /* enable when you want nicks to be shown */
  36. position: absolute;
  37. left: 0px;
  38. bottom: -20px;
  39. z-index: 0;
  40. width: 100%;
  41. font-size: 10pt;
  42. }
  43. #localVideo {
  44. -moz-transform: scaleX(-1);
  45. -webkit-transform: scaleX(-1);
  46. -o-transform: scaleX(-1);
  47. transform: scaleX(-1);
  48. }
  49. #remoteVideos {
  50. display:block;
  51. position:relative;
  52. text-align:center;
  53. height:196px;
  54. padding: 5px 0px;
  55. width:auto;
  56. overflow: hidden;
  57. border:1px solid transparent;
  58. z-index: 2;
  59. }
  60. #remoteVideos>span {
  61. display: inline-block;
  62. z-index:0;
  63. border:1px solid #FFFFFF;
  64. background-image:url(../images/avatar1.png);
  65. background-size: contain;
  66. }
  67. #remoteVideos>span:hover {
  68. cursor: pointer;
  69. cursor: hand;
  70. transform:scale(1.08, 1.08);
  71. -webkit-transform:scale(1.08, 1.08);
  72. transition-duration: 0.5s;
  73. -webkit-transition-duration: 0.5s;
  74. background-color: #FFFFFF;
  75. -webkit-animation-name: greyPulse;
  76. -webkit-animation-duration: 2s;
  77. -webkit-animation-iteration-count: 1;
  78. -webkit-box-shadow: 0 0 18px #515151;
  79. border:1px solid #FFFFFF;
  80. z-index: 10;
  81. }
  82. #chatspace {
  83. display:none;
  84. position:absolute;
  85. float: right;
  86. top: 40px;
  87. bottom: 0px;
  88. right: 0px;
  89. width: 20%;
  90. max-width: 200px;
  91. overflow: hidden;
  92. /* background-color:#dfebf1;*/
  93. background-color:#FFFFFF;
  94. border-left:1px solid #424242;
  95. }
  96. #chatconversation {
  97. position: relative;
  98. top: 5px;
  99. padding: 5px;
  100. text-align: left;
  101. line-height: 20px;
  102. font-size: 10pt;
  103. width: 100%;
  104. height: 95%;
  105. overflow-y: scroll;
  106. overflow-x: hidden;
  107. word-wrap: break-word;
  108. visibility: hidden;
  109. }
  110. .localuser {
  111. color: #087dba;
  112. }
  113. .remoteuser {
  114. color: #424242;
  115. }
  116. #usermsg {
  117. position: relative;
  118. width: 100%;
  119. height: 5%;
  120. padding: 5px;
  121. z-index: 5;
  122. max-height:150px;
  123. min-height:50px;
  124. visibility:hidden;
  125. border: 0px none;
  126. border-top: 1px solid #cccccc;
  127. background: #FFFFFF;
  128. box-shadow: none;
  129. border-radius:0;
  130. font-size: 10pt;
  131. }
  132. #usermsg: hover {
  133. border: 0px none;
  134. border-top: 1px solid #cccccc;
  135. box-shadow: none;
  136. }
  137. #nickname {
  138. position: absolute;
  139. text-align: center;
  140. color: #9d9d9d;
  141. font-size: 18;
  142. top: 100px;
  143. left: 5px;
  144. right: 5px;
  145. width: 95%;
  146. }
  147. #nickinput {
  148. margin-top: 20px;
  149. font-size: 14;
  150. }
  151. #spacer {
  152. height:5px;
  153. }
  154. #settings {
  155. display:none;
  156. }
  157. #nowebrtc {
  158. display:none;
  159. }
  160. #header{
  161. display:block;
  162. height:39px;
  163. text-align:center;
  164. background-color: #2591e5;
  165. }
  166. #left {
  167. display:block;
  168. position: absolute;
  169. left: 0px;
  170. top: 0px;
  171. width: 100px;
  172. height: 39px;
  173. background-image:url(../images/left1.png);
  174. background-repeat:no-repeat;
  175. margin: 0;
  176. padding: 0;
  177. }
  178. #leftlogo {
  179. position:absolute;
  180. top: 5px;
  181. left: 15px;
  182. background-image:url(../images/jitsilogo.png);
  183. background-repeat:no-repeat;
  184. height: 31px;
  185. width: 68px;
  186. z-index:1;
  187. }
  188. #toolbar {
  189. display:block;
  190. position:relative;
  191. height:39px;
  192. width:auto;
  193. overflow: hidden;
  194. z-index:0;
  195. visibility: hidden;
  196. }
  197. #settingsButton {
  198. visibility: hidden;
  199. }
  200. .button {
  201. display: inline-block;
  202. position: relative;
  203. color: #FFFFFF;
  204. top: 0;
  205. padding: 10px 0px;
  206. width: 39px;
  207. cursor: pointer;
  208. font-size: 11pt;
  209. text-align: center;
  210. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  211. }
  212. a.button:hover {
  213. top: 0;
  214. cursor: pointer;
  215. background: rgba(0, 0, 0, 0.3);
  216. border-radius: 5px;
  217. background-clip: padding-box;
  218. -webkit-border-radius: 5px;
  219. -webkit-background-clip: padding-box;
  220. }
  221. .no-fa-video-camera, .fa-microphone-slash {
  222. color: #636363;
  223. }
  224. .fade_line {
  225. height: 1px;
  226. background: black;
  227. background: -webkit-gradient(linear, 0 0, 100% 0, from(#e9e9e9), to(#e9e9e9), color-stop(50%, black));
  228. }
  229. .header_button_separator {
  230. display: inline-block;
  231. position:relative;
  232. top: 7;
  233. width: 1px;
  234. height: 25px;
  235. background: white;
  236. background: -webkit-gradient(linear, 0 0, 0 100%, from(#087dba), to(#087dba), color-stop(50%, white));
  237. }
  238. #right {
  239. display:block;
  240. position:absolute;
  241. right: 0px;
  242. top: 0px;
  243. background-image:url(../images/right1.png);
  244. background-repeat:no-repeat;
  245. margin:0;
  246. padding:0;
  247. width:100px;
  248. height:39px;
  249. }
  250. #rightlogo {
  251. position:absolute;
  252. top: 6px;
  253. right: 15px;
  254. background-image:url(../images/estoslogo.png);
  255. background-repeat:no-repeat;
  256. height: 25px;
  257. width: 62px;
  258. z-index:1;
  259. }
  260. input[type='text'], textarea {
  261. display: inline-block;
  262. font-size: 14px;
  263. padding: 5px;
  264. background: #f3f3f3;
  265. border-radius: 3px;
  266. font-weight: 100;
  267. line-height: 20px;
  268. height: 40px;
  269. color: #333;
  270. text-align: left;
  271. border:1px solid #ACD8F0;
  272. outline: none; /* removes the default outline */
  273. resize: none; /* prevents the user-resizing, adjust to taste */
  274. }
  275. input[type='text'], textarea:focus {
  276. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  277. replacement to the outline */
  278. }
  279. textarea {
  280. overflow: hidden;
  281. word-wrap: break-word;
  282. resize: horizontal;
  283. }
  284. button.no-icon {
  285. padding: 0 1em;
  286. }
  287. button {
  288. border: none;
  289. height: 35px;
  290. padding: 0 1em 0 2em;
  291. position: relative;
  292. border-radius: 3px;
  293. font-weight: bold;
  294. color: #fff;
  295. line-height: 35px;
  296. background: #2c8ad2;
  297. }
  298. button, input, select, textarea {
  299. font-size: 100%;
  300. margin: 0;
  301. vertical-align: baseline;
  302. }
  303. button, input[type="button"], input[type="reset"], input[type="submit"] {
  304. cursor: pointer;
  305. -webkit-appearance: button;
  306. }
  307. form {
  308. display: block;
  309. }
  310. #downloadlog {
  311. position: absolute;
  312. bottom: 5;
  313. left: 5;
  314. overflow: visible;
  315. z-index: 100;
  316. }
  317. .videocontainer>span.focusindicator {
  318. display: inline-block;
  319. position: absolute;
  320. color: #FFFFFF;
  321. top: 0;
  322. padding: 5px 0px;
  323. width: 25px;
  324. font-size: 11pt;
  325. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  326. border: 0px;
  327. z-index: 2;
  328. }
  329. .videocontainer>span.displayname,
  330. .videocontainer>input.displayname {
  331. display: inline-block;
  332. position: absolute;
  333. background: -webkit-linear-gradient(left, rgba(0,0,0,.7), rgba(0,0,0,0));
  334. color: #b7b7b7;
  335. bottom: 0;
  336. left: 0;
  337. padding: 3px 5px;
  338. width: 100%;
  339. height: auto;
  340. max-height: 18px;
  341. font-size: 9pt;
  342. text-align: left;
  343. text-overflow: ellipsis;
  344. overflow: hidden;
  345. white-space: nowrap;
  346. z-index: 2;
  347. box-sizing: border-box;
  348. }
  349. #localVideoContainer>span.displayname:hover {
  350. cursor: text;
  351. }
  352. .videocontainer>a.displayname {
  353. display: inline-block;
  354. position: absolute;
  355. color: #b7b7b7;
  356. bottom: 0;
  357. right: 0;
  358. padding: 3px 5px;
  359. font-size: 9pt;
  360. cursor: pointer;
  361. z-index: 2;
  362. }
  363. #reloadPresentation {
  364. display: none;
  365. position: absolute;
  366. color: #FFFFFF;
  367. top: 0;
  368. right: 0;
  369. padding: 10px 10px;
  370. font-size: 11pt;
  371. cursor: pointer;
  372. background: rgba(0, 0, 0, 0.3);
  373. border-radius: 5px;
  374. background-clip: padding-box;
  375. -webkit-border-radius: 5px;
  376. -webkit-background-clip: padding-box;
  377. z-index: 3;
  378. }