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.

welcome_page.css 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. #disable_welcome {
  2. display:none;
  3. }
  4. #disable_welcome + label
  5. {
  6. background-image: url(../images/welcome_page/disable-welcome.png);
  7. display:inline-block;
  8. position:absolute;
  9. margin-left: 323px;
  10. height: 54px;
  11. cursor: pointer;
  12. -webkit-user-select: none;
  13. -moz-user-select: none;
  14. background-repeat: no-repeat;
  15. padding-left: 62px;
  16. padding-top: 19px;
  17. font-weight: 500;
  18. font-family: Helvetica;
  19. font-size: 16px;
  20. color: #acacac;
  21. }
  22. #disable_welcome:checked + label
  23. {
  24. background-image: url(../images/welcome_page/disable-welcome-selected.png);
  25. display:inline-block;
  26. position:absolute;
  27. margin-left: 323px;
  28. height: 54px;
  29. cursor: pointer;
  30. -webkit-user-select: none;
  31. -moz-user-select: none;
  32. background-repeat: no-repeat;
  33. padding-left: 62px;
  34. padding-top: 19px;
  35. font-weight: 500;
  36. font-family: Helvetica;
  37. font-size: 16px;
  38. color: #acacac;
  39. }
  40. #enter_room_field {
  41. border-radius: 10px;
  42. font-size: 16px;
  43. padding: 15px 55px 10px 30px;
  44. border: none;
  45. -moz-border-radius: 10px;
  46. -webkit-border-radius: 10px;
  47. -webkit-appearance: none;
  48. width: 318px;
  49. height: 55px;
  50. position:absolute;
  51. font-weight: 500;
  52. font-family: Helvetica;
  53. box-shadow: none;
  54. z-index: 2;
  55. }
  56. #enter_room_button {
  57. width: 73px;
  58. height: 45px;
  59. background-color: #16a8fe;
  60. moz-border-radius: 15px;
  61. -webkit-border-radius: 15px;
  62. color: #ffffff;
  63. font-weight: 600;
  64. border: none;
  65. position:absolute;
  66. margin-left: 240px;
  67. margin-top: 5px;
  68. font-size: 19px;
  69. font-family: Helvetica;
  70. padding-top: 6px;
  71. z-index: 2;
  72. outline: none;
  73. }
  74. #enter_room {
  75. margin: 70px auto 0px auto;
  76. width:318px;
  77. }
  78. #welcome_page_header
  79. {
  80. background-image: url(../images/welcome_page/pattern-header.png);
  81. height: 290px;
  82. width: 100%;
  83. position: absolute;
  84. }
  85. #welcome_page_main
  86. {
  87. background-image:url(../images/welcome_page/pattern-body.png);
  88. width: 100%;
  89. position: absolute;
  90. margin-top: 290px;
  91. }
  92. #jitsi_logo
  93. {
  94. background-image:url(../images/welcome_page/jitsi-logo.png);
  95. background-repeat: no-repeat;
  96. width: 186px;
  97. height: 74px;
  98. position: absolute;
  99. top: 15px;
  100. left: 30px;
  101. }
  102. #brand_logo
  103. {
  104. background-image:url(../images/welcome_page/brand-logo.png);
  105. width: 215px;
  106. height: 55px;
  107. position: absolute;
  108. top: 15px;
  109. right: 30px;
  110. }
  111. #brand_header
  112. {
  113. background-image:url(../images/welcome_page/header-big.png);
  114. position:absolute;
  115. width: 583px;
  116. height: 274px;
  117. left: 340px;
  118. top:15px;
  119. }
  120. #header_text
  121. {
  122. position: absolute;
  123. left: 200px;
  124. top: 150px;
  125. width: 885px;
  126. height: 100px;
  127. color: #ffffff;
  128. font-family: Helvetica;
  129. font-size: 24px;
  130. text-align: center;
  131. }
  132. #features
  133. {
  134. margin-top: 30px;
  135. position: relative;
  136. }
  137. .feature_row
  138. {
  139. position: relative;
  140. width: 976px;
  141. margin: 0px auto 30px auto;
  142. padding-right: 75px;
  143. }
  144. .feature_holder
  145. {
  146. float:left;
  147. width: 169px;
  148. padding-left: 75px;
  149. }
  150. .feature_icon
  151. {
  152. background-image:url(../images/welcome_page/bubble.png);
  153. background-repeat: no-repeat;
  154. width: 169px;
  155. height: 169px;
  156. font-family: Helvetica;
  157. color: #ffffff;
  158. font-size: 22px;
  159. /*font-weight: bold;*/
  160. text-align: center;
  161. display: table-cell;
  162. padding: 50px 29px 0px 17px;
  163. }
  164. .feature_description
  165. {
  166. width: 169px;
  167. font-family: Helvetica;
  168. color: #ffffff;
  169. font-size: 16px;
  170. padding-top: 30px;
  171. line-height: 22px;
  172. font-weight: 200;
  173. }