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.7KB

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