Lobby.module.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .page {
  2. width: 100%;
  3. height: 100%;
  4. flex: 1;
  5. display: flex;
  6. flex-flow: row nowrap;
  7. justify-content: space-between;
  8. align-items: flex-start;
  9. }
  10. .info {
  11. flex: 3;
  12. align-self: center;
  13. display: flex;
  14. flex-flow: column nowrap;
  15. justify-content: space-around;
  16. align-items: center;
  17. height: 100%;
  18. }
  19. .form {
  20. flex: 1;
  21. display: flex;
  22. flex-flow: column nowrap;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. .label {
  27. padding: 1em;
  28. text-align: center;
  29. }
  30. .players {
  31. flex: 1;
  32. display: flex;
  33. flex-flow: column nowrap;
  34. justify-content: flex-start;
  35. align-items: flex-start;
  36. border-left: 2px solid #777;
  37. height: 100%;
  38. padding-left: 1rem;
  39. }
  40. .join {
  41. display: flex;
  42. flex-flow: column nowrap;
  43. justify-content: space-between;
  44. align-items: center;
  45. margin-bottom: 1em;
  46. }
  47. @media only screen and (min-width: 600px) and (min-height: 600px) {
  48. .join {
  49. flex-flow: row nowrap;
  50. }
  51. }
  52. .name {
  53. border-radius: 0px;
  54. border: #666 solid 1px;
  55. background-color: #181a1b;
  56. color: #eee;
  57. padding: 0px 0.5em 0px 0.5em;
  58. margin-left: 2em;
  59. margin-right: 2em;
  60. height: 100%;
  61. }
  62. .error {
  63. height: 1em;
  64. text-align: center;
  65. }