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.

_lobby.scss 2.8KB

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