header.css 814 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .header{
  2. display: flex;
  3. justify-content: space-between;
  4. background: #001b2d;
  5. width: 100%;
  6. height: 75px;
  7. }
  8. .headerStart{
  9. display: flex;
  10. align-items:center;
  11. text-decoration: none;
  12. margin-left: 25px;
  13. width: 275px;
  14. }
  15. .headerStart img{
  16. max-height: 75%;
  17. }
  18. .headerLogo{
  19. color: white;
  20. font-size: 25px;
  21. margin-left: 10px;
  22. }
  23. .mobileHomeButton{
  24. display: none;
  25. }
  26. .headerEnd{
  27. display: flex;
  28. align-items: center;
  29. justify-content: flex-end;
  30. margin-right: 25px;
  31. }
  32. .headerEnd > *{
  33. margin-left: 20px;
  34. }
  35. .headerEnd a{
  36. color: rgb(255, 99, 107);
  37. }