App.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .App {
  2. height: auto;
  3. text-align: center;
  4. }
  5. .App-logo {
  6. height: 100px;
  7. }
  8. .Header {
  9. display: flex;
  10. justify-content: space-between;
  11. background: #fc0874;
  12. height: 100px;
  13. }
  14. main {
  15. width: 99%;
  16. display: flex;
  17. flex-direction: row;
  18. }
  19. .Aside {
  20. width: 20%;
  21. background-color: cyan;
  22. }
  23. .Avatar {
  24. img {
  25. min-height: 60px;
  26. min-width: 60px;
  27. max-height: 60px;
  28. max-width: 60px;
  29. border-radius: 30px;
  30. }
  31. }
  32. .Spoiler {
  33. cursor: pointer;
  34. }
  35. .SpoilerContent {
  36. cursor: pointer;
  37. background: dodgerblue;
  38. }
  39. footer {
  40. width: 100%;
  41. background-color: #303030;
  42. position: fixed;
  43. bottom: 0px;
  44. .Player {
  45. background: white;
  46. button {
  47. margin: 5px;
  48. }
  49. .currentTime {
  50. width: 30%;
  51. }
  52. }
  53. }
  54. .LoginButtons {
  55. display: flex;
  56. flex-direction: row;
  57. margin-top: 40px;
  58. margin-right: 20px;
  59. }
  60. .RegColumn {
  61. display: flex;
  62. flex-direction: column;
  63. }
  64. .LoginColumn {
  65. display: flex;
  66. flex-direction: column;
  67. margin-top: 30px;
  68. margin-right: 20px;
  69. }
  70. .Tracks {
  71. text-align: left;
  72. padding: 2px;
  73. margin: 2px;
  74. border: 1px solid dodgerblue;
  75. }