app.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. * { box-sizing: border-box; font-family: Roboto, sans-serif; }
  2. html, body { margin: 0; padding: 0; width: 100%; height: 100%; }
  3. #app { background-color: white; width: 100%; height: 100%; }
  4. .loading { background-color: white; width: 100%; height: 100%; background-image: url("../images/loading.gif"); background-position: center; background-size: 128px 128px; background-repeat: no-repeat; }
  5. .header {
  6. width: 100%;
  7. height: 64px;
  8. line-height: 64px;
  9. text-align: center;
  10. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  11. }
  12. .header-home { width: 100%; height: 100%; background-color: #424242; }
  13. .header-home-title { float: left; height: 100%; color: white; padding: 0 16px 0 16px; font-weight: 300; font-size: 32px; cursor: pointer; }
  14. .header-home-link { z-index: 101; position: relative; float: right; height: 100%; color: white; padding: 0 16px 0 16px; cursor: pointer; }
  15. .header-home-link-title { }
  16. .header-home-title:hover, .header-home-link:hover { cursor: pointer; background-color: #393939; }
  17. .header-room { width: 100%; height: 100%; background-color: #0091ea; }
  18. .header-room-linkLeft { float: left; width: 64px; color: white; text-decoration: none; font-weight: 300; font-size: 28px; }
  19. .header-room-linkCenter { display: inline-block; margin: 0 auto; color: white; text-decoration: none; font-weight: 300; font-size: 32px; }
  20. .header-room-linkRight { float: right; width: 64px; color: white; text-decoration: none; font-weight: 300; font-size: 28px; }
  21. .header-room-linkLeft:hover, .header-room-linkRight:hover { cursor: pointer; background-color: #0083d3; }
  22. .body {}
  23. .body-home { width: 100%; height: auto; }
  24. .body-home-group { width: 100%; height: 448px; margin: 64px 0 64px 0; }
  25. .body-home-group-title { float: left; clear: none; width: 100%; height: 64px; line-height: 48px; text-align: center; font-size: 48px; }
  26. .body-home-group-nav { background-color: transparent; color: rgba(0, 0, 0, 0.75); float: left; clear: none; width: 64px; height: 384px; line-height: 384px; text-align: center; font-size: 64px; cursor: pointer; }
  27. .body-home-group-nav:hover { color: #222222; }
  28. .body-home-group-rooms { white-space: nowrap; text-align: center; overflow: hidden; float: left; clear: none; width: calc(100% - 128px); height: 384px; }
  29. .body-home-group-rooms-room {
  30. position: relative;
  31. top: 16px;
  32. display: inline-block;
  33. clear: none;
  34. width: 256px;
  35. height: 345px;
  36. margin: 0 16px 0 16px;
  37. box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.25);
  38. cursor: pointer;
  39. }
  40. .body-home-group-rooms-room-info {
  41. display: flex;
  42. flex-direction: row;
  43. align-items: center;
  44. padding: 5px;
  45. }
  46. .body-home-group-rooms-room-grid-left {
  47. display: flex;
  48. flex-direction: column;
  49. width: 75%;
  50. text-align: left;
  51. padding-left: 10px;
  52. }
  53. .body-home-group-rooms-room-grid-left h3, p {
  54. margin: 0;
  55. white-space: normal;
  56. }
  57. .body-home-group-rooms-room-grid-right {
  58. display: flex;
  59. flex-direction: column;
  60. width: 25%;
  61. }
  62. .body-home-group-rooms-room-image { width: 100%; height: 256px; }
  63. .body-room {}
  64. .body-room-player {}
  65. .body-room-playlist {}
  66. .body-room-playlist-song {}
  67. .body-room-chat {}
  68. .body-room-chat-message {}
  69. .body-room-chat-input {}
  70. .body-room-chat-send {}
  71. .body-room-users {}
  72. .body-overlay {
  73. position: fixed;
  74. top: 0;
  75. left: 0;
  76. width: 100%;
  77. height: 100%;
  78. background-color: rgba(0, 0, 0, 0.5);
  79. z-index: 90000;
  80. cursor: pointer;
  81. }
  82. .body-modal {
  83. position: fixed;
  84. display: block;
  85. box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.25);
  86. background-color: white;
  87. z-index: 90001;
  88. padding: 12px;
  89. transition: top 0.5s ease;
  90. overflow: hidden;
  91. }
  92. .body-modal-register-title, .body-modal-register-input, .body-modal-register-recaptcha, .body-modal-register-submit {
  93. display: inline-block;
  94. width: calc(100% - 24px);
  95. }
  96. .body-modal-register-input, .body-modal-register-recaptcha, .body-modal-register-submit {
  97. margin: 8px 12px;
  98. }
  99. .body-modal-register-title, .body-modal-register-input, .body-modal-register-submit {
  100. height: 42px; line-height: 42px;
  101. }
  102. .body-modal-register-title { text-align: center; font-size: 32px; margin: 0 12px; }
  103. .body-modal-register-exit { cursor: pointer; position: absolute; right: 8px; top: 8px; font-size: 24px; }
  104. .body-modal-register-input { outline: none; border: 1px solid #d3d3d3; padding-left: 8px; font-size: 16px; }
  105. .body-modal-register-recaptcha { display: block; height: 76px; overflow: hidden; }
  106. .body-modal-register-submit { cursor: pointer; color: white; background-color: #1976d2; font-size: 24px; text-align: center; box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); }
  107. .body-modal-register-submit:hover { box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.25); }
  108. .body-modal-account-button {
  109. float: left;
  110. width: 144px;
  111. height: 144px;
  112. line-height: 144px;
  113. text-align: center;
  114. background-color: #e9e9e9;
  115. border: 1px solid #d3d3d3;
  116. border-radius: 5px;
  117. margin: 12px;
  118. color: #3a3a3a;
  119. cursor: pointer;
  120. }
  121. .body-modal-account-button:hover {
  122. background-color: #dfdfdf;
  123. }
  124. .footer { width: 100%; height: 200px; background-color: #e0e0e0; padding-top: 26px; }
  125. .footer-left { float: left; width: 50%; height: 150px; padding-left: 64px; }
  126. .footer-left-title { font-size: 25px; color: #616161; margin-bottom: 16px; }
  127. .footer-left-message { font-size: 15px; color: #757575; margin-bottom: 16px; }
  128. .footer-left-icons {}
  129. .footer-left-icons-icon { float: left; font-size: 32px; padding-right: 16px; color: #757575; }
  130. .footer-left-icons-icon:hover { cursor: pointer; color: #222222; }
  131. .footer-right { float: right; width: 50%; height: 150px; padding-left: 64px; }
  132. .footer-right-links { float: right; width: 200px; }
  133. .footer-right-links-title { float: right; width: 200px; font-size: 25px; color: #616161; margin-bottom: 8px; }
  134. .footer-right-links-link { float: right; width: 200px; clear: both; font-size: 15px; color: #757575; margin-bottom: 2px; }
  135. .footer-right-links-link:hover { cursor: pointer; color: #222222; }
  136. .footer-message { float: left; width: 100%; height: 50px; line-height: 50px; padding-left: 128px; background-color: #d3d3d3; color: #757575; }