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

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