App.scss 691 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .dotParent {
  2. display: flex;
  3. }
  4. .dot {
  5. border-radius: 50%;
  6. background-color: #000000;
  7. width: 20px;
  8. height: 20px;
  9. margin: 0 10px;
  10. }
  11. .red {
  12. background-color: #ff0000;
  13. }
  14. .Logo {
  15. img {
  16. max-height: 100px;
  17. }
  18. }
  19. .GoodCard {
  20. border: 1px solid black;
  21. border-radius: 15px;
  22. margin: 15px;
  23. img {
  24. max-width: 300px;
  25. }
  26. }
  27. .App {
  28. text-align: center;
  29. header {
  30. .Logo {
  31. img {
  32. max-height: 100px;
  33. }
  34. }
  35. }
  36. main {
  37. display: flex;
  38. flex-direction: row;
  39. aside {
  40. width: 30%;
  41. background-color: cyan;
  42. }
  43. }
  44. footer {
  45. background-color: #303030;
  46. .Logo {
  47. img {
  48. max-height: 200px;
  49. }
  50. }
  51. }
  52. }