Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

_lobby.scss 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. .lobby-screen {
  2. font-size: 16px;
  3. font-weight: 400;
  4. line-height: 26px;
  5. &-content {
  6. align-items: center;
  7. display: flex;
  8. flex-direction: column;
  9. .spinner {
  10. margin: 8px;
  11. }
  12. .joining-message {
  13. color: white;
  14. margin: 24px auto;
  15. text-align: center;
  16. }
  17. }
  18. }
  19. #lobby-section {
  20. display: flex;
  21. flex-direction: column;
  22. .description {
  23. font-size: 13px;
  24. }
  25. .control-row {
  26. display: flex;
  27. flex-direction: row;
  28. justify-content: space-between;
  29. margin-top: 15px;
  30. label {
  31. font-size: 14px;
  32. font-weight: bold;
  33. }
  34. }
  35. }
  36. #notification-participant-list {
  37. background-color: $newToolbarBackgroundColor;
  38. border: 1px solid rgba(255, 255, 255, .4);
  39. border-radius: 8px;
  40. left: 0;
  41. margin: 20px;
  42. max-height: 600px;
  43. overflow: hidden;
  44. overflow-y: auto;
  45. position: fixed;
  46. top: 30px;
  47. z-index: $toolbarZ + 1;
  48. &:empty {
  49. border: none;
  50. }
  51. &.toolbox-visible {
  52. // Same as toolbox subject position
  53. top: 120px;
  54. }
  55. .title {
  56. background-color: rgba(0, 0, 0, .2);
  57. font-size: 1.2em;
  58. padding: 15px
  59. }
  60. button {
  61. align-self: stretch;
  62. margin-bottom: 8px 0;
  63. padding: 12px;
  64. transition: .2s transform ease;
  65. &:disabled {
  66. opacity: .5;
  67. }
  68. &:hover {
  69. transform: scale(1.05);
  70. &:disabled {
  71. transform: none;
  72. }
  73. }
  74. &.borderLess {
  75. background-color: transparent;
  76. border-width: 0;
  77. }
  78. &.primary {
  79. background-color: rgb(3, 118, 218);
  80. border-width: 0;
  81. }
  82. }
  83. }
  84. .knocking-participants-container {
  85. list-style-type: none;
  86. padding: 0 15px 15px 15px;
  87. }
  88. .knocking-participant {
  89. align-items: center;
  90. display: flex;
  91. flex-direction: row;
  92. margin: 8px 0;
  93. .details {
  94. display: flex;
  95. flex: 1;
  96. flex-direction: column;
  97. justify-content: space-evenly;
  98. margin: 0 30px 0 10px;
  99. }
  100. button {
  101. align-self: unset;
  102. margin: 0 5px;
  103. }
  104. }
  105. @media (max-width: 300px) {
  106. #knocking-participant-list {
  107. margin: 0;
  108. text-align: center;
  109. width: 100%;
  110. .avatar {
  111. display: none;
  112. }
  113. }
  114. .knocking-participant {
  115. flex-direction: column;
  116. .details {
  117. margin: 0;
  118. }
  119. }
  120. }