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.

videolayout_default.css 4.6KB

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