Files
spythere-portfolio/src/components/styles/Navbar.styled.ts
T
2023-09-01 23:40:57 +02:00

48 lines
974 B
TypeScript

import { styled } from 'styled-components';
export const StyledNavbar = styled.nav`
position: sticky;
top: 0;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
height: 3.5em;
color: white;
background-color: ${({ theme }) => theme.colors.nav};
padding: 0.75em 2em;
`;
export const StyledNavlinkBrand = styled.a`
opacity: 0.85;
font-weight: 700;
color: ${({ theme }) => theme.colors.primary};
font-size: 1.3em;
`;
export const StyledNavlinkList = styled.div`
display: flex;
align-items: center;
gap: 1em;
font-size: 1.1em;
`;
export const StyledNavlink = styled.a`
/* color: black; */
font-weight: bold;
`;
export const StyledLangButton = styled.button`
font-size: 1em;
font-weight: bold;
padding: 0.25em 1em;
text-transform: uppercase;
cursor: pointer;
border: 1px solid ${({ theme }) => theme.colors.primary};
background: none;
`;