style.css 432 B

1234567891011121314151617181920212223242526272829
  1. header {
  2. display:flex;
  3. justify-content: space-between;
  4. background-color: orangered;
  5. padding: 0px 30px;
  6. }
  7. #categories {
  8. background-color: olivedrab;
  9. /* position: absolute; */
  10. padding-right: 20px;
  11. width: 40%;
  12. }
  13. main {
  14. display: flex;
  15. position: relative;
  16. ;
  17. }
  18. #goodsBox {
  19. width: 60%;
  20. background-color: orange;
  21. display: flex;
  22. flex-wrap: wrap;
  23. }
  24. #loginForm {
  25. margin: 0%;
  26. }