App.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. $breakpoint-mobile: 720px;
  2. $breakpoint-tablet: 1540px;
  3. .App {
  4. height: auto;
  5. text-align: center;
  6. background: black;
  7. }
  8. a {
  9. text-decoration: none;
  10. color: white;
  11. }
  12. span {
  13. color: #dbc9c9;
  14. margin-left: 5px;
  15. }
  16. a:hover {
  17. color: lawngreen;
  18. text-decoration: none;
  19. }
  20. h3 {
  21. color: white;
  22. @media(max-width: $breakpoint-tablet) {
  23. font-size: 20px;
  24. }
  25. }
  26. h2 {
  27. color: white;
  28. @media(max-width: $breakpoint-tablet) {
  29. font-size: 20px;
  30. }
  31. }
  32. button {
  33. color: white;
  34. background: none;
  35. font-weight: 70;
  36. text-decoration: none;
  37. outline: none;
  38. border: 2px solid;
  39. border-radius: 1px;
  40. transition: 0.2s;
  41. }
  42. button:hover { background: rgba(255,255,255,.2); }
  43. button:active { background: white; }
  44. input {
  45. background: rgba(26, 26, 26, 0.82);
  46. color: white;
  47. }
  48. .App-logo {
  49. margin: 6px;
  50. height: 100px;
  51. }
  52. .logo-large {
  53. height: 600px;
  54. @media (max-width: $breakpoint-tablet) {
  55. height: 300px;
  56. margin-left: -100px;
  57. }
  58. }
  59. .Header {
  60. position: fixed;
  61. top: 0px;
  62. width: 100%;
  63. display: flex;
  64. justify-content: space-between;
  65. background: #000000;
  66. -webkit-box-shadow: 0.2em 0.2em 5px rgba(122, 122, 122, 0.37);
  67. box-shadow: 0.2em 0.2em 5px rgba(122, 122, 122, 0.376);
  68. h3 {
  69. margin-top: 30px;
  70. }
  71. h3:hover {
  72. color: lawngreen;
  73. }
  74. }
  75. main {
  76. background-image: url("background.jpg");
  77. background-repeat: no-repeat;
  78. background-attachment:fixed;
  79. background-position: 200px 0px;
  80. overflow: auto;
  81. margin-top: 112px;
  82. width: 99%;
  83. min-height: 840px;
  84. display: flex;
  85. flex-direction: row;
  86. }
  87. .Aside {
  88. min-height: 900px;
  89. top: 114px;
  90. position: fixed;
  91. width: 430px;
  92. background-color: red;
  93. @media (max-width: $breakpoint-tablet) {
  94. width: 320px;;
  95. }
  96. }
  97. .Content {
  98. margin-left: 440px;
  99. margin-bottom: 120px;
  100. }
  101. .Avatar {
  102. img {
  103. min-height: 60px;
  104. min-width: 60px;
  105. max-height: 60px;
  106. max-width: 60px;
  107. border-radius: 30px;
  108. }
  109. }
  110. .Spoiler {
  111. cursor: pointer;
  112. }
  113. .SpoilerContent {
  114. cursor: pointer;
  115. background: dodgerblue;
  116. }
  117. footer {
  118. width: 100%;
  119. height: 100px;
  120. background-color: #303030;
  121. position: fixed;
  122. bottom: 0px;
  123. .Player {
  124. margin-top: 30px;
  125. button {
  126. margin: 5px;
  127. }
  128. .currentTime {
  129. width: 30%;
  130. }
  131. }
  132. }
  133. .LoginButtons {
  134. display: flex;
  135. flex-direction: row;
  136. margin-top: 40px;
  137. margin-right: 20px;
  138. }
  139. .RegColumn {
  140. display: flex;
  141. flex-direction: column;
  142. }
  143. .LoginColumn {
  144. display: flex;
  145. flex-direction: column;
  146. margin-top: 30px;
  147. margin-right: 20px;
  148. }
  149. .Tracks {
  150. text-align: left;
  151. padding: 2px;
  152. margin: 2px;
  153. border: 1px solid dodgerblue;
  154. }
  155. .btn {
  156. background: none;
  157. border: none;
  158. }
  159. .dropdown-menu {
  160. border: 1px solid rgba(255, 255, 255, 0.4);
  161. background: #000000;
  162. text-align: center;
  163. h3 {
  164. color: lawngreen;
  165. }
  166. }
  167. .dropdown-button {
  168. font-size: 20px;
  169. width: 100%;
  170. border-radius: 3px;
  171. }
  172. .checkpass {
  173. color: white;
  174. }
  175. .my-playlists {
  176. margin-top: 8px;
  177. }
  178. .drop-zone {
  179. p {
  180. color: rgba(124, 252, 0, 0.76);
  181. }
  182. }
  183. .Users {
  184. display: flex;
  185. flex-wrap: wrap;
  186. .user-beauty {
  187. }
  188. }
  189. .hello-column {
  190. display: flex;
  191. }