App.scss 2.4 KB

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