App.scss 573 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .GoodCard{
  2. border: 1px solid cyan;
  3. border-radius: 15px;
  4. img{
  5. max-width: 50%;
  6. }
  7. }
  8. .GoodCard2{
  9. border: 1px solid cyan;
  10. border-radius: 15px;
  11. height: 300px;
  12. margin: 40px;
  13. img{
  14. max-width: 15%;
  15. }
  16. }
  17. .App {
  18. header{
  19. .Logo{
  20. img{
  21. max-height:100px;
  22. }
  23. }
  24. }
  25. footer{
  26. background-color: #303030;
  27. .Logo{
  28. img{
  29. max-height:200px;
  30. }
  31. }
  32. }
  33. main{
  34. display:flex;
  35. flex-direction: row;
  36. aside{
  37. width:30%;
  38. background-color: cyan;
  39. }
  40. }
  41. }