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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. * {
  2. -webkit-user-select: none;
  3. user-select: none;
  4. }
  5. html, body{
  6. margin:0px;
  7. height:100%;
  8. color: $defaultColor;
  9. font-size: 12px;
  10. font-weight: 400;
  11. background: #000000;
  12. overflow: hidden;
  13. }
  14. p {
  15. margin: 0;
  16. }
  17. html, body, input, textarea, keygen, select, button {
  18. font-family: $baseFontFamily !important;
  19. }
  20. #nowebrtc {
  21. display:none;
  22. }
  23. .no-fa-video-camera, .fa-microphone-slash {
  24. color: #636363;
  25. }
  26. input[type='text'], input[type='password'], textarea {
  27. display: inline-block;
  28. width: 100%;
  29. padding: 5px 7px;
  30. color: $inputColor;
  31. border-radius: $borderRadius;
  32. line-height: 32px;
  33. letter-spacing: $letterSpacing;
  34. height: 32px;
  35. text-align: left;
  36. border:1px solid $inputBorderColor;
  37. background-color: $inputBackground;
  38. outline: none; /* removes the default outline */
  39. resize: none; /* prevents the user-resizing, adjust to taste */
  40. }
  41. textarea {
  42. overflow: hidden;
  43. word-wrap: break-word;
  44. resize: none;
  45. line-height: 1.5em;
  46. }
  47. button.no-icon {
  48. padding: 0 1em;
  49. }
  50. button, input, select, textarea {
  51. margin: 0;
  52. vertical-align: baseline;
  53. color: $inputColor;
  54. font-size: 1em;
  55. letter-spacing: $letterSpacing;
  56. }
  57. button, select, input[type="button"],
  58. input[type="reset"], input[type="submit"] {
  59. height: 32px;
  60. line-height: 32px;
  61. padding-left: 4px;
  62. padding-right: 4px;
  63. cursor: pointer;
  64. }
  65. button {
  66. color: #FFF;
  67. background-color: $buttonBackground;
  68. border-radius: $borderRadius;
  69. }
  70. button,
  71. form {
  72. display: block;
  73. }
  74. .watermark {
  75. display: block;
  76. position: absolute;
  77. top: 15;
  78. width: 186px;
  79. height: 74px;
  80. background-size: contain;
  81. background-repeat: no-repeat;
  82. z-index: 2;
  83. }
  84. .leftwatermark {
  85. display: none;
  86. left: $defaultToolbarSize;
  87. margin-left: 10px;
  88. background-image: url($defaultWatermarkLink);
  89. background-position: center left;
  90. }
  91. .rightwatermark {
  92. display: none;
  93. right: 15;
  94. background-position: center right;
  95. }
  96. .poweredby {
  97. display: none;
  98. position: absolute;
  99. left: 25;
  100. bottom: 7;
  101. font-size: 11pt;
  102. color: rgba(255,255,255,.50);
  103. text-decoration: none;
  104. z-index: 100;
  105. }
  106. .connected {
  107. color: #21B9FC;
  108. font-size: 12px;
  109. }
  110. .lastN, .disconnected {
  111. color: #a3a3a3;
  112. font-size: 12px;
  113. }
  114. /**
  115. * Hides an element.
  116. */
  117. .hide {
  118. display: none !important;
  119. }
  120. /**
  121. * Shows an element.
  122. */
  123. .show {
  124. display: block !important;
  125. }
  126. /**
  127. * Shows an inline element.
  128. */
  129. .show-inline {
  130. display: inline-block !important;
  131. }
  132. /**
  133. * Shows a flex element.
  134. */
  135. .show-flex {
  136. display: -webkit-box !important;
  137. display: -moz-box !important;
  138. display: -ms-flexbox !important;
  139. display: -webkit-flex !important;
  140. display: flex !important;
  141. }
  142. /**
  143. * Tooltips
  144. **/
  145. .tipsy {
  146. z-index: $tooltipsZ;
  147. &-inner {
  148. background-color: $tooltipBg;
  149. }
  150. &-arrow {
  151. border-color: $tooltipBg;
  152. }
  153. }
  154. /**
  155. * Dialogs fade
  156. */
  157. .aui-blanket {
  158. visibility: visible;
  159. }
  160. .link {
  161. color: $linkFontColor;
  162. @include transition(color .1s ease-out);
  163. &:hover {
  164. color: $linkHoverFontColor;
  165. text-decoration: underline;
  166. @include transition(color .1s ease-in);
  167. }
  168. }
  169. #inviteLinkRef {
  170. -webkit-user-select: text;
  171. user-select: text;
  172. }