Header.css 689 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. header {
  2. font-family: "Helvetica Neue";
  3. text-align: center;
  4. margin-bottom: 30px;
  5. min-width: 1200px;
  6. }
  7. .menu {
  8. background-color: rgb(44, 43, 43);
  9. height: 50px;
  10. text-align: center;
  11. }
  12. .menu-list {
  13. width: 400px;
  14. color: white;
  15. list-style-type:none;
  16. padding-top: 15px;
  17. display: flex;
  18. justify-content: space-between;
  19. margin-left: auto;
  20. margin-right: auto;
  21. }
  22. a {
  23. text-decoration: none;
  24. color: white;
  25. }
  26. @media (max-width:1200px) {
  27. header {
  28. max-width: 970px;
  29. }
  30. }
  31. @media (max-width:992px) {
  32. header {
  33. max-width: 750px;
  34. }
  35. }
  36. @media (max-width:767px) {
  37. header {
  38. max-width: none;
  39. }
  40. }