Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

videolayout_default.css 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. #videospace {
  2. display: block;
  3. position: absolute;
  4. top: 0px;
  5. left: 0px;
  6. right: 0px;
  7. overflow: hidden;
  8. }
  9. #remoteVideos {
  10. display:block;
  11. position:absolute;
  12. text-align:right;
  13. height:196px;
  14. padding: 18px;
  15. bottom: 0;
  16. left: 0;
  17. right: 0;
  18. width:auto;
  19. border:1px solid transparent;
  20. z-index: 5;
  21. }
  22. .videocontainer {
  23. position: relative;
  24. margin-left: auto;
  25. margin-right: auto;
  26. }
  27. #remoteVideos .videocontainer {
  28. display: inline-block;
  29. background-image:url(../images/avatar1.png);
  30. background-size: contain;
  31. border-radius:8px;
  32. border: 2px solid #212425;
  33. margin-right: 3px;
  34. }
  35. #remoteVideos .videocontainer:hover,
  36. #remoteVideos .videocontainer.videoContainerFocused {
  37. width: 100%;
  38. height: 100%;
  39. content:"";
  40. cursor: pointer;
  41. cursor: hand;
  42. /* transform:scale(1.08, 1.08);
  43. -webkit-transform:scale(1.08, 1.08); */
  44. transition-duration: 0.5s;
  45. -webkit-transition-duration: 0.5s;
  46. -webkit-animation-name: greyPulse;
  47. -webkit-animation-duration: 2s;
  48. -webkit-animation-iteration-count: 1;
  49. }
  50. #remoteVideos .videocontainer:hover {
  51. -webkit-box-shadow: inset 0 0 10px #FFFFFF, 0 0 10px #FFFFFF;
  52. border: 2px solid #FFFFFF;
  53. }
  54. #remoteVideos .videocontainer.videoContainerFocused {
  55. -webkit-box-shadow: inset 0 0 28px #006d91;
  56. border: 2px solid #006d91;
  57. }
  58. #remoteVideos .videocontainer.videoContainerFocused:hover {
  59. -webkit-box-shadow: inset 0 0 5px #FFFFFF, 0 0 10px #FFFFFF, inset 0 0 60px #006d91;
  60. border: 2px solid #FFFFFF;
  61. }
  62. #localVideoWrapper {
  63. display:inline-block;
  64. -webkit-mask-box-image: url(../images/videomask.svg);
  65. border-radius:0px !important;
  66. border: 0px !important;
  67. }
  68. #remoteVideos .videocontainer>video {
  69. border-radius:4px;
  70. }
  71. .flipVideoX {
  72. transform: scale(-1, 1);
  73. -moz-transform: scale(-1, 1);
  74. -webkit-transform: scale(-1, 1);
  75. -o-transform: scale(-1, 1);
  76. }
  77. #localVideoWrapper>video {
  78. border-radius:0px !important;
  79. }
  80. #largeVideo,
  81. #largeVideoContainer {
  82. overflow: hidden;
  83. text-align: center;
  84. }
  85. #presentation,
  86. #etherpad,
  87. #localVideoWrapper>video,
  88. #localVideoWrapper,
  89. .videocontainer>video {
  90. position: absolute;
  91. left: 0;
  92. top: 0;
  93. z-index: 1;
  94. width: 100%;
  95. height: 100%;
  96. }
  97. .dominantspeaker {
  98. background: #000 !important;
  99. }
  100. #etherpad,
  101. #presentation {
  102. text-align: center;
  103. }
  104. #etherpad {
  105. z-index: 0;
  106. }
  107. #etherpadButton {
  108. display: none;
  109. }
  110. #remoteVideos .videocontainer>span.focusindicator,
  111. #remoteVideos .videocontainer>span.remotevideomenu {
  112. display: inline-block;
  113. position: absolute;
  114. color: #FFFFFF;
  115. top: 0;
  116. left: 0;
  117. padding: 5px 0px;
  118. width: 25px;
  119. font-size: 11pt;
  120. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  121. border: 0px;
  122. z-index: 2;
  123. text-align: center;
  124. }
  125. #remoteVideos .nick {
  126. display: none; /* enable when you want nicks to be shown */
  127. position: absolute;
  128. left: 0px;
  129. bottom: -20px;
  130. z-index: 0;
  131. width: 100%;
  132. font-size: 10pt;
  133. }
  134. .videocontainer>span.displayname,
  135. .videocontainer>input.displayname {
  136. display: none;
  137. position: absolute;
  138. color: #FFFFFF;
  139. background: rgba(0,0,0,.7);
  140. text-align: center;
  141. text-overflow: ellipsis;
  142. width: 70%;
  143. height: 20%;
  144. left: 15%;
  145. top: 40%;
  146. padding: 5px;
  147. font-size: 11pt;
  148. overflow: hidden;
  149. white-space: nowrap;
  150. z-index: 2;
  151. border-radius:20px;
  152. }
  153. #localVideoContainer>span.displayname:hover {
  154. cursor: text;
  155. }
  156. .videocontainer>span.displayname {
  157. pointer-events: none;
  158. }
  159. .videocontainer>input.displayname {
  160. height: auto;
  161. }
  162. #localDisplayName {
  163. pointer-events: auto !important;
  164. }
  165. .videocontainer>a.displayname {
  166. display: inline-block;
  167. position: absolute;
  168. color: #FFFFFF;
  169. bottom: 0;
  170. right: 0;
  171. padding: 3px 5px;
  172. font-size: 9pt;
  173. cursor: pointer;
  174. z-index: 2;
  175. }
  176. .videocontainer>span.audioMuted {
  177. display: inline-block;
  178. position: absolute;
  179. color: #FFFFFF;
  180. top: 0;
  181. right: 0;
  182. padding: 8px 5px;
  183. width: 25px;
  184. font-size: 8pt;
  185. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  186. border: 0px;
  187. z-index: 3;
  188. text-align: center;
  189. }
  190. .videocontainer>span.videoMuted {
  191. display: inline-block;
  192. position: absolute;
  193. color: #FFFFFF;
  194. top: 0;
  195. right: 0;
  196. padding: 8px 5px;
  197. width: 25px;
  198. font-size: 8pt;
  199. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  200. border: 0px;
  201. z-index: 3;
  202. }
  203. #reloadPresentation {
  204. display: none;
  205. position: absolute;
  206. color: #FFFFFF;
  207. top: 0;
  208. right:0;
  209. padding: 10px 10px;
  210. font-size: 11pt;
  211. cursor: pointer;
  212. background: rgba(0, 0, 0, 0.3);
  213. border-radius: 5px;
  214. background-clip: padding-box;
  215. -webkit-border-radius: 5px;
  216. -webkit-background-clip: padding-box;
  217. z-index: 20; /*The reload button should appear on top of the header!*/
  218. }
  219. #header{
  220. display:none;
  221. position:absolute;
  222. text-align:center;
  223. top:0;
  224. left:0;
  225. right:0;
  226. z-index:10;
  227. }
  228. #toolbar {
  229. display:inline-block;
  230. position:relative;
  231. margin-left:auto;
  232. margin-right:auto;
  233. height:39px;
  234. width:auto;
  235. background: linear-gradient(to bottom, rgba(103,103,103,.65) , rgba(0,0,0,.65));
  236. -webkit-box-shadow: 0 0 2px #000000, 0 0 10px #000000;
  237. border-bottom-left-radius: 12px;
  238. border-bottom-right-radius: 12px;
  239. }
  240. #subject {
  241. position: relative;
  242. z-index: 3;
  243. width: auto;
  244. padding: 5px;
  245. margin-left: 40%;
  246. margin-right: 40%;
  247. text-align: center;
  248. background: linear-gradient(to bottom, rgba(255,255,255,.85) , rgba(255,255,255,.35));
  249. -webkit-box-shadow: 0 0 2px #000000, 0 0 10px #000000;
  250. border-bottom-left-radius: 12px;
  251. border-bottom-right-radius: 12px;
  252. display: none;
  253. }
  254. .watermark {
  255. display: block;
  256. position: absolute;
  257. top: 15;
  258. width: 20%;
  259. height: 10%;
  260. background-size: contain;
  261. background-repeat: no-repeat;
  262. z-index: 2;
  263. }
  264. #leftwatermark {
  265. left: 15;
  266. background-image:url(../images/watermark.png);
  267. background-position: center left;
  268. }
  269. #rightwatermark {
  270. right: 15;
  271. background-image:url(../images/rightwatermark.png);
  272. background-position: center right;
  273. }
  274. .audiolevel {
  275. display: inline-block;
  276. position: absolute;
  277. z-index: 0;
  278. border-radius:10px;
  279. }