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.

main.css 7.6KB

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