Açıklama Yok

NavbarElements.js 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. import { FaBars } from "react-icons/fa";
  2. import { NavLink as Link } from "react-router-dom";
  3. import styled from "styled-components";
  4. export const Nav = styled.nav`
  5. background: #add8e6;
  6. height: 85px;
  7. display: flex;
  8. justify-content: space-between;
  9. padding: 0.2rem calc((100vw - 1000px) / 2);
  10. z-index: 12;
  11. `;
  12. export const NavLink = styled(Link)`
  13. color: #000000;
  14. display: flex;
  15. align-items: center;
  16. text-decoration: none;
  17. padding: 0 1rem;
  18. height: 100%;
  19. cursor: pointer;
  20. &.active {
  21. color: #4d4dff;
  22. }
  23. `;
  24. export const Bars = styled(FaBars)`
  25. display: none;
  26. color: #808080;
  27. @media screen and (max-width: 768px) {
  28. display: block;
  29. position: absolute;
  30. top: 0;
  31. right: 0;
  32. transform: translate(-100%, 75%);
  33. font-size: 1.8rem;
  34. cursor: pointer;
  35. }
  36. `;
  37. export const NavMenu = styled.div`
  38. display: flex;
  39. align-items: center;
  40. margin-right: -24px;
  41. /* Second Nav */
  42. /* margin-right: 24px; */
  43. /* Third Nav */
  44. /* width: 100vw;
  45. white-space: nowrap; */
  46. @media screen and (max-width: 768px) {
  47. display: none;
  48. }
  49. `;