App.scss 899 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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: 120px;
  13. }
  14. main {
  15. width: 99%;
  16. display: flex;
  17. flex-direction: row;
  18. aside {
  19. width: 20%;
  20. background-color: cyan;
  21. }
  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. height: 200px;
  41. background-color: #303030;
  42. }
  43. .LoginButtons {
  44. display: flex;
  45. flex-direction: row;
  46. margin-top: 40px;
  47. margin-right: 20px;
  48. }
  49. .RegColumn {
  50. display: flex;
  51. flex-direction: column;
  52. }
  53. .LoginColumn {
  54. display: flex;
  55. flex-direction: column;
  56. margin-top: 30px;
  57. margin-right: 20px;
  58. }
  59. .Tracks {
  60. text-align: left;
  61. }