Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

main.css 7.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. /*
  2. * Copyright @ 2015 Atlassian Pty Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. * {
  17. -webkit-user-select: none;
  18. user-select: none;
  19. }
  20. html, body{
  21. margin:0px;
  22. height:100%;
  23. color: #424242;
  24. font-family:'Helvetica Neue', Helvetica, sans-serif;
  25. font-weight: 400;
  26. background: #000000;
  27. overflow-x: hidden;
  28. }
  29. .right-panel {
  30. display:none;
  31. position:absolute;
  32. float: right;
  33. top: 0px;
  34. bottom: 0px;
  35. right: 0px;
  36. width: 20%;
  37. max-width: 200px;
  38. overflow: hidden;
  39. /* background-color:#dfebf1;*/
  40. background-color:#FFFFFF;
  41. border-left:1px solid #424242;
  42. z-index: 5;
  43. }
  44. #nowebrtc {
  45. display:none;
  46. }
  47. .toolbar_span {
  48. display: inline-block;
  49. position: relative;
  50. }
  51. .button {
  52. display: inline-block;
  53. position: relative;
  54. color: #FFFFFF;
  55. top: 0px;
  56. padding: 10px 0px;
  57. width: 38px;
  58. cursor: pointer;
  59. font-size: 11pt;
  60. text-align: center;
  61. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.6);
  62. z-index: 1;
  63. }
  64. .toolbar_span>span {
  65. display: inline-block;
  66. position: absolute;
  67. font-size: 7pt;
  68. color: #ffffff;
  69. text-align:center;
  70. cursor: pointer;
  71. }
  72. #chatButton, #chatBottomButton, #contactListButton, #numberOfParticipants {
  73. -webkit-transition: all .5s ease-in-out;
  74. -moz-transition: all .5s ease-in-out;
  75. transition: all .5s ease-in-out;
  76. }
  77. /*#ffde00*/
  78. #chatButton.active, #contactListButton.glowing, #chatBottomButton.glowing {
  79. -webkit-text-shadow: -1px 0 10px #00ccff,
  80. 0 1px 10px #00ccff,
  81. 1px 0 10px #00ccff,
  82. 0 -1px 10px #00ccff;
  83. -moz-text-shadow: 1px 0 10px #00ccff,
  84. 0 1px 10px #00ccff,
  85. 1px 0 10px #00ccff,
  86. 0 -1px 10px #00ccff;
  87. text-shadow: -1px 0 10px #00ccff,
  88. 0 1px 10px #00ccff,
  89. 1px 0 10px #00ccff,
  90. 0 -1px 10px #00ccff;
  91. }
  92. #numberOfParticipants {
  93. position: absolute;
  94. top: 0px;
  95. right: -1;
  96. color: white;
  97. width: 13px;
  98. height: 13px;
  99. line-height: 13px;
  100. font-weight: bold;
  101. border-radius: 2px;
  102. font-size: 11px;
  103. text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  104. }
  105. #contactListButton.active #numberOfParticipants {
  106. color: #00ccff;
  107. }
  108. #recordButton {
  109. -webkit-transition: all .5s ease-in-out;
  110. -moz-transition: all .5s ease-in-out;
  111. transition: all .5s ease-in-out;
  112. }
  113. /*#ffde00*/
  114. #recordButton.active {
  115. -webkit-text-shadow: -1px 0 10px #00ccff,
  116. 0 1px 10px #00ccff,
  117. 1px 0 10px #00ccff,
  118. 0 -1px 10px #00ccff;
  119. -moz-text-shadow: 1px 0 10px #00ccff,
  120. 0 1px 10px #00ccff,
  121. 1px 0 10px #00ccff,
  122. 0 -1px 10px #00ccff;
  123. text-shadow: -1px 0 10px #00ccff,
  124. 0 1px 10px #00ccff,
  125. 1px 0 10px #00ccff,
  126. 0 -1px 10px #00ccff;
  127. }
  128. a.button:hover,
  129. a.bottomToolbarButton:hover {
  130. top: 0px;
  131. cursor: pointer;
  132. background: rgba(255, 255, 255, 0.1);
  133. border-radius: 6px;
  134. background-clip: padding-box;
  135. -webkit-border-radius: 6px;
  136. -webkit-background-clip: padding-box;
  137. }
  138. .no-fa-video-camera, .fa-microphone-slash {
  139. color: #636363;
  140. }
  141. .header_button_separator {
  142. display: inline-block;
  143. position:relative;
  144. top: 5;
  145. width: 1px;
  146. height: 20px;
  147. background: #373737;
  148. }
  149. .bottom_button_separator {
  150. display: inline-block;
  151. position: relative;
  152. left: 5;
  153. width: 20px;
  154. height: 1px;
  155. background: #373737;
  156. }
  157. input[type='text'], input[type='password'], textarea {
  158. display: inline-block;
  159. font-size: 14px;
  160. padding: 5px;
  161. background: #f3f3f3;
  162. border-radius: 3px;
  163. font-weight: 100;
  164. line-height: 20px;
  165. height: 40px;
  166. color: #333;
  167. text-align: left;
  168. border:1px solid #ACD8F0;
  169. outline: none; /* removes the default outline */
  170. resize: none; /* prevents the user-resizing, adjust to taste */
  171. }
  172. input[type='text'], input[type='password'], textarea:focus {
  173. box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
  174. replacement to the outline */
  175. }
  176. textarea {
  177. overflow: hidden;
  178. word-wrap: break-word;
  179. resize: horizontal;
  180. }
  181. button.no-icon {
  182. padding: 0 1em;
  183. }
  184. button {
  185. border: none;
  186. height: 35px;
  187. padding: 0 1em 0 2em;
  188. position: relative;
  189. border-radius: 3px;
  190. font-weight: bold;
  191. color: #fff;
  192. line-height: 35px;
  193. background: #2c8ad2;
  194. }
  195. button, input, select, textarea {
  196. margin: 0;
  197. vertical-align: baseline;
  198. }
  199. button, input[type="button"], input[type="reset"], input[type="submit"] {
  200. cursor: pointer;
  201. -webkit-appearance: button;
  202. }
  203. form {
  204. display: block;
  205. }
  206. #downloadlog {
  207. position: absolute;
  208. bottom: 5;
  209. left: 5;
  210. overflow: visible;
  211. z-index: 100;
  212. color: rgba(255,255,255,.50);
  213. }
  214. #bottomToolbar {
  215. display:block;
  216. position: absolute;
  217. right: 0;
  218. margin-right: 5px;
  219. bottom: 40px;
  220. width: 29px;
  221. border-radius: 6px;
  222. color: #FFF;
  223. border: 1px solid rgba(256, 256, 256, 0.2);
  224. background: rgba(0,0,0,0.8);
  225. z-index: 6; /*+1 from #remoteVideos*/
  226. }
  227. .bottomToolbarButton {
  228. display: inline-block;
  229. position: relative;
  230. color: #FFFFFF;
  231. top: 0;
  232. padding-top: 6px;
  233. margin: 2px;
  234. width: 25px;
  235. height: 20px;
  236. cursor: pointer;
  237. font-size: 10pt;
  238. text-align: center;
  239. text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
  240. z-index: 1;
  241. }
  242. .active {
  243. color: #00ccff;
  244. }
  245. .bottomToolbar_span>span {
  246. display: inline-block;
  247. position: absolute;
  248. font-size: 7pt;
  249. color: #ffffff;
  250. text-align: center;
  251. cursor: pointer;
  252. }
  253. .glow
  254. {
  255. text-shadow: 0px 0px 30px #06a5df, 0px 0px 10px #06a5df, 0px 0px 5px #06a5df,0px 0px 3px #06a5df;
  256. }
  257. .watermark {
  258. display: block;
  259. position: absolute;
  260. top: 15;
  261. width: 186px;
  262. height: 74px;
  263. background-size: contain;
  264. background-repeat: no-repeat;
  265. z-index: 2;
  266. }
  267. .leftwatermark {
  268. display: none;
  269. left: 15;
  270. background-image:url(../images/watermark.png);
  271. background-position: center left;
  272. }
  273. .rightwatermark {
  274. display: none;
  275. right: 15;
  276. background-position: center right;
  277. }
  278. .poweredby {
  279. display: none;
  280. position: absolute;
  281. left: 25;
  282. bottom: 7;
  283. font-size: 11pt;
  284. color: rgba(255,255,255,.50);
  285. text-decoration: none;
  286. z-index: 100;
  287. }
  288. #toast-container.notification-bottom-right {
  289. bottom: 120px;
  290. right: 5px;
  291. }
  292. #toast-container.notification-bottom-right-center {
  293. right: 205px;
  294. }
  295. #toast-container .toast-info {
  296. -webkit-box-shadow: none;
  297. box-shadow: none;
  298. }
  299. .toast-close-button {
  300. right: -7px;
  301. top: -19px;
  302. }
  303. #toast-container .toast-info {
  304. background-color: black;
  305. border: 1px solid #3a3a3a;
  306. width: 220px;
  307. padding: 10px 10px 10px 50px;
  308. }
  309. .connected {
  310. color: forestgreen;
  311. font-size: 12px;
  312. }
  313. .disconnected {
  314. color: darkred;
  315. font-size: 12px;
  316. }
  317. .lastN {
  318. color: #a3a3a3;
  319. font-size: 12px;
  320. }
  321. .toast-close-button:hover,
  322. .toast-close-button:focus {
  323. color: #ffffff;
  324. opacity: 1;
  325. -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  326. filter: alpha(opacity=100);
  327. }
  328. .toast-message .nickname {
  329. font-weight: bold;
  330. }