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

videolayout_default.css 5.5KB

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