You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
939 B

2 years ago
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. background-color: #F0F8FF;
  6. }
  7. #layout {
  8. display: flex;
  9. width: 80%;
  10. margin: 0 auto;
  11. flex-direction: column;
  12. }
  13. #top {
  14. width: 100%;
  15. flex: 0 0 30px;
  16. background-color: aqua;
  17. }
  18. #main {
  19. flex: 0 0 100%;
  20. display: flex;
  21. margin-top: 30px;
  22. }
  23. #main div:first-child {
  24. flex: 0 0 10%;
  25. background-color: #F0F8FF;
  26. flex-wrap: wrap;
  27. display: flex;
  28. border: 1px solid #00FA9A;
  29. }
  30. #main div:first-child li {
  31. flex: 0 0 100%;
  32. height: 40px;
  33. line-height: 40px;
  34. text-align: center;
  35. border-bottom: 1px solid #00FA9A;
  36. }
  37. #main div:nth-child(2) {
  38. flex: 0 0 90%;
  39. background-color: #F0F8FF;
  40. flex-wrap: wrap;
  41. display: flex;
  42. border: 1px solid #00FA9A;
  43. justify-content: space-around;
  44. }
  45. #main div:nth-child(2) li {
  46. flex: 0 0 22%;
  47. height: 100px;
  48. background-color: #87CEEB;
  49. margin-top: 10px;
  50. }