App.scss 957 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. 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. padding: 2px;
  62. margin: 2px;
  63. border: 1px solid dodgerblue;
  64. }