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.

_base.scss 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. button, input, select, textarea {
  27. margin: 0;
  28. vertical-align: baseline;
  29. color: $inputColor;
  30. font-size: 1em;
  31. }
  32. button, select, input[type="button"],
  33. input[type="reset"], input[type="submit"] {
  34. height: 32px;
  35. line-height: 32px;
  36. padding-left: 4px;
  37. padding-right: 4px;
  38. cursor: pointer;
  39. }
  40. textarea {
  41. overflow: hidden;
  42. word-wrap: break-word;
  43. resize: none;
  44. line-height: 1.5em;
  45. }
  46. input[type='text'], input[type='password'], textarea {
  47. outline: none; /* removes the default outline */
  48. resize: none; /* prevents the user-resizing, adjust to taste */
  49. }
  50. button {
  51. color: #FFF;
  52. background-color: $buttonBackground;
  53. border-radius: $borderRadius;
  54. &.no-icon {
  55. padding: 0 1em;
  56. }
  57. }
  58. button,
  59. form {
  60. display: block;
  61. }
  62. .watermark {
  63. display: block;
  64. position: absolute;
  65. top: 15;
  66. width: 186px;
  67. height: 74px;
  68. background-size: contain;
  69. background-repeat: no-repeat;
  70. z-index: 2;
  71. }
  72. .leftwatermark {
  73. left: $defaultToolbarSize;
  74. margin-left: 10px;
  75. background-image: url($defaultWatermarkLink);
  76. background-position: center left;
  77. }
  78. .rightwatermark {
  79. right: 15;
  80. background-position: center right;
  81. }
  82. .poweredby {
  83. position: absolute;
  84. left: 25;
  85. bottom: 7;
  86. font-size: 11pt;
  87. color: rgba(255,255,255,.50);
  88. text-decoration: none;
  89. z-index: 100;
  90. }
  91. .connected {
  92. color: #21B9FC;
  93. font-size: 12px;
  94. }
  95. .lastN, .disconnected {
  96. color: #a3a3a3;
  97. font-size: 12px;
  98. }
  99. /**
  100. * Tooltips
  101. **/
  102. .tipsy {
  103. z-index: $tooltipsZ;
  104. &-inner {
  105. background-color: $tooltipBg;
  106. max-width: 350px;
  107. }
  108. &-arrow {
  109. border-color: $tooltipBg;
  110. }
  111. }
  112. /**
  113. * Dialogs fade
  114. */
  115. .aui-blanket {
  116. visibility: visible;
  117. }
  118. #inviteLinkRef {
  119. -webkit-user-select: text;
  120. user-select: text;
  121. }